@layer reset, base, components, responsive;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    color-scheme: dark;
  }

  body,
  h1,
  h2,
  h3,
  p,
  ul,
  ol,
  dl,
  dd,
  blockquote,
  figure {
    margin: 0;
  }

  ul,
  ol {
    padding: 0;
  }

  img,
  svg {
    display: block;
    max-width: 100%;
  }

  button,
  a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}

@layer base {
  :root {
    --ink: #08100d;
    --ink-soft: #0c1713;
    --panel: #111d18;
    --panel-raised: #16251f;
    --paper: #f4f7ef;
    --paper-muted: #b8c2b9;
    --paper-faint: #839087;
    --lime: #b8f66d;
    --lime-soft: #d8ffac;
    --violet: #ab9cff;
    --blue: #72c7ff;
    --amber: #ffd375;
    --red: #ff8d91;
    --line: rgb(244 247 239 / 12%);
    --line-strong: rgb(244 247 239 / 20%);
    --shadow: 0 30px 90px rgb(0 0 0 / 38%);
    --radius: 20px;
    --max-width: 1180px;
    font-family:
      Inter,
      ui-sans-serif,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
    font-synthesis: none;
  }

  body {
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 70% -10%, rgb(62 114 82 / 22%), transparent 34rem),
      radial-gradient(circle at 2% 24%, rgb(113 86 175 / 9%), transparent 28rem), var(--ink);
    color: var(--paper);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  h1,
  h2,
  h3 {
    text-wrap: balance;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(3.2rem, 7.2vw, 6.8rem);
    font-weight: 720;
    letter-spacing: -0.068em;
    line-height: 0.94;
  }

  h1 em {
    display: block;
    color: var(--lime);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(2.2rem, 4.7vw, 4.4rem);
    font-weight: 680;
    letter-spacing: -0.052em;
    line-height: 1;
  }

  h3 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  p {
    color: var(--paper-muted);
    text-wrap: pretty;
  }

  section[id],
  h1[id],
  h2[id] {
    scroll-margin-top: 6rem;
  }

  :focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
    border-radius: 5px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--lime);
    color: var(--ink);
    font-weight: 750;
    transition: transform 160ms ease;
  }

  .skip-link:focus {
    transform: translateY(0);
  }
}

