:root {
  --c2-ink: #07120d;
  --c2-ink-soft: #0d1d15;
  --c2-surface: #12241a;
  --c2-surface-raised: #193022;
  --c2-paper: #f5f7f2;
  --c2-paper-deep: #e9eee7;
  --c2-green: #63f28c;
  --c2-green-strong: #35d96d;
  --c2-lime: #dfff69;
  --c2-blue: #8fc7ff;
  --c2-text: #f7fff9;
  --c2-muted: #a9baaf;
  --c2-dark-text: #102018;
  --c2-dark-muted: #526158;
  --c2-line: rgba(255, 255, 255, 0.1);
  --c2-radius-sm: 14px;
  --c2-radius: 22px;
  --c2-radius-lg: 34px;
  --c2-shadow: 0 24px 70px rgba(3, 12, 7, 0.22);
}

html { scroll-padding-top: 90px; }

body:not(.article-page) {
  background: var(--c2-paper);
  color: var(--c2-dark-text);
  font-family: "DM Sans", sans-serif;
}

body:not(.article-page) h1,
body:not(.article-page) h2,
body:not(.article-page) h3 { color: inherit; }

.site-shell { overflow: clip; }
.site-shell .container { max-width: 1180px; }
.site-section { padding: clamp(72px, 9vw, 120px) 24px; }
.site-section { content-visibility: auto; contain-intrinsic-size: auto 760px; }
.site-section--dark { background: #edf2eb; color: var(--c2-dark-text); }
.site-section--paper { background: var(--c2-paper); color: var(--c2-dark-text); }
.site-section--soft { background: var(--c2-paper-deep); color: var(--c2-dark-text); }

.c2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--c2-green-strong);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.c2-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 16%, transparent); }
.site-section--dark .c2-eyebrow { color: #168a43; }

.c2-heading {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.c2-heading--small { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.04; }
.c2-lede { max-width: 680px; margin: 0; color: var(--c2-dark-muted); font-size: clamp(1rem, 2vw, 1.18rem); line-height: 1.75; }
.site-section--dark .c2-lede { color: var(--c2-dark-muted); }
.c2-section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; }

.c2-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: .94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.c2-btn:hover { transform: translateY(-2px); }
.c2-btn:focus-visible { outline: 3px solid rgba(99, 242, 140, .35); outline-offset: 3px; }
.c2-btn--primary { color: #07120d; background: var(--c2-green); box-shadow: 0 12px 34px rgba(53, 217, 109, .22); }
.c2-btn--primary:hover { color: #07120d; background: #82f7a2; }
.c2-btn--ghost { color: var(--c2-dark-text); border-color: rgba(16,32,24,.16); background: rgba(255,255,255,.64); }
.c2-btn--ghost:hover { color: var(--c2-dark-text); border-color: rgba(22,138,67,.42); background: #fff; }
.c2-btn--dark { color: var(--c2-text); background: var(--c2-ink); }
.c2-btn--dark:hover { color: var(--c2-text); background: var(--c2-surface); }

.c2-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 72px));
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vw, 108px) 24px;
  overflow: hidden;
  color: var(--c2-dark-text);
  background:
    radial-gradient(circle at 84% 18%, rgba(99,242,140,.34), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(143,199,255,.22), transparent 32%),
    #f8faf5;
}
.c2-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image: linear-gradient(rgba(16,32,24,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(16,32,24,.1) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.c2-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr); align-items: center; gap: clamp(44px, 8vw, 96px); }
.c2-hero-copy h1 { max-width: 760px; margin: 0 0 24px; color: var(--c2-dark-text); font-size: clamp(3.15rem, 7.4vw, 6.8rem); line-height: .88; letter-spacing: -.072em; text-wrap: balance; }
.c2-hero-copy h1 em { color: #168a43; font-family: "DM Serif Display", serif; font-weight: 400; }
.c2-hero-copy > p { max-width: 650px; margin: 0; color: var(--c2-dark-muted); font-size: clamp(1.04rem, 1.8vw, 1.25rem); line-height: 1.68; }
.c2-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.c2-trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 25px; color: #526158; font-size: .83rem; font-weight: 700; }
.c2-trust-row span::before { content: "✓"; color: #168a43; margin-right: 7px; }

.signal-panel { position: relative; padding: 18px; border: 1px solid rgba(16,32,24,.1); border-radius: 30px; background: rgba(255,255,255,.84); box-shadow: var(--c2-shadow); backdrop-filter: blur(14px); transform: rotate(1.2deg); }
.signal-panel::after { content: ""; position: absolute; inset: auto -18px -18px 28px; height: 80%; border: 1px solid rgba(22,138,67,.18); border-radius: inherit; z-index: -1; }
.signal-image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 20px; filter: saturate(.88) contrast(1.04); }
.signal-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 14px; padding: 2px 3px; }
.signal-live { display: inline-flex; align-items: center; gap: 7px; color: #168a43; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.signal-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.signal-head small { color: var(--c2-dark-muted); }
.signal-stack { display: grid; gap: 9px; margin-top: 12px; }
.signal-item { display: grid; grid-template-columns: 38px 1fr auto; gap: 11px; align-items: center; padding: 11px; border-radius: 15px; background: rgba(7,18,13,.74); }
.signal-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: var(--c2-ink); background: var(--c2-green); font-weight: 900; }
.signal-item:nth-child(2) .signal-icon { background: var(--c2-blue); }
.signal-item:nth-child(3) .signal-icon { background: var(--c2-lime); }
.signal-copy strong, .signal-copy small { display: block; }
.signal-copy strong { color: var(--c2-text); font-size: .84rem; }
.signal-copy small { color: var(--c2-muted); font-size: .7rem; }
.signal-arrow { color: var(--c2-muted); }

