:root {
  --paper: #f2f0e9;
  --paper-deep: #e5e0d5;
  --ink: #171713;
  --muted: #706e65;
  --line: rgba(23, 23, 19, 0.16);
  --acid: #d8ff43;
  --violet: #7964ff;
  --night: #191a18;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --sans: Inter, 'Avenir Next', 'Segoe UI', Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; background: var(--acid); padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }
.section-pad { padding-inline: max(24px, calc((100vw - 1280px) / 2)); }
.nav-shell { position: absolute; z-index: 10; width: 100%; padding: 24px max(24px, calc((100vw - 1280px) / 2)); }
.nav { height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.wordmark { display: inline-flex; gap: 11px; align-items: center; text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.wordmark__signal { display: flex; align-items: center; height: 20px; gap: 3px; }
.wordmark__signal i { width: 3px; background: currentColor; border-radius: 2px; }
.wordmark__signal i:nth-child(1) { height: 7px; }.wordmark__signal i:nth-child(2) { height: 17px; }.wordmark__signal i:nth-child(3) { height: 12px; }.wordmark__signal i:nth-child(4) { height: 5px; }
.nav__links { display: flex; gap: 32px; font-size: .82rem; }
.nav__links a, .footer__links a { text-decoration: none; }
.nav__links a:hover, .footer__links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 58px; padding: 0 24px; text-decoration: none; border: 1px solid var(--ink); font: 600 .86rem var(--sans); transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.button--small { min-height: 42px; padding: 0 18px; gap: 12px; }
.button--ink { background: var(--ink); color: white; }
.button--accent { background: var(--acid); }
.text-link { font: 500 .82rem var(--mono); text-underline-offset: 5px; }
.hero { min-height: 820px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 120px); align-items: center; padding-top: 130px; background: radial-gradient(circle at 82% 21%, rgba(121,100,255,.14), transparent 27%); overflow: hidden; }
.eyebrow, .section-kicker { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .12em; font: 500 .7rem var(--mono); }
.live-dot, .status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #44b84a; margin-right: 9px; box-shadow: 0 0 0 4px rgba(68,184,74,.13); }
.hero h1, .problem h2, .steps h2, .uses h2, .trust h2, .questions h2, .final-cta h2 { margin: 0; font-size: clamp(3.8rem, 6.5vw, 7rem); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; }
.hero__dek { max-width: 590px; margin: 38px 0 30px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; }
.hero__actions { display: flex; align-items: center; gap: 32px; }
.hero__note { margin: 22px 0 0; color: var(--muted); font: .68rem var(--mono); }
.conversation { position: relative; padding: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(23,23,19,.2); box-shadow: 26px 30px 0 rgba(23,23,19,.06); backdrop-filter: blur(12px); transform: rotate(1.2deg); }
.conversation::before { content: ''; position: absolute; z-index: -1; width: 120%; aspect-ratio: 1; border: 1px solid rgba(121,100,255,.28); border-radius: 50%; left: -10%; top: -18%; }
.conversation__top, .conversation__foot { display: flex; justify-content: space-between; align-items: center; font: .67rem var(--mono); color: var(--muted); }
.conversation__time { font-size: .6rem; }
.wave { height: 106px; display: flex; justify-content: center; align-items: center; gap: 7px; background: var(--ink); margin: 16px 0; overflow: hidden; }
.wave i { width: 4px; background: var(--acid); border-radius: 3px; animation: wave 1.4s ease-in-out infinite alternate; }
.wave i:nth-child(3n+1) { height: 23%; animation-delay: -.4s }.wave i:nth-child(3n+2) { height: 62%; animation-delay: -.8s }.wave i:nth-child(3n) { height: 39%; animation-delay: -1.1s }
@keyframes wave { to { transform: scaleY(1.8); } }
.bubble { width: 86%; margin: 13px 0; padding: 16px 18px; font-size: .85rem; line-height: 1.5; }
.bubble span { display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .1em; font: .58rem var(--mono); opacity: .62; }
.bubble--you { margin-left: auto; background: #ded8ff; border-radius: 16px 2px 16px 16px; }
.bubble--sorema { background: #e9e7e0; border-radius: 2px 16px 16px 16px; }
.job-card { display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; margin: 17px 0; padding: 14px; border: 1px solid var(--line); }
.job-card__icon { display: grid; place-items: center; width: 38px; height: 38px; background: var(--acid); border-radius: 50%; }
.job-card strong { font-size: .78rem; }.job-card p { margin: 3px 0 0; color: var(--muted); font-size: .7rem; }.job-card > span { color: var(--muted); font: .6rem var(--mono); }
.conversation__foot { justify-content: flex-start; gap: 10px; padding: 8px 3px 2px; }
.pulse-ring { width: 16px; height: 16px; border: 1px solid var(--violet); border-radius: 50%; display: grid; place-items: center; }.pulse-ring i { width: 5px; height: 5px; background: var(--violet); border-radius: 50%; }
.proof-band { min-height: 76px; padding: 0 28px; background: var(--acid); border-block: 1px solid var(--ink); display: flex; gap: 30px; align-items: center; justify-content: center; overflow: hidden; white-space: nowrap; text-transform: uppercase; font: 500 .66rem var(--mono); letter-spacing: .08em; }
.problem { padding-top: 150px; padding-bottom: 160px; }
.section-kicker { color: var(--muted); }
.problem__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; }
.problem h2 { font-size: clamp(3.2rem, 5vw, 5.4rem); }
.problem__body { max-width: 530px; padding-top: 10px; }
.problem__body p { color: var(--muted); line-height: 1.75; }
.problem__body .large-copy { color: var(--ink); font-size: 1.3rem; line-height: 1.55; }
.steps { padding-top: 140px; padding-bottom: 150px; background: var(--paper-deep); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 80px; }
.section-heading h2, .uses h2, .questions h2 { font-size: clamp(3.3rem, 5.2vw, 5.8rem); }
.section-heading > p { max-width: 350px; color: var(--muted); line-height: 1.6; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.step { position: relative; padding: 24px 28px 10px; border-right: 1px solid var(--line); }.step:last-child { border: 0; }
.step__number { font: .65rem var(--mono); }
.step__visual { height: 190px; margin: 26px 0 32px; display: grid; place-items: center; }
.orb { width: 106px; height: 106px; border: 1px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 5px; box-shadow: 0 0 0 15px rgba(121,100,255,.08), 0 0 0 30px rgba(121,100,255,.04); }
.orb i { width: 4px; height: 34px; border-radius: 4px; background: var(--violet); }.orb i:nth-child(2) { height: 61px; }.orb i:nth-child(3) { height: 22px; }
.step__visual--route { display: flex; justify-content: center; }.step__visual--route span { width: 50%; border-top: 1px dashed var(--ink); }.route-dot { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--ink); }.route-dot--b { background: var(--acid); box-shadow: 0 0 0 10px rgba(216,255,67,.25); }
.step__visual--done { display: flex; gap: 12px; }.step__visual--done span { padding: 20px 50px; background: var(--ink); color: white; font: .8rem var(--mono); }.step__visual--done i { display: grid; place-items: center; width: 58px; background: var(--acid); font-style: normal; }
.step h3, .trust-card h3 { font-size: 1.15rem; }.step p, .trust-card p { color: var(--muted); font-size: .86rem; line-height: 1.7; }
.uses { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding-top: 150px; padding-bottom: 150px; }
.uses__intro { position: sticky; top: 40px; align-self: start; }.uses__intro > p:last-child { max-width: 390px; color: var(--muted); line-height: 1.7; }
.use { display: grid; grid-template-columns: 42px 1fr; column-gap: 24px; padding: 36px 0; border-top: 1px solid var(--line); }.use:last-child { border-bottom: 1px solid var(--line); }
.use > span { grid-row: span 2; font: .6rem var(--mono); color: var(--muted); }.use h3 { margin: 0; font-size: 1.3rem; }.use p { margin: 11px 0 0; color: var(--muted); font-family: var(--serif); font-size: 1.15rem; }
.trust { padding-top: 145px; padding-bottom: 145px; background: var(--night); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.trust .section-kicker { color: #a6a59d; }.trust h2 { font-size: clamp(3.1rem, 4.8vw, 5.4rem); }.trust__statement > p:not(.section-kicker) { max-width: 550px; color: #b7b7ae; line-height: 1.8; margin: 34px 0; }
.text-link--light { color: var(--acid); }
.trust__cards { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.18); }
.trust-card { min-height: 250px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }.trust-card:nth-child(2n) { border-right: 0; }.trust-card:nth-child(n+3) { border-bottom: 0; }
.trust-card__mark { display: block; color: var(--acid); height: 70px; font: 1.15rem var(--mono); }.trust-card p { color: #a6a59d; }
.questions { padding-top: 150px; padding-bottom: 150px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.questions__heading { position: sticky; top: 40px; align-self: start; }
.faq details { border-top: 1px solid var(--line); padding: 28px 0; }.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 600; display: flex; justify-content: space-between; }.faq summary::after { content: '+'; font: 1.1rem var(--mono); }.faq details[open] summary::after { content: '−'; }.faq details p { max-width: 630px; color: var(--muted); line-height: 1.75; }
.final-cta { padding-top: 125px; padding-bottom: 130px; text-align: center; background: var(--violet); }.final-cta__signal { height: 55px; display: flex; justify-content: center; align-items: center; gap: 6px; }.final-cta__signal i { width: 5px; height: 24px; background: var(--ink); border-radius: 5px; }.final-cta__signal i:nth-child(2), .final-cta__signal i:nth-child(4) { height: 45px; }.final-cta__signal i:nth-child(3) { height: 31px; }
.final-cta .section-kicker { margin-top: 20px; color: var(--ink); }.final-cta h2 { font-size: clamp(4rem, 7vw, 7.5rem); }.final-cta > p:not(.section-kicker) { margin: 28px auto; }.final-cta .button { min-width: 200px; }
.footer { padding-top: 70px; padding-bottom: 36px; background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 30px; }.footer > p { margin: 0; color: #aaa99f; }.footer__links { display: flex; justify-content: flex-end; gap: 28px; font-size: .8rem; }.footer small { color: #77776f; grid-column: 2; text-align: right; font: .62rem var(--mono); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.wave i { animation: none; } }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero, .problem__grid, .uses, .trust, .questions { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; padding-bottom: 90px; }
  .conversation { width: min(560px, 94%); margin: 20px auto; }
  .problem__grid, .uses, .trust, .questions { gap: 55px; }
  .section-heading { display: block; }.section-heading > p { margin-top: 30px; }
  .steps__grid { grid-template-columns: 1fr; }.step { border-right: 0; border-bottom: 1px solid var(--line); }
  .uses__intro, .questions__heading { position: static; }
}
@media (max-width: 560px) {
  .section-pad { padding-inline: 20px; }
  .nav-shell { padding-inline: 20px; }.nav .button { font-size: 0; gap: 0; }.nav .button span { font-size: .9rem; }
  .hero { min-height: 0; }.hero h1 { font-size: clamp(3.3rem, 17vw, 5.2rem); }.hero__actions { align-items: stretch; flex-direction: column; gap: 22px; }.hero__actions .text-link { text-align: center; }
  .conversation { transform: none; width: 100%; padding: 12px; }.conversation::before { display: none; }.bubble { width: 95%; }
  .proof-band { justify-content: flex-start; }
  .problem, .steps, .uses, .trust, .questions { padding-top: 95px; padding-bottom: 95px; }
  .trust__cards { grid-template-columns: 1fr; }.trust-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18) !important; min-height: 190px; }.trust-card:last-child { border-bottom: 0 !important; }
  .footer { grid-template-columns: 1fr; }.footer__links { justify-content: flex-start; flex-wrap: wrap; }.footer small { grid-column: 1; text-align: left; }
}