@layer components {
  .site-header,
  .site-footer,
  main > section {
    width: min(calc(100% - 3rem), var(--max-width));
    margin-inline: auto;
  }

  .site-header {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 82px;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.65rem;
    width: fit-content;
    font-size: 1.05rem;
    font-weight: 780;
    letter-spacing: -0.025em;
  }

  .brand-mark {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgb(184 246 109 / 45%);
    border-radius: 9px;
    background: linear-gradient(145deg, var(--lime), #63c891);
    box-shadow: inset 0 1px rgb(255 255 255 / 45%);
    color: #102117;
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 800;
  }

  .site-header nav,
  .site-footer nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    color: var(--paper-muted);
    font-size: 0.88rem;
    font-weight: 570;
  }

  .site-header nav a,
  .site-footer nav a,
  .feature-copy > a {
    transition: color 150ms ease;
  }

  .site-header nav a:hover,
  .site-footer nav a:hover,
  .feature-copy > a:hover {
    color: var(--lime);
  }

  .header-cta {
    justify-self: end;
  }

  .button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 0.91rem;
    font-weight: 720;
    line-height: 1;
    transition:
      transform 150ms ease,
      background-color 150ms ease,
      border-color 150ms ease,
      color 150ms ease,
      box-shadow 150ms ease;
  }

  .button svg {
    width: 1.08rem;
    height: 1.08rem;
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button:active {
    transform: translateY(0);
  }

  .button-primary {
    background: var(--lime);
    box-shadow: 0 10px 32px rgb(184 246 109 / 15%);
    color: #102117;
  }

  .button-primary:hover {
    background: var(--lime-soft);
    box-shadow: 0 14px 40px rgb(184 246 109 / 22%);
  }

  .button-ghost {
    border-color: var(--line-strong);
    background: rgb(244 247 239 / 4%);
    color: var(--paper);
  }

  .button-ghost:hover {
    border-color: rgb(184 246 109 / 42%);
    background: rgb(184 246 109 / 8%);
  }

  .button-small {
    min-height: 39px;
    padding: 0.55rem 0.8rem;
    font-size: 0.82rem;
  }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .eyebrow > span {
    width: 1.5rem;
    height: 1px;
    background: currentColor;
  }

  .hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(510px, 1.14fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    min-height: 790px;
    padding-block: 5.5rem 6.5rem;
  }

  .hero-glow {
    position: absolute;
    z-index: -1;
    top: 12%;
    left: -18%;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: rgb(184 246 109 / 8%);
    filter: blur(90px);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-copy h1 {
    margin-top: 1.25rem;
  }

  .hero-lede {
    max-width: 36rem;
    margin-top: 1.8rem;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .hero-actions.centered {
    justify-content: center;
  }

  .hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem;
    margin-top: 1.65rem;
    color: var(--paper-faint);
    font-size: 0.78rem;
    list-style: none;
  }

  .hero-notes li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .hero-notes span {
    color: var(--lime);
  }

  .product-stage {
    position: relative;
    min-width: 0;
    padding: 4.5rem 1.25rem 4rem;
  }

  .stage-grid,
  .cta-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, #000 20%, transparent 73%);
  }

  .pipeline-pill {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: max-content;
    padding: 0.55rem 0.75rem;
    transform: translateX(-50%);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgb(13 24 19 / 88%);
    box-shadow: 0 15px 50px rgb(0 0 0 / 28%);
    backdrop-filter: blur(12px);
    font-size: 0.72rem;
    font-weight: 680;
  }

  .pipeline-step {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .pipeline-arrow {
    color: var(--paper-faint);
  }

  .service-icon {
    display: grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 850;
  }

  .service-icon.gong {
    background: #8c39ff;
    color: white;
  }

  .service-icon.slack {
    background: #f7f7f7;
    color: #5a2b84;
  }

  .service-icon.gmail {
    background: #f1f1f1;
    color: #d44b3e;
  }

  .slack-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(232 235 231 / 17%);
    border-radius: 18px;
    background: #fbfbfb;
    box-shadow: var(--shadow);
    color: #1d1c1d;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transform-origin: center;
  }

  .window-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 44px;
    padding-inline: 0.9rem;
    border-bottom: 1px solid #dedede;
    background: #f5f5f5;
    color: #57525a;
    font-size: 0.69rem;
  }

  .window-bar > span:first-of-type {
    justify-self: center;
  }

  .window-bar b,
  .app-tag {
    padding: 0.12rem 0.28rem;
    border-radius: 3px;
    background: #e7e4ea;
    color: #615a65;
    font-size: 0.49rem;
    letter-spacing: 0.06em;
  }

  .window-dots {
    display: flex;
    gap: 5px;
  }

  .window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6a63;
  }

  .window-dots i:nth-child(2) {
    background: #f5be4f;
  }

  .window-dots i:nth-child(3) {
    background: #62c554;
  }

  .online {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.3rem;
  }

  .online i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #29944b;
  }

  .message {
    display: flex;
    gap: 0.7rem;
    padding: 1rem;
    background: #fff;
  }

  .avatar {
    display: grid;
    flex: 0 0 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 7px;
    background: linear-gradient(145deg, #b8f66d, #6fcf97);
    color: #102117;
    font-family: Georgia, serif;
    font-weight: 800;
  }

  .message-body {
    min-width: 0;
    flex: 1;
  }

  .message-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.67rem;
  }

  .message-meta strong {
    font-size: 0.76rem;
  }

  .message-meta time {
    color: #777278;
    font-size: 0.58rem;
  }

  .message-body > h2 {
    margin-top: 0.45rem;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .gong-context {
    margin-top: 0.7rem;
    padding: 0.7rem;
    border: 1px solid #d7e9cd;
    border-radius: 8px;
    background: #f5faef;
  }

  .context-heading {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #31512e;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .context-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #62a94e;
  }

  .gong-context p {
    margin-top: 0.35rem;
    color: #405041;
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .context-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.5rem;
  }

  .context-tags span {
    padding: 0.2rem 0.35rem;
    border-radius: 4px;
    background: #e2efd9;
    color: #3c6136;
    font-size: 0.5rem;
  }

  .email-preview {
    margin-top: 0.7rem;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .email-preview dl {
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid #e3e3e3;
    background: #fafafa;
  }

  .email-preview dl > div {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 0.4rem;
    padding-block: 0.14rem;
    font-size: 0.55rem;
  }

  .email-preview dt {
    color: #666;
  }

  .email-preview dd {
    overflow-wrap: anywhere;
    font-weight: 650;
  }

  .email-copy {
    padding: 0.55rem 0.65rem;
  }

  .email-copy p {
    margin-bottom: 0.35rem;
    color: #393539;
    font-size: 0.57rem;
    line-height: 1.4;
  }

  .email-copy p:last-child {
    margin-bottom: 0;
  }

  .evidence-line {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.55rem;
    color: #347447;
    font-size: 0.55rem;
    font-weight: 650;
  }

  .evidence-line svg {
    width: 0.85rem;
    height: 0.85rem;
  }

  .mock-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.65rem;
  }

  .mock-actions span {
    padding: 0.35rem 0.52rem;
    border: 1px solid #c9c7c9;
    border-radius: 5px;
    background: #fff;
    color: #383238;
    font-size: 0.51rem;
    font-weight: 700;
  }

  .mock-actions .send {
    border-color: #237443;
    background: #237443;
    color: white;
  }

  .proof-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgb(16 30 24 / 90%);
    box-shadow: 0 14px 40px rgb(0 0 0 / 35%);
    backdrop-filter: blur(10px);
    color: var(--paper-muted);
    font-size: 0.58rem;
    font-weight: 680;
  }

  .proof-chip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
  }

  .proof-top {
    top: 19%;
    right: -2%;
  }

  .proof-bottom {
    bottom: 12%;
    left: -3%;
  }

  .trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1.35rem;
    border-block: 1px solid var(--line);
  }

  .trust-strip p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .trust-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.2rem, 4vw, 3rem);
  }

  .trust-products span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #d7ded8;
    font-size: 0.9rem;
    font-weight: 720;
  }

  .trust-products b {
    display: inline-grid;
    width: 1.25rem;
    height: 1.25rem;
    place-items: center;
    border-radius: 5px;
    font-size: 0.67rem;
  }

  .gong-word {
    background: #8c39ff;
    color: white;
  }

  .slack-word {
    background: white;
    color: #6f397f;
  }

  .gmail-word {
    background: white;
    color: #df5145;
  }

  .openrouter-word {
    border: 1px solid #aaa;
    color: white;
  }

  .section {
    padding-block: clamp(5.5rem, 11vw, 9rem);
  }

  .section-intro {
    max-width: 53rem;
  }

  .section-intro h2 {
    margin-top: 1.1rem;
  }

  .section-intro > p {
    max-width: 38rem;
    margin-top: 1.3rem;
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4rem;
    list-style: none;
    counter-reset: workflow;
  }

  .workflow-grid li {
    position: relative;
    min-width: 0;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid var(--line-strong);
    border-right: 1px solid var(--line);
  }

  .workflow-grid li:first-child {
    padding-left: 0;
  }

  .workflow-grid li:last-child {
    border-right: 0;
  }

  .workflow-grid li::before {
    position: absolute;
    top: -4px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
  }

  .step-number {
    color: var(--paper-faint);
    font-family: ui-monospace, monospace;
    font-size: 0.68rem;
    font-variant-numeric: tabular-nums;
  }

  .step-icon,
  .feature-icon {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    margin-top: 1.8rem;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: var(--panel-raised);
    color: var(--lime);
  }

  .step-icon svg,
  .feature-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .workflow-grid h3 {
    margin-top: 1.4rem;
  }

  .workflow-grid p {
    margin-top: 0.75rem;
    font-size: 0.91rem;
    line-height: 1.65;
  }

  .split-intro {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    align-items: end;
    gap: 4rem;
  }

  .split-intro > p {
    margin: 0;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 4rem;
  }

  .feature-card {
    min-width: 0;
    min-height: 320px;
    overflow: hidden;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgb(255 255 255 / 3%), transparent 45%), var(--panel);
  }

  .feature-card h3 {
    margin-top: 1.5rem;
    font-size: 1.55rem;
  }

  .feature-card > p,
  .feature-copy > p {
    max-width: 36rem;
    margin-top: 0.85rem;
    line-height: 1.7;
  }

  .feature-large {
    grid-row: span 2;
    min-height: 656px;
  }

  .feature-wide {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 3rem;
    min-height: 350px;
  }

  .feature-icon.lime {
    border-color: rgb(184 246 109 / 28%);
    background: rgb(184 246 109 / 10%);
  }

  .feature-icon.violet {
    border-color: rgb(171 156 255 / 28%);
    background: rgb(171 156 255 / 10%);
    color: var(--violet);
  }

  .feature-icon.blue {
    border-color: rgb(114 199 255 / 28%);
    background: rgb(114 199 255 / 10%);
    color: var(--blue);
  }

  .feature-icon.amber {
    border-color: rgb(255 211 117 / 28%);
    background: rgb(255 211 117 / 10%);
    color: var(--amber);
  }

  .evidence-stack {
    display: grid;
    gap: 0.6rem;
    margin-top: 3rem;
  }

  .evidence-stack div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgb(255 255 255 / 2%);
    color: var(--paper-muted);
    font-size: 0.82rem;
  }

  .evidence-stack b {
    color: var(--lime);
    font-family: ui-monospace, monospace;
    font-size: 0.67rem;
    font-variant-numeric: tabular-nums;
  }

  .feature-copy > a {
    display: inline-flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--lime);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .feature-card pre {
    margin: 0;
    overflow-x: auto;
    padding: 1.5rem;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: #070d0b;
    box-shadow: inset 0 1px rgb(255 255 255 / 4%);
    color: #bfc9c1;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 0.78rem;
    line-height: 1.9;
  }

  .feature-card code span {
    color: var(--lime);
  }

  .feature-card code .success {
    color: #71dfa0;
  }

  .principles {
    padding-top: 1rem;
  }

  .principles-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    padding: clamp(2rem, 6vw, 4.5rem);
    border: 1px solid rgb(184 246 109 / 18%);
    border-radius: 26px;
    background:
      radial-gradient(circle at 0 0, rgb(184 246 109 / 12%), transparent 28rem), var(--panel);
  }

  .principles-card h2 {
    margin-top: 1.2rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
  }

  .principles-card blockquote {
    align-self: center;
    color: var(--paper);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    font-style: italic;
    line-height: 1.35;
  }

  .principles-card ul {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    list-style: none;
  }

  .principles-card li {
    display: flex;
    gap: 0.8rem;
    padding: 1.3rem 1rem 0;
    border-right: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 0.82rem;
  }

  .principles-card li:first-child {
    padding-left: 0;
  }

  .principles-card li:last-child {
    border-right: 0;
  }

  .principles-card li span {
    color: var(--lime);
    font-family: ui-monospace, monospace;
    font-size: 0.68rem;
    font-variant-numeric: tabular-nums;
  }

  .faq {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .faq .section-intro h2 {
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  }

  .faq-list {
    border-top: 1px solid var(--line-strong);
  }

  .faq details {
    border-bottom: 1px solid var(--line-strong);
  }

  .faq summary {
    position: relative;
    padding: 1.45rem 2.5rem 1.45rem 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 680;
    list-style: none;
  }

  .faq summary::-webkit-details-marker {
    display: none;
  }

  .faq summary::after {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    color: var(--lime);
    content: "+";
    font-size: 1.35rem;
    font-weight: 400;
    transform: translateY(-50%);
  }

  .faq details[open] summary::after {
    content: "−";
  }

  .faq summary:hover {
    color: var(--lime-soft);
  }

  .faq details p {
    max-width: 42rem;
    padding: 0 2.5rem 1.4rem 0;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 7rem) 1.5rem;
    border: 1px solid rgb(184 246 109 / 22%);
    border-radius: 26px;
    background:
      radial-gradient(circle at 50% 110%, rgb(184 246 109 / 16%), transparent 34rem), var(--panel);
    text-align: center;
  }

  .final-cta .eyebrow {
    justify-content: center;
  }

  .final-cta h2 {
    max-width: 16ch;
    margin: 1.2rem auto 0;
  }

  .final-cta > p {
    margin-top: 1.3rem;
    font-size: 1.05rem;
  }

  .final-cta .cta-grid {
    opacity: 0.28;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    min-height: 145px;
    margin-top: 4rem;
    padding-block: 2rem max(2rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
  }

  .site-footer > p {
    text-align: center;
    font-size: 0.75rem;
  }

  .site-footer nav {
    justify-self: end;
    gap: 1.2rem;
    font-size: 0.75rem;
  }
}