.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pain-card { min-height: 245px; padding: 26px; border: 1px solid #dce3dc; border-radius: var(--c2-radius); background: rgba(255,255,255,.62); }
.pain-index { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 44px; border-radius: 12px; color: var(--c2-green-strong); background: #e3f9e9; font-size: .78rem; font-weight: 900; }
.pain-card h3 { margin: 0 0 10px; font-size: 1.16rem; }
.pain-card p { margin: 0; color: var(--c2-dark-muted); font-size: .91rem; line-height: 1.62; }

.feature-stage { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 310px; padding: 30px; border: 1px solid #dce3dc; border-radius: var(--c2-radius-lg); background: #fff; box-shadow: 0 16px 48px rgba(25,48,34,.06); }
.feature-card--visual { min-height: 638px; grid-row: span 2; display: flex; flex-direction: column; }
.feature-card h3 { margin: 0 0 11px; color: var(--c2-dark-text); font-size: clamp(1.5rem, 3vw, 2.45rem); letter-spacing: -.035em; }
.feature-card p { max-width: 520px; margin: 0; color: var(--c2-dark-muted); font-size: .98rem; }
.feature-card img { width: calc(100% + 20px); margin: auto -10px -50px; border-radius: 24px 24px 0 0; box-shadow: 0 -14px 44px rgba(0,0,0,.22); }
.feature-badge { display: inline-flex; align-self: flex-start; margin-bottom: 18px; padding: 7px 11px; border-radius: 999px; color: #168a43; background: #e3f9e9; font-size: .72rem; font-weight: 800; }
.feature-card--lime { color: var(--c2-ink); background: var(--c2-lime); border-color: transparent; }
.feature-card--lime h3, .feature-card--lime p { color: var(--c2-ink); }
.feature-card--lime .feature-badge { color: var(--c2-ink); background: rgba(7,18,13,.1); }
.feature-card--blue { color: var(--c2-ink); background: var(--c2-blue); border-color: transparent; }
.feature-card--blue h3, .feature-card--blue p { color: var(--c2-ink); }
.feature-card--blue .feature-badge { color: var(--c2-ink); background: rgba(7,18,13,.1); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step-tile { counter-increment: step; padding: 18px; border: 1px solid #dce3dc; border-radius: var(--c2-radius); background: #fff; }
.step-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 15px; }
.step-tile-body { padding: 21px 7px 8px; }
.step-tile-body::before { content: "0" counter(step); display: block; margin-bottom: 13px; color: var(--c2-green-strong); font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.step-tile h3 { margin: 0 0 9px; font-size: 1.22rem; }
.step-tile p { margin: 0; color: var(--c2-dark-muted); font-size: .92rem; }

.arena-strip { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 42px; padding: clamp(32px, 5vw, 62px); border: 1px solid #cce9d4; border-radius: var(--c2-radius-lg); color: var(--c2-dark-text); background: linear-gradient(135deg, #e1fbe8, #f7fbf5); box-shadow: 0 24px 70px rgba(25,48,34,.1); }
.arena-strip h2 { margin: 0 0 14px; color: var(--c2-dark-text); font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -.05em; }
.arena-strip p { color: var(--c2-dark-muted); }
.arena-strip img { width: 100%; border-radius: 22px; transform: rotate(2deg); }

.refresh-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.refresh-blog-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid #dce3dc; border-radius: var(--c2-radius); background: #fff; }
.refresh-blog-card > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.refresh-blog-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.refresh-blog-card h3, .refresh-blog-card h2 { margin: 0 0 12px; font-size: 1.14rem; line-height: 1.28; }
.refresh-blog-card h3 a, .refresh-blog-card h2 a { color: var(--c2-dark-text); }
.refresh-blog-card p { margin: 0 0 20px; color: var(--c2-dark-muted); font-size: .9rem; line-height: 1.58; }
.refresh-blog-meta { margin-top: auto; color: #718078; font-size: .76rem; font-weight: 700; }
.refresh-blog-card:hover { border-color: #b9c7bd; box-shadow: 0 18px 46px rgba(24,48,34,.08); }

.faq-refresh { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.faq-refresh .faq-list { display: grid; gap: 10px; }
.faq-refresh .faq-item { border: 1px solid #d8e1d9; border-radius: 16px; background: rgba(255,255,255,.74); }
.faq-refresh .faq-item summary { padding: 20px 22px; color: var(--c2-dark-text); font-weight: 750; cursor: pointer; }
.faq-refresh .faq-answer { padding: 0 22px 20px; }
.faq-refresh .faq-answer p { margin: 0; color: var(--c2-dark-muted); font-size: .92rem; }

.final-banner { text-align: center; color: var(--c2-dark-text); background: var(--c2-green); }
.final-banner h2 { max-width: 820px; margin: 0 auto 17px; font-size: clamp(2.3rem, 6vw, 5.5rem); line-height: .94; letter-spacing: -.06em; }
.final-banner p { margin: 0 auto 28px; color: #21442d; }

.blog-refresh-hero { padding: clamp(70px, 9vw, 120px) 24px 58px; color: var(--c2-dark-text); background: radial-gradient(circle at 82% 18%,rgba(99,242,140,.3),transparent 30%),#f8faf5; }
.blog-refresh-hero h1 { max-width: 900px; margin: 0 0 22px; color: var(--c2-dark-text); font-size: clamp(3rem, 7vw, 6rem); line-height: .94; letter-spacing: -.065em; }
.blog-refresh-hero p { max-width: 650px; color: var(--c2-dark-muted); }
.blog-feature { display: grid; grid-template-columns: 1.08fr .92fr; margin-bottom: 46px; overflow: hidden; border:1px solid #dce3dc;border-radius: 30px; color: var(--c2-dark-text); background: #fff; box-shadow:0 20px 60px rgba(25,48,34,.08); }
.blog-feature img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.blog-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 6vw, 62px); }
.blog-feature-copy h2 { color: var(--c2-dark-text); font-size: clamp(1.8rem, 4vw, 3rem); }
.blog-feature-copy h2 a { color: inherit; }
.blog-feature-copy p { color: var(--c2-dark-muted); }
.blog-feature-copy .refresh-blog-meta { color: #718078; }
.topic-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.topic-pill { padding: 8px 12px; border: 1px solid rgba(16,32,24,.13); border-radius: 999px; color: #526158; background:rgba(255,255,255,.62);font-size: .75rem; font-weight: 750; }

.reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .55s ease var(--reveal-delay,0ms), transform .55s cubic-bezier(.2,.8,.2,1) var(--reveal-delay,0ms); }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }
.pain-card,.feature-card,.step-tile,.refresh-blog-card,.faq-item { transition-property: opacity,transform,border-color,box-shadow; }
.pain-card:hover,.step-tile:hover { transform: translateY(-5px) rotate(-.25deg); border-color:#b6c7ba;box-shadow:0 18px 46px rgba(25,48,34,.09); }
.feature-card:hover { transform:translateY(-5px); }
.c2-btn--primary { position:relative;overflow:hidden; }
.c2-btn--primary::after { content:"";position:absolute;inset:-60% auto -60% -45%;width:28%;transform:rotate(18deg);background:rgba(255,255,255,.5);transition:left .5s ease; }
.c2-btn--primary:hover::after { left:120%; }
.signal-panel { animation:signal-float 6s ease-in-out infinite; }
@keyframes signal-float { 50% { transform:translateY(-8px) rotate(.4deg); } }

@media (max-width: 960px) {
  .c2-hero-grid, .feature-stage, .arena-strip, .blog-feature, .faq-refresh { grid-template-columns: 1fr; }
  .c2-hero { min-height: auto; }
  .signal-panel { max-width: 620px; transform: none; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--visual { min-height: 520px; grid-row: auto; }
  .steps-grid, .refresh-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .arena-strip img { max-width: 560px; }
}

@media (max-width: 640px) {
  .site-section { padding: 70px 18px; }
  .c2-hero { padding: 58px 18px 72px; }
  .c2-hero-copy h1 { font-size: clamp(3.05rem, 15vw, 4.4rem); }
  .c2-hero-grid { gap: 42px; }
  .c2-hero-actions { display: grid; grid-template-columns: 1fr; }
  .c2-section-head { align-items: start; flex-direction: column; }
  .pain-grid, .steps-grid, .refresh-blog-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 210px; }
  .pain-index { margin-bottom: 32px; }
  .feature-card { min-height: 280px; padding: 24px; }
  .feature-card--visual { min-height: 470px; }
  .arena-strip { padding: 28px; }
  .blog-refresh-hero { padding-inline: 18px; }
  .blog-feature img { min-height: 250px; }
  .signal-panel { padding: 12px; border-radius: 22px; }
  .signal-item { grid-template-columns: 36px 1fr auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .c2-btn, .refresh-blog-card, .reveal-ready, .signal-panel { transition: none; animation: none; }
  .reveal-ready { opacity: 1; transform: none; }
}

.sr-only { position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important; }
.search-hero { padding:clamp(72px,10vw,126px) 24px 66px;background:radial-gradient(circle at 80% 12%,rgba(99,242,140,.35),transparent 27%),#f8faf5;color:var(--c2-dark-text); }
.search-hero h1 { max-width:880px;margin:0 0 20px;font-size:clamp(3rem,7vw,6rem);line-height:.94;letter-spacing:-.06em; }
.search-hero > .container > p { max-width:640px;color:var(--c2-dark-muted); }
.search-form { display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;max-width:820px;margin-top:34px;padding:9px 9px 9px 18px;border:1px solid #d7e1d8;border-radius:20px;background:#fff;box-shadow:0 18px 55px rgba(25,48,34,.1); }
.search-icon { color:#168a43;font-size:1.55rem;font-weight:800; }
.search-form input { min-width:0;width:100%;height:48px;border:0;outline:0;color:var(--c2-dark-text);background:transparent;font:inherit;font-size:1.05rem; }
.search-form input::placeholder { color:#829087; }
.search-form:focus-within { border-color:#41c66d;box-shadow:0 0 0 4px rgba(53,217,109,.13),0 18px 55px rgba(25,48,34,.1); }
.search-form button { min-height:46px;padding:10px 18px;border:0;border-radius:13px;color:#07120d;background:var(--c2-green);font:inherit;font-size:.88rem;font-weight:850;cursor:pointer; }
.search-suggestions { display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:18px;color:#718078;font-size:.75rem;font-weight:700; }
.search-suggestions button { padding:7px 10px;border:1px solid #d4dfd6;border-radius:999px;color:#405147;background:rgba(255,255,255,.7);font:inherit;cursor:pointer; }
.search-suggestions button:hover { border-color:#79c78f;background:#fff; }
.search-results-head { display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:32px;padding-bottom:18px;border-bottom:1px solid #dce3dc; }
.search-results-head h2 { margin:0;font-size:clamp(1.7rem,4vw,2.7rem); }
.search-results-head p { margin:0;color:#718078;font-size:.82rem;font-weight:800; }
.search-results { display:grid;grid-template-columns:repeat(2,1fr);gap:16px; }
.search-result { display:grid;grid-template-columns:190px 1fr;gap:22px;padding:14px;border:1px solid #dce3dc;border-radius:22px;background:#fff;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.search-result[hidden] { display:none; }
.search-result:hover { transform:translateY(-3px);border-color:#b7c7ba;box-shadow:0 16px 44px rgba(25,48,34,.08); }
.search-result img { width:100%;height:100%;min-height:190px;object-fit:cover;border-radius:15px; }
.search-result > div { padding:10px 12px 10px 0; }
.search-result > div > span { color:#168a43;font-size:.66rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase; }
.search-result h2 { margin:9px 0 10px;font-size:1.18rem;line-height:1.28; }
.search-result h2 a { color:var(--c2-dark-text); }
.search-result p { display:-webkit-box;overflow:hidden;margin:0 0 16px;color:var(--c2-dark-muted);font-size:.83rem;line-height:1.55;-webkit-line-clamp:3;-webkit-box-orient:vertical; }
.search-result-link { color:#168a43;font-size:.78rem;font-weight:850; }
.search-empty { padding:70px 24px;text-align:center;border:1px dashed #b9c8bc;border-radius:28px;background:#f8faf5; }
.search-empty[hidden] { display:none; }
.search-empty > span { display:grid;place-items:center;width:48px;height:48px;margin:0 auto 16px;border-radius:50%;color:#168a43;background:#e1f8e7;font-size:1.3rem;font-weight:900; }
.search-empty h2 { margin-bottom:8px; }.search-empty p { max-width:460px;margin:0 auto 24px;color:var(--c2-dark-muted); }
@media(max-width:900px){.search-results{grid-template-columns:1fr}}
@media(max-width:580px){.search-hero{padding-inline:18px}.search-form{grid-template-columns:auto 1fr}.search-form button{grid-column:1/-1;width:100%}.search-result{grid-template-columns:110px 1fr;gap:14px}.search-result img{min-height:145px}.search-result > div{padding-right:4px}.search-results-head{align-items:start;flex-direction:column}}
