@font-face {
  font-family: 'Manrope';
  src: url('/app/vendor/manrope/manrope-latin-wght-normal.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/app/vendor/manrope/manrope-latin-ext-wght-normal.woff2') format('woff2-variations');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+20A0-20AB;
}

:root {
  --ink: #17201c;
  --ink-soft: #52605a;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --white: #ffffff;
  --green: #087a57;
  --green-dark: #056044;
  --mint: #39d9a3;
  --mint-soft: #ddf7ed;
  --coral: #ff725e;
  --lavender: #eee9ff;
  --line: #e5e6df;
  --shadow: 0 26px 70px rgba(13, 41, 31, 0.16), 0 4px 14px rgba(13, 41, 31, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --page: 1488px;
  --font: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body, button, a { font-family: var(--font); }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(100%, var(--page));
  height: 104px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 20;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #101816;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.065em;
  line-height: 1;
}
.wordmark span { color: var(--green); }

.site-nav { display: flex; align-items: center; justify-content: center; gap: 38px; font-weight: 650; }
.site-nav > a, .nav-trigger {
  padding: 12px 2px;
  font-size: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease;
}
.site-nav > a:hover, .site-nav > a:focus-visible, .nav-trigger:hover, .nav-trigger:focus-visible { color: var(--green); }
.nav-trigger { display: flex; align-items: center; gap: 6px; }
.nav-trigger i { font-size: 13px; transition: transform 160ms ease; }
.nav-group { position: relative; }
.nav-group.open .nav-trigger i { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 290px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 45px rgba(20, 42, 33, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.nav-group.open .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: #f1f8f4; }
.nav-dropdown i { font-size: 22px; color: var(--green); }
.nav-dropdown span { display: grid; gap: 1px; }
.nav-dropdown strong { font-size: 14px; }
.nav-dropdown small { color: var(--ink-soft); font-size: 12px; }

.header-actions { display: flex; align-items: center; gap: 26px; }
.login-link { font-weight: 650; font-size: 15px; }
.login-link:hover, .login-link:focus-visible { color: var(--green); }
.mobile-menu-button { display: none; }

.button {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .nav-trigger:focus-visible, summary:focus-visible { outline: 3px solid rgba(8, 122, 87, 0.3); outline-offset: 3px; }
.button-primary { color: var(--white); background: var(--green); box-shadow: 0 10px 24px rgba(8, 122, 87, 0.17); }
.button-primary:hover { background: var(--green-dark); box-shadow: 0 14px 28px rgba(8, 122, 87, 0.23); }
.button-secondary { color: var(--green); border-color: var(--green); background: rgba(255, 253, 248, 0.8); }
.button-secondary:hover { background: var(--mint-soft); }
.button-small { min-height: 48px; padding: 0 22px; }
.button-light { color: var(--green-dark); background: var(--white); }

.hero {
  width: min(100%, var(--page));
  min-height: 731px;
  margin: 0 auto;
  padding: 70px 48px 64px 56px;
  display: grid;
  grid-template-columns: minmax(527px, 0.78fr) minmax(760px, 1.22fr);
  align-items: center;
  gap: 38px;
  position: relative;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  z-index: 0;
  width: 1536px;
  height: 1024px;
  object-fit: contain;
  right: -49px;
  top: 0;
  opacity: 0.92;
  clip-path: inset(0 0 0 38%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; align-self: start; padding-top: 50px; }
.eyebrow, .section-label { margin: 0 0 18px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 24px; height: 2px; background: var(--coral); }
.hero h1 {
  margin: 0;
  font-size: clamp(54px, 4.05vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 750;
}
.hero h1 em, .audience-strip h2 em { font-style: normal; text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 3px; text-underline-offset: 10px; }
.hero-lead { max-width: 480px; margin: 32px 0 0; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; }
.reassurance { display: flex; align-items: center; gap: 9px; margin: 28px 0 0; color: var(--ink-soft); font-size: 14px; font-weight: 550; }
.reassurance i { color: var(--green); font-size: 20px; }

.product-stage { position: relative; z-index: 2; width: calc(100% + 28px); min-width: 0; align-self: start; margin-top: 8px; }
.product-shell {
  width: 100%;
  min-height: 570px;
  display: grid;
  grid-template-columns: 116px 245px minmax(350px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
.product-sidebar { padding: 24px 13px; display: flex; flex-direction: column; gap: 10px; background: #0e1a16; color: rgba(255,255,255,0.7); }
.product-logo { padding: 3px 10px 22px; color: var(--white); font-weight: 800; font-size: 17px; letter-spacing: -0.04em; }
.product-logo span { color: var(--mint); }
.product-nav-item { min-height: 43px; display: flex; align-items: center; gap: 9px; padding: 0 11px; border-radius: 8px; font-size: 11px; font-weight: 600; }
.product-nav-item i { font-size: 17px; }
.product-nav-item.active { color: var(--white); background: var(--green); }
.product-avatar { width: 38px; height: 38px; margin: auto auto 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; display: grid; place-items: center; position: relative; color: var(--white); font-size: 12px; font-weight: 700; }
.product-avatar span { position: absolute; right: -1px; bottom: -1px; width: 10px; height: 10px; border: 2px solid #0e1a16; border-radius: 50%; background: var(--mint); }

.connect-panel, .status-panel { padding: 28px 22px; }
.connect-panel { border-right: 1px solid #e8e9e4; background: rgba(255,255,255,.85); }
.panel-kicker { margin: 0 0 2px; color: var(--ink-soft); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.connect-panel h2, .status-panel h2 { margin: 0; font-size: 16px; letter-spacing: -.025em; }
.qr-frame { width: 180px; height: 180px; margin: 34px auto 20px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: 0 9px 24px rgba(20,45,35,.08); }
.qr-frame img { width: 100%; height: 100%; image-rendering: pixelated; }
.panel-help { margin: 0; color: var(--ink-soft); font-size: 12px; }
.privacy-note { margin-top: 30px; padding: 12px; display: flex; align-items: center; gap: 9px; border-radius: 8px; background: #edf8f3; color: var(--green-dark); font-size: 11px; font-weight: 650; }
.privacy-note i { flex: 0 0 auto; font-size: 19px; }

.status-panel { min-width: 0; background: rgba(255,255,255,.88); }
.status-heading { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.status-pill { padding: 5px 10px; border-radius: 99px; color: var(--green-dark); background: var(--mint-soft); font-size: 10px; font-weight: 750; }
.status-timeline { list-style: none; margin: 26px 0 0; padding: 0; }
.status-timeline li { min-height: 93px; display: grid; grid-template-columns: 34px minmax(0,1fr) auto; gap: 12px; align-items: start; position: relative; }
.status-timeline li::after { content: ''; position: absolute; top: 31px; left: 16px; width: 1px; height: 62px; background: #cde9dd; }
.status-timeline li:last-child::after { display: none; }
.status-timeline li > span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--green); position: relative; z-index: 1; }
.status-timeline li.ready > span { color: #6551a2; background: var(--lavender); }
.status-timeline li > div { display: grid; padding-top: 2px; }
.status-timeline strong { font-size: 12px; }
.status-timeline small { color: var(--ink-soft); font-size: 10px; }
.status-timeline time { padding-top: 3px; color: #7d8782; font-size: 9px; }

.audience-strip {
  width: min(100%, var(--page));
  min-height: 250px;
  margin: 0 auto;
  padding: 56px 52px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 0;
  background: rgba(255,253,248,.56);
}
.audience-strip > div { padding: 0 34px; border-left: 1px solid var(--line); }
.audience-strip > div:first-child { padding-left: 0; border-left: 0; }
.audience-strip h2 { max-width: 430px; margin: 0; font-size: 36px; line-height: 1.28; letter-spacing: -.045em; }
.audience-item { display: grid; align-content: start; gap: 8px; }
.audience-item > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--mint-soft); font-size: 19px; }
.audience-item strong { margin-top: 5px; font-size: 14px; }
.audience-item p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

.how-section, .platform-section, .pricing-section, .faq-section, .final-cta, .site-footer {
  width: min(calc(100% - 64px), 1320px);
  margin-left: auto;
  margin-right: auto;
}
.how-section, .platform-section, .pricing-section, .faq-section { padding: 128px 0; }
.section-heading { max-width: 720px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading h2, .platform-copy h2, .faq-section h2, .final-cta h2 { margin: 0; font-size: clamp(40px, 4vw, 62px); line-height: 1.12; letter-spacing: -.055em; }
.section-heading > p:last-child, .platform-copy > p, .pricing-section .section-heading > p:last-child { color: var(--ink-soft); font-size: 18px; }

.how-section { padding: 104px 0 94px; }
.how-intro-grid { min-height: 500px; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 54px; }
.how-copy { max-width: 500px; padding-bottom: 28px; }
.how-copy h2 { font-size: clamp(46px, 4.1vw, 62px); }
.how-copy > p:last-child { max-width: 490px; margin: 28px 0 0; line-height: 1.55; }

.how-product-demo { min-width: 0; min-height: 500px; position: relative; }
.how-demo-shell { position: absolute; inset: 6px 18px auto 0; height: 366px; display: grid; grid-template-columns: 132px 1fr; overflow: hidden; border: 1px solid #dfe6e1; border-radius: 18px; background: var(--white); box-shadow: 0 18px 50px rgba(13,41,31,.12); }
.how-demo-sidebar { padding: 28px 14px; color: rgba(255,255,255,.78); background: var(--green-dark); }
.how-demo-sidebar > strong { display: block; margin: 0 8px 28px; color: var(--white); font-size: 20px; letter-spacing: -.05em; }
.how-demo-sidebar > strong span { color: var(--mint); }
.how-demo-sidebar p { min-height: 36px; margin: 0 0 3px; padding: 0 9px; display: flex; align-items: center; gap: 8px; border-radius: 8px; font-size: 10px; }
.how-demo-sidebar p i { font-size: 15px; }
.how-demo-sidebar p.active { color: var(--white); background: rgba(57,217,163,.24); }
.how-demo-canvas { padding: 27px 30px; color: var(--ink); background: rgba(255,255,255,.94); }
.how-demo-topline { margin-bottom: 26px; display: flex; align-items: center; gap: 12px; }
.how-demo-topline > strong { font-size: 14px; }
.how-demo-topline span { display: flex; align-items: center; gap: 5px; color: var(--green); font-size: 9px; }
.how-demo-topline span i { font-size: 6px; }
.how-demo-topline small { margin-left: auto; padding: 6px 13px; border: 1px solid #cde6dc; border-radius: 99px; color: var(--green); font-size: 9px; }
.how-demo-canvas > p { margin: 0 0 2px; color: var(--ink-soft); font-size: 10px; }
.how-demo-canvas > strong { font-size: 13px; }

.how-demo-flow { position: absolute; left: 96px; right: 0; top: 145px; display: grid; grid-template-columns: minmax(0,1fr) 30px minmax(0,1fr) 30px minmax(0,1fr); align-items: center; z-index: 2; }
.how-flow-arrow { color: var(--green); font-size: 22px; text-align: center; }
.how-demo-card { min-width: 0; min-height: 334px; padding: 24px 22px 20px; display: flex; flex-direction: column; border: 1px solid #e2e5e1; border-radius: 14px; background: rgba(255,255,255,.97); box-shadow: 0 16px 36px rgba(18,49,38,.13); }
.demo-card-heading { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.demo-card-heading > i { color: var(--green); font-size: 24px; }
.demo-kicker { color: var(--ink-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.how-demo-card h3 { margin: 3px 0 4px; font-size: 15px; letter-spacing: -.025em; }
.how-demo-card > p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.45; }
.how-qr { width: 132px; height: 132px; margin: 16px auto 12px; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.how-qr img { width: 100%; height: 100%; object-fit: contain; }
.demo-card-icon { width: 48px; height: 48px; margin: 2px auto 14px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--mint-soft); font-size: 25px; }
.message-card, .events-card { padding-top: 28px; text-align: center; }
.demo-message { margin: 25px 0 14px; padding: 13px; border-radius: 10px 10px 3px 10px; color: #2c4c41; background: #edf8f2; font-size: 10px; line-height: 1.4; text-align: left; }
.demo-message span { margin-top: 7px; display: block; color: var(--ink-soft); font-size: 8px; text-align: right; }
.demo-message span i { color: var(--green); }
.demo-status { min-height: 36px; margin-top: auto; padding: 8px 10px; display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: 8px; color: var(--green); background: #eef8f3; font-size: 9px; font-weight: 700; }
.demo-status.delivered { color: var(--white); background: var(--green); }
.events-card ul { list-style: none; margin: 21px 0 0; padding: 0; text-align: left; }
.events-card li { min-height: 42px; display: grid; grid-template-columns: 16px 1fr auto; align-items: center; gap: 6px; border-top: 1px solid var(--line); font-size: 8px; }
.events-card li i { color: var(--green); font-size: 14px; }
.events-card time { color: #87918c; font-size: 7px; }

.steps { list-style: none; margin: 62px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.how-journey li { min-width: 0; padding-right: 34px; }
.how-journey li + li { padding-left: 8px; }
.journey-marker { height: 42px; display: flex; align-items: center; }
.step-number { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--coral); font-size: 13px; font-weight: 800; letter-spacing: .03em; }
.journey-line { height: 1px; flex: 1; margin-left: 12px; position: relative; background: rgba(8,122,87,.55); }
.journey-line i { position: absolute; top: 50%; right: -2px; padding-left: 7px; color: var(--green); background: var(--cream); font-size: 16px; transform: translateY(-50%); }
.journey-content { margin-top: 22px; display: grid; grid-template-columns: 72px 1fr; align-items: start; gap: 24px; }
.journey-content > i { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 14px; color: var(--green); background: #e9f4ec; font-size: 36px; }
.how-journey h3 { margin: 6px 0 7px; font-size: 21px; letter-spacing: -.035em; }
.how-journey p { max-width: 300px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

.platform-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; border-top: 1px solid var(--line); }
.platform-copy { position: sticky; top: 48px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--green); font-weight: 750; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { min-height: 138px; padding: 30px 0; display: grid; grid-template-columns: 52px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.feature-list article > i { width: 52px; height: 52px; display: grid; place-items: center; color: var(--green); background: var(--mint-soft); border-radius: 14px; font-size: 25px; }
.feature-list h3 { margin: 0 0 6px; font-size: 21px; letter-spacing: -.025em; }
.feature-list p { margin: 0; color: var(--ink-soft); }

.pricing-section { border-top: 1px solid var(--line); }
.pricing-grid { max-width: 860px; margin: 64px auto 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-plan { min-height: 540px; padding: 44px 40px 38px; display: flex; flex-direction: column; border: 1px solid #dfe4df; border-radius: 20px; background: rgba(255,255,255,.72); position: relative; }
.price-plan.featured { border-color: rgba(8,122,87,.48); background: var(--white); box-shadow: 0 24px 60px rgba(8,122,87,.12); transform: none; z-index: 2; }
.discount-badge { position: absolute; top: 20px; right: 20px; padding: 7px 11px; border-radius: 99px; color: var(--green-dark); background: var(--mint-soft); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.plan-name { margin: 0; max-width: calc(100% - 92px); font-size: 22px; font-weight: 800; letter-spacing: -.025em; }
.price-plan:first-child .plan-name { max-width: none; }
.plan-price { margin: 30px 0 10px; color: var(--green); font-size: 58px; line-height: 1; font-weight: 780; letter-spacing: -.055em; }
.price-plan.annual .plan-price { font-size: 50px; }
.plan-price span { margin-right: 6px; font-size: 20px; vertical-align: top; letter-spacing: -.02em; }
.plan-price sup { font-size: .48em; vertical-align: top; letter-spacing: -.03em; }
.plan-price small { display: block; margin: 9px 0 0 34px; color: var(--ink-soft); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.payment-note { min-height: 24px; margin: 0; color: var(--ink-soft); font-size: 13px; }
.payment-note s { color: #8a948f; }
.price-plan ul { list-style: none; margin: 30px 0 36px; padding: 26px 0 0; display: grid; gap: 13px; border-top: 1px solid var(--line); }
.price-plan li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.price-plan li i { color: #65c711; font-size: 17px; }
.price-plan .button { width: 100%; margin-top: auto; }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 17px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary i { color: var(--green); transition: transform 180ms ease; }
details[open] summary i { transform: rotate(45deg); }
details p { margin: -8px 48px 28px 0; color: var(--ink-soft); }

.final-cta {
  min-height: 390px;
  padding: 76px 82px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  color: var(--white);
  background: var(--green-dark);
  overflow: hidden;
  position: relative;
}
.final-cta h2 { max-width: 760px; }
.section-label.light { color: var(--mint); }
.final-cta > div:last-child { text-align: center; }
.final-cta > div:last-child p { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 12px; }

.site-footer { padding: 92px 0 36px; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }
.site-footer .wordmark { font-size: 30px; }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.site-footer strong { margin-bottom: 5px; font-size: 13px; }
.site-footer a:not(.wordmark), .site-footer p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.site-footer a:not(.wordmark):hover { color: var(--green); }
.site-footer > div:first-child p { max-width: 300px; margin-top: 10px; }
.footer-bottom { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line); }

.how-section, .platform-section, .pricing-section, .faq-section { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .how-section:not(.in-view), .platform-section:not(.in-view), .pricing-section:not(.in-view), .faq-section:not(.in-view) { opacity: .01; transform: translateY(24px); }
  .how-section, .platform-section, .pricing-section, .faq-section { transition: opacity 520ms ease, transform 520ms ease; }
}

@media (max-width: 1260px) {
  .site-header { grid-template-columns: 190px 1fr auto; padding: 0 32px; }
  .site-nav { gap: 24px; }
  .hero { min-height: 660px; padding: 44px 32px 60px; grid-template-columns: minmax(390px,.8fr) minmax(620px,1.2fr); gap: 24px; }
  .hero h1 { font-size: 58px; }
  .product-stage { width: 100%; }
  .product-shell { grid-template-columns: 94px 210px minmax(310px,1fr); min-height: 510px; }
  .product-nav-item { padding: 0 8px; }
  .product-nav-item span { display: none; }
  .product-nav-item i { margin: auto; }
  .qr-frame { width: 160px; height: 160px; }
  .audience-strip { padding-left: 32px; padding-right: 32px; }
  .audience-strip > div { padding: 0 22px; }
  .how-intro-grid { grid-template-columns: .68fr 1.32fr; gap: 30px; }
  .how-demo-shell { grid-template-columns: 106px 1fr; }
  .how-demo-sidebar { padding-left: 10px; padding-right: 10px; }
  .how-demo-sidebar p { font-size: 0; justify-content: center; }
  .how-demo-sidebar p i { font-size: 16px; }
  .how-demo-flow { left: 70px; grid-template-columns: minmax(0,1fr) 22px minmax(0,1fr) 22px minmax(0,1fr); }
  .how-demo-card { padding-left: 16px; padding-right: 16px; }
  .journey-content { grid-template-columns: 60px 1fr; gap: 18px; }
  .journey-content > i { width: 60px; height: 60px; }
}

@media (max-width: 1020px) {
  .site-header { height: 86px; grid-template-columns: 1fr auto auto; }
  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    left: 20px;
    right: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(20,42,33,.15);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
  }
  .site-header.mobile-open .site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a, .nav-trigger { width: 100%; min-height: 46px; justify-content: space-between; text-align: left; }
  .nav-dropdown { position: static; width: auto; padding: 0 0 8px 12px; border: 0; box-shadow: none; background: transparent; transform: none; display: none; opacity: 1; visibility: visible; }
  .nav-group.open .nav-dropdown { display: block; transform: none; }
  .mobile-menu-button { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; background: transparent; font-size: 22px; cursor: pointer; }
  .header-actions .login-link { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 720px; }
  .hero-art { width: 1050px; right: -350px; top: 420px; }
  .product-stage { margin-top: 40px; }
  .audience-strip { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .audience-strip > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .platform-section, .faq-section { grid-template-columns: 1fr; gap: 60px; }
  .platform-copy { position: static; }
  .how-intro-grid { grid-template-columns: .68fr 1.32fr; gap: 30px; }
  .how-copy { max-width: 500px; padding-bottom: 28px; }
  .how-product-demo { min-height: 500px; }
  .how-demo-shell { grid-template-columns: 106px 1fr; }
  .how-demo-sidebar p { font-size: 0; justify-content: center; }
  .how-demo-flow { left: 70px; grid-template-columns: minmax(0,1fr) 22px minmax(0,1fr) 22px minmax(0,1fr); }
  .how-journey { margin-top: 48px; }
  .how-journey li { padding-right: 20px; }
  .journey-content { grid-template-columns: 48px 1fr; gap: 14px; }
  .journey-content > i { width: 48px; height: 48px; font-size: 26px; }
  .how-journey h3 { margin-top: 2px; font-size: 18px; }
  .how-journey p { font-size: 13px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .price-plan, .price-plan:first-child, .price-plan:last-child, .price-plan.featured { min-height: 0; border-radius: 18px; transform: none; }
  .site-footer { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer > div:last-of-type { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-header { padding: 0 18px; }
  .site-header .wordmark { font-size: 30px; }
  .header-actions .button { display: none; }
  .hero { padding: 54px 18px 44px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-actions { margin-top: 32px; flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-art { width: 820px; height: 560px; right: -380px; top: 480px; opacity: .58; }
  .product-shell { min-height: 620px; grid-template-columns: 64px 1fr; grid-template-rows: auto auto; }
  .product-sidebar { grid-row: 1 / 3; padding: 18px 8px; }
  .product-logo { font-size: 0; padding: 5px 0 18px; text-align: center; }
  .product-logo::first-letter { font-size: 17px; }
  .product-nav-item { padding: 0; }
  .product-avatar { width: 34px; height: 34px; }
  .connect-panel { display: grid; grid-template-columns: 1fr 120px; align-items: center; gap: 6px 16px; padding: 22px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .connect-panel .panel-kicker, .connect-panel h2, .connect-panel .panel-help, .connect-panel .privacy-note { grid-column: 1; }
  .qr-frame { grid-column: 2; grid-row: 1 / 5; width: 116px; height: 116px; margin: 0; padding: 8px; }
  .privacy-note { margin-top: 10px; padding: 8px; }
  .status-panel { padding: 22px 18px; }
  .status-timeline li { min-height: 82px; grid-template-columns: 31px 1fr; }
  .status-timeline li > span { width: 31px; height: 31px; }
  .status-timeline li::after { left: 15px; height: 52px; }
  .status-timeline time { display: none; }
  .audience-strip { min-height: 0; padding: 58px 18px; grid-template-columns: 1fr; gap: 0; }
  .audience-strip > div, .audience-strip > div:nth-child(3) { padding: 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .audience-strip > div:first-child { padding-top: 0; border-top: 0; }
  .audience-strip h2 { font-size: 34px; }
  .how-section, .platform-section, .pricing-section, .faq-section, .final-cta, .site-footer { width: min(calc(100% - 36px), 1320px); }
  .how-section, .platform-section, .pricing-section, .faq-section { padding: 84px 0; }
  .section-heading h2, .platform-copy h2, .faq-section h2, .final-cta h2 { font-size: 40px; }
  .how-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .how-copy { max-width: none; padding-bottom: 0; }
  .how-copy > p:last-child { margin-top: 22px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { min-height: 0; padding: 30px 0 42px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step-number { margin-bottom: 20px; }
  .how-product-demo { min-height: auto; }
  .how-demo-shell { display: none; }
  .how-demo-flow { position: static; grid-template-columns: 1fr; gap: 12px; }
  .how-flow-arrow { transform: rotate(90deg); }
  .how-demo-card { min-height: 0; padding: 24px; }
  .how-qr { width: 142px; height: 142px; }
  .message-card, .events-card { padding-top: 24px; }
  .demo-message { margin-top: 18px; }
  .events-card li { min-height: 46px; font-size: 10px; }
  .events-card time { font-size: 9px; }
  .how-journey { margin-top: 46px; }
  .how-journey li, .how-journey li + li { padding: 24px 0 32px; border-bottom: 1px solid var(--line); }
  .how-journey li:last-child { border-bottom: 0; }
  .journey-marker { height: 38px; }
  .step-number { width: 38px; height: 38px; flex-basis: 38px; margin-bottom: 0; }
  .journey-line { margin-left: 10px; }
  .journey-content { margin-top: 18px; grid-template-columns: 52px 1fr; gap: 16px; }
  .journey-content > i { width: 52px; height: 52px; font-size: 28px; }
  .how-journey h3 { margin-top: 2px; font-size: 20px; }
  .how-journey p { font-size: 14px; }
  .feature-list article { grid-template-columns: 44px 1fr; gap: 18px; }
  .feature-list article > i { width: 44px; height: 44px; }
  .price-plan { padding: 30px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-name { max-width: calc(100% - 86px); }
  .plan-price, .price-plan.annual .plan-price { font-size: clamp(42px, 13vw, 54px); }
  .final-cta { min-height: 0; padding: 52px 28px; grid-template-columns: 1fr; }
  .final-cta > div:last-child { text-align: left; }
  .site-footer { padding-top: 70px; grid-template-columns: 1fr 1fr; gap: 44px 28px; }
  .site-footer > div:first-child, .site-footer > div:last-of-type { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
