:root {
  color-scheme: light;
  --page: #f2f6f7;
  --surface: #ffffff;
  --surface-2: #e8eff1;
  --ink: #102129;
  --muted: #60747e;
  --line: rgba(29, 72, 87, 0.16);
  --line-strong: rgba(29, 72, 87, 0.3);
  --blue: #277aa2;
  --blue-bright: #64c8ec;
  --green: #20b486;
  --amber: #d79a39;
  --coral: #d96561;
  --violet: #7560bd;
  --hero: #071017;
  --hero-2: #0d1b22;
  --hero-ink: #f4f8f8;
  --hero-muted: #9eb1b9;
  --shadow: rgba(14, 43, 55, 0.15);
  --header-bg: rgba(7, 16, 23, 0.86);
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #071017;
  --surface: #101d23;
  --surface-2: #14272d;
  --ink: #f1f7f7;
  --muted: #91a7af;
  --line: rgba(151, 193, 204, 0.16);
  --line-strong: rgba(151, 193, 204, 0.29);
  --blue: #62bce3;
  --green: #39d3a1;
  --amber: #e6b65f;
  --coral: #ed8580;
  --violet: #a491e3;
  --shadow: rgba(0, 0, 0, 0.38);
}
* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; overflow-x: hidden; background: var(--page); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
button, a { color: inherit; font: inherit; }
button { cursor: pointer; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 18px; height: 18px; }
.site-header { position: absolute; z-index: 30; top: 0; right: 0; left: 0; display: grid; width: min(1400px, calc(100% - 48px)); grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center; gap: 28px; border-bottom: 1px solid rgba(179, 204, 217, 0.14); margin: 0 auto; padding: 18px 0; color: var(--hero-ink); transition: background 180ms ease, width 180ms ease, padding 180ms ease; }
.site-header.is-fixed { position: fixed; width: 100%; border-bottom-color: rgba(179, 204, 217, 0.12); background: var(--header-bg); padding: 12px max(24px, calc((100vw - 1400px) / 2)); backdrop-filter: blur(18px); }
.brand { display: flex; width: fit-content; align-items: center; gap: 10px; }
.brand-mark { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 8px; background: #fff; }
.brand-mark img { width: 29px; height: 29px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 13px; }
.brand small { margin-top: 2px; color: var(--hero-muted); font-size: 9px; }
.desktop-nav { display: flex; gap: 28px; color: var(--hero-muted); font-size: 11px; font-weight: 750; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--green); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.desktop-nav a:hover { color: var(--hero-ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.icon-button { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; border: 1px solid currentColor; border-radius: 7px; background: transparent; }
.site-header .icon-button { border-color: rgba(179, 204, 217, 0.2); color: var(--hero-muted); }
.login-link { padding: 10px 12px; color: var(--hero-muted); font-size: 11px; font-weight: 800; }
.header-cta { border-radius: 7px; background: var(--hero-ink); color: #071018; padding: 11px 17px; font-size: 11px; font-weight: 850; }
.hero { position: relative; isolation: isolate; display: flex; min-height: min(860px, 100svh); align-items: center; overflow: hidden; background: var(--hero); color: var(--hero-ink); padding: 126px max(24px, calc((100vw - 1400px) / 2)) 92px; }
.hero::before { position: absolute; z-index: -2; top: 0; right: 0; width: 42%; height: 100%; border-left: 1px solid rgba(179, 204, 217, 0.08); background: #0a151c; content: ""; }
.hero::after { position: absolute; z-index: -1; right: 8%; bottom: 14%; width: 24vw; height: 1px; background: var(--green); content: ""; opacity: 0.35; transform: rotate(-23deg); }
.hero-copy { position: relative; z-index: 5; width: min(680px, 56%); }
.eyebrow { margin: 0; color: var(--blue); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.hero .eyebrow { color: var(--blue-bright); }
.hero h1 { max-width: 730px; margin: 16px 0 0; font-size: clamp(50px, 6.2vw, 90px); line-height: 0.96; letter-spacing: 0; }
.hero-lead { max-width: 610px; margin: 25px 0 0; color: var(--hero-muted); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.primary-cta, .secondary-cta { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; border-radius: 7px; padding: 0 20px; font-size: 12px; font-weight: 850; transition: transform 180ms ease, background 180ms ease; }
.primary-cta { background: var(--green); color: #041712; box-shadow: 0 14px 34px rgba(52, 211, 163, 0.2); }
.secondary-cta { border: 1px solid rgba(179, 204, 217, 0.2); background: rgba(255, 255, 255, 0.04); color: var(--hero-ink); }
.primary-cta:hover, .secondary-cta:hover { transform: translateY(-2px); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--hero-muted); font-size: 10px; font-weight: 700; }
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof svg { width: 14px; color: var(--green); }
.hero-scene { --scene-y: 0px; position: absolute; z-index: 1; top: 96px; right: max(15px, calc((100vw - 1420px) / 2)); width: min(630px, 48vw); height: calc(100% - 110px); transform: translateY(var(--scene-y)); }
.phone-preview { position: absolute; right: 3%; bottom: -44px; width: min(330px, 26vw); aspect-ratio: 0.53; border: 1px solid rgba(179, 204, 217, 0.25); border-radius: 42px 42px 0 0; background: #0b1721; padding: 10px; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.52); transform: rotate(2deg); }
.phone-preview::before { position: absolute; z-index: 2; top: 12px; left: 50%; width: 88px; height: 24px; border-radius: 14px; background: #04090d; content: ""; transform: translateX(-50%); }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 33px 33px 0 0; background: #101e29; padding: 48px 20px 20px; }
.preview-brand { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 9px; font-weight: 850; }
.preview-brand img { width: 34px; height: 34px; border-radius: 7px; background: #fff; padding: 4px; }
.preview-brand small { color: #8da2af; font-size: 7px; }
.preview-profile { display: flex; align-items: center; gap: 10px; margin-top: 34px; }
.preview-profile > img { width: 82px; height: 82px; border: 3px solid #54bde8; border-radius: 50%; object-fit: cover; }
.preview-profile strong, .preview-profile small { display: block; }
.preview-profile strong { max-width: 150px; font-size: 17px; line-height: 1.1; }
.preview-profile small { margin-top: 6px; color: #58b6e8; font-size: 8px; }
.preview-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 32px; }
.preview-actions span { display: grid; min-height: 76px; place-items: center; border: 1px solid rgba(151, 187, 207, 0.16); border-radius: 8px; background: #142632; color: #58b6e8; }
.preview-dock { position: absolute; right: 12px; bottom: 12px; left: 12px; display: flex; height: 60px; align-items: center; justify-content: space-around; border: 1px solid rgba(151, 187, 207, 0.2); border-radius: 24px; background: rgba(6, 14, 21, 0.88); color: #8da2af; }
.preview-dock > span { display: grid; width: 48px; height: 48px; place-items: center; border: 5px solid #153c37; border-radius: 50%; background: var(--green); color: #fff; transform: translateY(-16px); }
.nfc-card { position: absolute; top: 16%; left: 0; width: min(360px, 29vw); aspect-ratio: 1.58; border: 1px solid rgba(179, 204, 217, 0.22); border-radius: 15px; background: #173342; padding: 24px; box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42); transform: rotate(-9deg); animation: card-float 5s ease-in-out infinite; }
.nfc-card-top { display: flex; align-items: center; justify-content: space-between; color: #b7c7ce; }
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 9px; font-weight: 850; }
.mini-brand img { width: 30px; height: 30px; border-radius: 6px; background: #fff; padding: 3px; }
.nfc-card-chip { width: 34px; height: 28px; margin-top: 38px; border: 1px solid rgba(227, 174, 96, 0.55); border-radius: 5px; background: #bc853b; }
.nfc-card > strong, .nfc-card > small { display: block; }
.nfc-card > strong { margin-top: 22px; font-size: 19px; }
.nfc-card > small { margin-top: 4px; color: #8fa5b1; font-size: 9px; }
.scene-event { position: absolute; z-index: 6; display: flex; align-items: center; gap: 10px; min-width: 190px; border: 1px solid rgba(151, 187, 207, 0.2); border-radius: 8px; background: rgba(15, 31, 40, 0.92); padding: 12px; color: #f1f6f7; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36); backdrop-filter: blur(14px); animation: event-float 4s ease-in-out infinite; }
.scene-event > svg { color: var(--green); }
.scene-event strong, .scene-event small { display: block; }
.scene-event strong { font-size: 10px; }
.scene-event small { margin-top: 3px; color: #90a5ae; font-size: 8px; }
.event-pix { right: 29%; bottom: 25%; }
.event-view { top: 23%; right: 0; animation-delay: -2s; }
.scroll-cue { position: absolute; z-index: 5; bottom: 23px; left: 50%; display: flex; align-items: center; gap: 10px; color: #81969f; font-size: 9px; font-weight: 800; transform: translateX(-50%); }
.scroll-cue svg { animation: cue 1.6s ease-in-out infinite; }
.signal-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--surface); padding: 18px max(24px, calc((100vw - 1400px) / 2)); }
.signal-strip span { display: flex; min-height: 28px; align-items: center; justify-content: center; gap: 8px; border-right: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; }
.signal-strip span:last-child { border-right: 0; }
.signal-strip svg { color: var(--blue); }
.section { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 108px 0; }
.section-heading { max-width: 720px; }
.section-heading h2, .experience-intro h2, .final-cta h2 { margin: 13px 0 0; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.06; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: var(--line); }
.journey-grid article { position: relative; min-height: 310px; background: var(--page); padding: 34px; }
.journey-grid article > svg { width: 34px; height: 34px; color: var(--blue); transition: transform 220ms ease; }
.journey-grid article:hover > svg { transform: translateY(-4px); }
.journey-grid article:nth-child(2) > svg { color: var(--green); }
.journey-grid article:nth-child(3) > svg { color: var(--amber); }
.step { position: absolute; top: 34px; right: 34px; color: var(--muted); font-size: 10px; font-weight: 900; }
.journey-grid h3 { margin: 100px 0 0; font-size: 22px; }
.journey-grid p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.experience-band { overflow: hidden; background: var(--hero); color: var(--hero-ink); padding: 100px max(20px, calc((100vw - 1240px) / 2)); }
.experience-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.experience-intro > div:first-child { max-width: 760px; }
.experience-intro .eyebrow { color: var(--blue-bright); }
.carousel-controls { display: flex; align-items: center; gap: 12px; color: var(--hero-muted); }
.carousel-controls .icon-button { border-color: rgba(151, 187, 207, 0.24); }
.carousel-controls span { min-width: 55px; font-size: 9px; text-align: center; }
.carousel-controls strong { color: var(--hero-ink); font-size: 14px; }
.experience-carousel { margin-top: 48px; overflow: hidden; outline: 0; }
.experience-track { display: flex; transition: transform 560ms cubic-bezier(.22,.76,.23,1); }
.experience-slide { display: grid; min-width: 100%; grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr); align-items: center; gap: 68px; }
.slide-copy > span { color: var(--green); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.slide-copy h3 { max-width: 460px; margin: 12px 0 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.05; }
.slide-copy p { max-width: 480px; margin: 18px 0 0; color: var(--hero-muted); font-size: 13px; line-height: 1.75; }
.slide-copy ul { display: grid; gap: 10px; margin: 25px 0 0; padding: 0; color: #c8d5da; font-size: 10px; list-style: none; }
.slide-copy li::before { margin-right: 9px; color: var(--green); content: "✓"; }
.slide-copy > a { display: inline-flex; align-items: center; gap: 7px; margin-top: 25px; color: var(--blue-bright); font-size: 11px; font-weight: 850; }
.ui-stage { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; border: 1px solid rgba(151, 187, 207, 0.15); border-radius: 8px; background: #0d1b23; }
.ui-stage::before { position: absolute; top: 0; right: 0; left: 0; height: 36px; border-bottom: 1px solid rgba(151,187,207,.1); content: ""; }
.mini-phone { width: 270px; min-height: 440px; border: 8px solid #263944; border-radius: 30px; background: #f0f5f6; padding: 30px 18px 18px; box-shadow: 0 30px 80px rgba(0,0,0,.42); transform: rotate(-2deg); }
.mini-profile { display: grid; justify-items: center; color: #12242c; }
.mini-profile img { width: 74px; height: 74px; border: 3px solid #2a87ad; border-radius: 50%; object-fit: cover; }
.mini-profile b { margin-top: 10px; font-size: 14px; }
.mini-profile small { margin-top: 4px; color: #67808b; font-size: 8px; }
.mini-pix { display: grid; justify-items: center; border: 1px solid rgba(29,72,87,.16); border-radius: 8px; margin-top: 22px; background: #fff; padding: 19px; color: #12242c; }
.mini-pix > svg { width: 116px; height: 116px; color: #102129; }
.mini-pix strong { margin-top: 10px; font-size: 11px; }
.mini-pix span { width: 100%; border-radius: 6px; margin-top: 12px; background: #20b486; padding: 10px; color: #041712; font-size: 8px; font-weight: 900; text-align: center; }
.dashboard-stage { place-items: stretch; grid-template-columns: 72px 1fr; padding: 70px 34px 34px; }
.mock-sidebar { display: grid; align-content: start; justify-items: center; gap: 30px; border-right: 1px solid rgba(151,187,207,.12); padding-top: 20px; color: #6f8994; }
.mock-sidebar svg:nth-child(2) { color: var(--green); }
.mock-dashboard { padding: 18px 28px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row span { border: 1px solid rgba(151,187,207,.15); border-radius: 7px; background: #12252e; padding: 16px; }
.metric-row small, .metric-row b { display: block; }
.metric-row small { color: #78919b; font-size: 8px; }
.metric-row b { margin-top: 9px; font-size: 20px; }
.mock-chart { display: flex; height: 180px; align-items: end; gap: 10px; border-bottom: 1px solid rgba(151,187,207,.15); margin-top: 34px; padding: 0 12px; }
.mock-chart i { width: 12%; height: 34%; background: #287ca3; }
.mock-chart i:nth-child(2) { height: 52%; background: #20b486; }
.mock-chart i:nth-child(3) { height: 45%; }
.mock-chart i:nth-child(4) { height: 73%; background: #d79a39; }
.mock-chart i:nth-child(5) { height: 62%; }
.mock-chart i:nth-child(6) { height: 88%; background: #20b486; }
.mock-chart i:nth-child(7) { height: 76%; }
.mock-actions { display: grid; gap: 9px; margin-top: 24px; }
.mock-actions span { display: flex; justify-content: space-between; color: #8da3ac; font-size: 9px; }
.mock-actions b { color: #d7e4e8; }
.mock-editor { display: grid; width: calc(100% - 60px); grid-template-columns: 48px 1fr 220px; gap: 22px; }
.editor-nav { display: grid; align-content: start; gap: 14px; }
.editor-nav span { height: 40px; border-radius: 7px; background: #19313c; }
.editor-fields { display: grid; align-content: center; gap: 13px; }
.editor-fields i { height: 42px; border: 1px solid rgba(151,187,207,.14); border-radius: 6px; background: #12252e; }
.editor-fields button { height: 42px; border: 0; border-radius: 6px; background: var(--green); color: #061812; font-size: 9px; font-weight: 900; }
.editor-card { display: grid; justify-items: center; border-radius: 8px; background: #eaf1f3; padding: 32px 18px; color: #102129; }
.editor-card img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; }
.editor-card b { margin-top: 12px; }
.editor-card small { margin-top: 4px; color: #647983; }
.editor-card div { display: flex; gap: 8px; margin-top: 30px; }
.editor-card div span { width: 38px; height: 38px; border-radius: 7px; background: #277aa2; }
.editor-card div span:nth-child(2) { background: #20b486; }
.editor-card div span:nth-child(3) { background: #d79a39; }
.product-stage { grid-template-columns: 1fr 1fr; gap: 10px; padding: 48px 24px 24px; }
.product-stage img { width: 100%; height: 390px; border-radius: 7px; object-fit: cover; }
.product-stage img:nth-child(2) { transform: translateY(24px); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dots button { width: 28px; height: 3px; border: 0; background: rgba(151,187,207,.25); padding: 0; transition: width 180ms ease, background 180ms ease; }
.carousel-dots button.is-active { width: 58px; background: var(--green); }
.ecosystem-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 280px); gap: 12px; margin-top: 48px; }
.product-story { position: relative; overflow: hidden; border-radius: 8px; background: #dfe8ea; }
.product-story-wide { grid-row: 1 / 3; }
.product-story img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms cubic-bezier(.22,.76,.23,1); }
.product-story:hover img { transform: scale(1.035); }
.product-story > span { position: absolute; right: 16px; bottom: 16px; left: 16px; display: grid; grid-template-columns: 1fr auto; align-items: end; border-radius: 7px; background: rgba(7,16,23,.88); padding: 15px; color: #fff; backdrop-filter: blur(12px); }
.product-story small, .product-story strong { display: block; grid-column: 1; }
.product-story small { color: #87a0aa; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.product-story strong { margin-top: 5px; font-size: 14px; }
.product-story svg { grid-column: 2; grid-row: 1 / 3; }
.ecosystem-action { display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); margin-top: 34px; padding-top: 28px; }
.ecosystem-action strong, .ecosystem-action span { display: block; }
.ecosystem-action strong { font-size: 13px; }
.ecosystem-action span { margin-top: 5px; color: var(--muted); font-size: 10px; }
.ecosystem-action a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 10px; font-weight: 850; }
.plans-section { width: 100%; background: var(--surface-2); padding: 105px max(20px, calc((100vw - 1240px) / 2)); }
.plans-inner { max-width: 1240px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 44px; }
.plan { position: relative; display: flex; min-height: 430px; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); padding: 25px; }
.plan.featured { border-color: color-mix(in srgb, var(--green) 52%, var(--line)); box-shadow: 0 20px 55px var(--shadow); }
.plan-tag { position: absolute; top: 15px; right: 15px; border-radius: 5px; background: rgba(52,211,163,.12); color: var(--green); padding: 5px 8px; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.plan > p { margin: 0; color: var(--blue); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.plan h3 { margin: 14px 0 0; font-size: 25px; }
.plan > span { margin-top: 7px; color: var(--muted); font-size: 10px; }
.plan ul { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.plan li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; }
.plan li svg { width: 14px; color: var(--green); }
.plan > a { display: flex; min-height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 7px; margin-top: auto; font-size: 10px; font-weight: 850; }
.plan.featured > a { border-color: var(--green); background: var(--green); color: #051813; }
.decision { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; font-size: 13px; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list summary svg { flex: 0 0 auto; color: var(--blue); transition: transform 180ms ease; }
.faq-list p { margin: -6px 0 25px; color: var(--muted); font-size: 11px; line-height: 1.75; }
.final-cta { display: flex; min-height: 500px; flex-direction: column; align-items: center; justify-content: center; background: var(--hero); color: var(--hero-ink); padding: 82px 24px; text-align: center; }
.final-cta > img { width: 58px; height: 58px; border-radius: 8px; margin-bottom: 22px; background: #fff; padding: 6px; }
.final-cta h2 { max-width: 760px; }
.final-cta > p:not(.eyebrow) { max-width: 600px; margin: 17px 0 0; color: var(--hero-muted); font-size: 13px; }
.final-cta > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.final-cta a { display: inline-flex; min-height: 48px; align-items: center; gap: 9px; border: 1px solid rgba(151,187,207,.24); border-radius: 7px; padding: 0 20px; font-size: 11px; font-weight: 850; }
.final-cta a:first-child { border-color: var(--green); background: var(--green); color: #061712; }
footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #040a0f; color: #8296a1; padding: 28px max(24px, calc((100vw - 1400px) / 2)); font-size: 9px; }
.footer-brand strong { color: #f1f5f6; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: #dbe5e9; font-weight: 800; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,.76,.23,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes card-float { 0%,100% { transform: rotate(-9deg) translateY(0); } 50% { transform: rotate(-7deg) translateY(-10px); } }
@keyframes event-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes cue { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-copy { width: 62%; }
  .hero-scene { right: -60px; width: 55vw; }
  .experience-slide { grid-template-columns: .75fr 1.25fr; gap: 32px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { width: calc(100% - 28px); padding: 13px 0; }
  .site-header.is-fixed { width: 100%; padding: 10px 14px; }
  .brand small, .header-cta { display: none; }
  .login-link { display: inline-flex; min-height: 36px; align-items: center; padding: 0 9px; color: var(--hero-ink); font-size: 10px; }
  .hero { min-height: 820px; align-items: flex-start; padding: 112px 18px 58px; }
  .hero::before { top: auto; width: 100%; height: 44%; border-top: 1px solid rgba(179,204,217,.08); border-left: 0; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 430px; font-size: 49px; }
  .hero-lead { max-width: 410px; font-size: 14px; line-height: 1.58; }
  .hero-proof { gap: 9px 14px; }
  .hero-scene { top: auto; right: -8px; bottom: -35px; width: 100%; height: 370px; opacity: .79; }
  .phone-preview { right: 3%; bottom: -110px; width: 190px; border-radius: 28px 28px 0 0; padding: 7px; }
  .phone-screen { border-radius: 22px 22px 0 0; padding: 37px 12px 12px; }
  .phone-preview::before { top: 9px; width: 60px; height: 17px; }
  .preview-brand img { width: 25px; height: 25px; }
  .preview-profile { margin-top: 20px; }
  .preview-profile > img { width: 58px; height: 58px; }
  .preview-profile strong { font-size: 12px; }
  .preview-actions { margin-top: 18px; }
  .preview-actions span { min-height: 50px; }
  .preview-dock { height: 44px; }
  .preview-dock > span { width: 38px; height: 38px; }
  .nfc-card { top: 40px; left: 6px; width: 225px; padding: 15px; }
  .nfc-card-chip { margin-top: 18px; }
  .nfc-card > strong { margin-top: 12px; font-size: 13px; }
  .scene-event { min-width: 160px; padding: 9px; }
  .event-view { top: 14px; right: 2px; }
  .event-pix { right: 28%; bottom: 28%; }
  .scroll-cue { display: none; }
  .signal-strip { grid-template-columns: repeat(2, 1fr); padding: 10px 14px; }
  .signal-strip span { justify-content: flex-start; border-right: 0; padding: 7px; }
  .section { width: min(100% - 28px, 1240px); padding: 76px 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article { min-height: 220px; }
  .journey-grid h3 { margin-top: 55px; }
  .experience-band { padding: 76px 14px; }
  .experience-intro { align-items: flex-start; flex-direction: column; }
  .experience-intro h2 { font-size: 38px; }
  .experience-slide { grid-template-columns: 1fr; gap: 28px; }
  .slide-copy h3 { font-size: 34px; }
  .ui-stage { min-height: 430px; }
  .dashboard-stage { grid-template-columns: 48px 1fr; padding: 58px 12px 20px; }
  .mock-dashboard { padding: 14px; }
  .metric-row { gap: 5px; }
  .metric-row span { padding: 10px; }
  .metric-row b { font-size: 14px; }
  .mock-editor { width: calc(100% - 20px); grid-template-columns: 34px 1fr; }
  .editor-card { display: none; }
  .product-stage { min-height: 380px; padding: 46px 12px 12px; }
  .product-stage img { height: 300px; }
  .ecosystem-grid { grid-template-columns: 1fr; grid-template-rows: 360px 240px 240px; }
  .product-story-wide { grid-row: auto; }
  .ecosystem-action { align-items: flex-start; flex-direction: column; }
  .plans-section { padding: 76px 14px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan { min-height: 370px; }
  .decision { grid-template-columns: 1fr; gap: 42px; }
  .final-cta { min-height: 480px; }
  footer { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