@layer responsive {
  @media (max-width: 980px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 5rem;
    }

    .hero-copy {
      max-width: 46rem;
    }

    .product-stage {
      width: min(100%, 680px);
      margin-inline: auto;
    }

    .split-intro {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .principles-card {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .principles-card ul {
      grid-column: 1;
    }
  }

  @media (max-width: 760px) {
    .site-header,
    .site-footer,
    main > section {
      width: min(calc(100% - 2rem), var(--max-width));
    }

    .site-header {
      grid-template-columns: 1fr auto;
    }

    .site-header nav {
      display: none;
    }

    .hero {
      padding-block: 4.5rem 4rem;
    }

    h1 {
      font-size: clamp(3rem, 15vw, 5.2rem);
    }

    .product-stage {
      padding-inline: 0;
    }

    .slack-window {
      transform: none;
    }

    .proof-top {
      right: -0.5rem;
    }

    .proof-bottom {
      left: -0.5rem;
    }

    .trust-strip {
      align-items: flex-start;
      flex-direction: column;
    }

    .trust-products {
      justify-content: flex-start;
    }

    .workflow-grid {
      grid-template-columns: 1fr;
    }

    .workflow-grid li,
    .workflow-grid li:first-child {
      padding: 1.6rem 0 2rem;
      border-right: 0;
    }

    .feature-grid {
      grid-template-columns: 1fr;
    }

    .feature-large,
    .feature-wide {
      grid-column: 1;
      grid-row: auto;
      min-height: auto;
    }

    .feature-wide {
      grid-template-columns: 1fr;
    }

    .principles-card ul {
      grid-template-columns: 1fr;
    }

    .principles-card li,
    .principles-card li:first-child {
      padding: 1rem 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .principles-card li:last-child {
      border-bottom: 0;
    }

    .faq {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .site-footer {
      grid-template-columns: 1fr;
      justify-items: start;
    }

    .site-footer > p {
      text-align: left;
    }

    .site-footer nav {
      justify-self: start;
    }
  }

  @media (max-width: 480px) {
    .header-cta svg {
      display: none;
    }

    .hero-actions .button {
      width: 100%;
    }

    .hero-notes {
      align-items: flex-start;
      flex-direction: column;
      gap: 0.55rem;
    }

    .pipeline-pill {
      gap: 0.4rem;
      font-size: 0.62rem;
    }

    .proof-chip {
      display: none;
    }

    .message {
      padding: 0.7rem;
    }

    .avatar {
      display: none;
    }

    .trust-products {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
    }

    .final-cta {
      padding-inline: 1rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
  }
}
