:root {
  color-scheme: dark;
  --stage: #070a09;
  --background: #0b100e;
  --surface: #151c19;
  --surface-2: #1d2521;
  --line: #28322c;
  --line-2: #354239;
  --text: #eaf1ec;
  --muted: #98a39c;
  --faint: #7f8f86;
  --brand: #25d366;
  --brand-hover: #36df75;
  --brand-ink: #05230f;
  --deep: #0e2a20;
  --focus: #f5b715;
  --display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -15%, rgba(37, 211, 102, 0.07), transparent 36rem),
    var(--stage);
  color: var(--text);
  font: 400 16px/1.6 var(--display);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--text);
  color: var(--stage);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(40, 50, 44, 0.7);
  background: rgba(7, 10, 9, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--brand);
  color: var(--brand-ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.text-link,
.site-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.site-footer nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid var(--brand);
  border-radius: 11px;
  background: var(--brand);
  color: var(--brand-ink);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.88rem;
}

.button-secondary {
  border-color: var(--line-2);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--muted);
  background: var(--surface);
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(48px, 7vw, 96px);
  min-height: 700px;
  align-items: center;
  padding-block: 96px 112px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font: 750 0.74rem/1.2 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lede {
  max-width: 580px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 0.82rem;
}

.hero-note strong {
  color: var(--muted);
  font-family: var(--mono);
}

.product-loop {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.phone {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: 30px;
  background: var(--background);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 44px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--line-2);
  content: "";
}

.phone-chat {
  transform: translateY(-28px) rotate(-1.2deg);
}

.phone-store {
  transform: translateY(34px) rotate(1.2deg);
}

.phone-top {
  display: grid;
  grid-template-columns: 20px 34px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 72px;
  padding: 20px 16px 10px;
  border-bottom: 1px solid var(--line);
}

.back {
  color: var(--muted);
  font-size: 1.5rem;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  font-weight: 800;
}

.phone-top strong,
.phone-top small {
  display: block;
}

.phone-top strong {
  font-size: 0.85rem;
}

.phone-top small {
  color: var(--faint);
  font-size: 0.65rem;
}

.chat-body {
  display: flex;
  min-height: 398px;
  flex-direction: column;
  gap: 11px;
  justify-content: flex-start;
  padding: 28px 16px 22px;
  background:
    linear-gradient(rgba(7, 10, 9, 0.92), rgba(7, 10, 9, 0.92)),
    radial-gradient(circle at 20% 20%, var(--line) 1px, transparent 1px);
  background-size: auto, 18px 18px;
}

.bubble {
  max-width: 86%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 5px 12px 12px 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.45;
}

.bubble-out {
  align-self: flex-end;
  border-color: #1f6940;
  border-radius: 12px 5px 12px 12px;
  background: var(--deep);
  color: #dff9e8;
  font-family: var(--mono);
}

.browser-bar {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin: 20px 12px 0;
  padding: 9px 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--stage);
  color: var(--muted);
  font: 0.56rem/1.2 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lock {
  color: var(--brand);
}

.store-body {
  display: flex;
  min-height: 405px;
  flex-direction: column;
  align-items: center;
  padding: 35px 17px 22px;
  text-align: center;
}

.store-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--text);
}

.store-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.store-label {
  margin-bottom: 6px;
  color: var(--faint);
  font: 0.62rem/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-body h2 {
  margin-bottom: 25px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.store-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.69rem;
  text-align: left;
}

.store-row strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.store-button {
  width: 100%;
  margin-top: auto;
  padding: 10px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 750;
}

.flow-arrow {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 32px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--stage);
}

.flow-arrow svg {
  width: 34px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  padding-block: 104px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.section-heading-wide > p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 272px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(21, 28, 25, 0.86), rgba(11, 16, 14, 0.7));
}

.steps li:first-child {
  border-radius: 16px 0 0 16px;
}

.steps li:last-child {
  border-radius: 0 16px 16px 0;
}

.steps li + li {
  border-left: 0;
}

.step-number {
  display: block;
  margin-bottom: 24px;
  color: var(--faint);
  font: 0.72rem/1 var(--mono);
}

.step-icon,
.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  color: var(--muted);
}

.step-icon svg,
.trust-icon svg,
.archetypes svg,
.flow-strip svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.step-icon svg,
.trust-icon svg {
  width: 22px;
}

.steps p,
.archetypes p,
.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.flow-strip {
  display: grid;
  max-width: 820px;
  margin: 50px auto 0;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.flow-strip span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.flow-strip svg {
  width: 19px;
}

.flow-strip i {
  color: var(--faint);
  font-style: normal;
}

.archetypes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.archetypes article {
  min-height: 245px;
  padding: 24px 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--background);
}

.archetypes svg {
  width: 29px;
  margin-bottom: 64px;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--surface), var(--background));
}

.faq-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 72px;
  padding: 23px 46px 21px 0;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--muted);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
}

.cta-section {
  display: grid;
  margin-bottom: 104px;
  padding: 46px 50px;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 20%, rgba(37, 211, 102, 0.08), transparent 18rem),
    var(--background);
}

.cta-section h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.cta-section p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  min-height: 190px;
  padding-block: 44px;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
}

.footer-inner > div > p,
.copyright {
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 0.8rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 28px;
}

.copyright {
  margin-top: 7px;
  white-space: nowrap;
}

.error-page {
  display: grid;
  width: min(620px, calc(100% - 40px));
  min-height: 100vh;
  margin-inline: auto;
  place-content: center;
  justify-items: start;
}

.error-page .eyebrow {
  margin-top: 70px;
}

.error-page h1 {
  margin-bottom: 18px;
}

.error-page > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary svg {
    width: 23px;
    fill: none;
    stroke: var(--text);
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 58px;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 40px));
    padding: 12px;
    border: 1px solid var(--line-2);
    border-radius: 13px;
    background: var(--surface);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }

  .mobile-menu-panel > a:not(.button) {
    min-height: 48px;
    padding: 12px 10px;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu-panel .button {
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 82px 90px;
  }

  .hero-copy {
    max-width: 740px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .archetypes {
    grid-template-columns: repeat(3, 1fr);
  }

  .archetypes article {
    min-height: 210px;
  }

  .archetypes svg {
    margin-bottom: 42px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    gap: 62px;
    padding-block: 64px 78px;
  }

  .hero-actions {
    display: grid;
  }

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

  .product-loop {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .phone {
    width: min(330px, 92%);
    margin-inline: auto;
    transform: none;
  }

  .chat-body,
  .store-body {
    min-height: 330px;
  }

  .flow-arrow {
    position: relative;
    top: auto;
    left: auto;
    width: 42px;
    margin: -2px auto;
    transform: rotate(90deg);
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading-wide {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps li {
    padding: 23px;
  }

  .flow-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-strip i {
    transform: rotate(90deg);
    text-align: center;
  }

  .archetypes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archetypes article {
    min-height: 185px;
    padding: 20px 16px;
  }

  .archetypes svg {
    margin-bottom: 30px;
  }

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

  .trust-grid article {
    min-height: 0;
  }

  .cta-section {
    width: calc(100% - 30px);
    margin-bottom: 76px;
    padding: 32px 24px;
    gap: 30px;
  }

  .cta-actions {
    display: grid;
    gap: 16px;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }
}

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

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

@media (forced-colors: active) {
  .wordmark-mark,
  .button {
    border: 2px solid ButtonText;
  }
}
