:root {
  color-scheme: dark;
  --bg: #050607;
  --panel: rgba(18, 20, 22, .84);
  --panel-solid: #121416;
  --text: #f4f6f7;
  --muted: #9ba1a6;
  --dim: #666c72;
  --chrome: #aeb4ba;
  --chrome-bright: #f4f6f8;
  --alert: #d5d9dc;
  --line: rgba(255, 255, 255, .11);
  --line-chrome: rgba(203, 209, 214, .42);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 7%, rgba(210, 218, 224, .075), transparent 24rem),
    radial-gradient(circle at 18% 35%, rgba(255, 255, 255, .04), transparent 28rem),
    repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0 3px, transparent 3px 9px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.36) 0 3px, transparent 3px 9px),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 35%, rgba(0,0,0,.44));
  animation: ambient-drift 16s var(--ease-in-out) infinite alternate;
}

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--text); color: var(--bg); border-radius: 10px; }
.skip-link:focus { top: 16px; }
.glass { background: linear-gradient(145deg, rgba(28,28,28,.82), rgba(12,12,12,.88)); border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 24px 70px rgba(0,0,0,.32); backdrop-filter: blur(18px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 76px;
  margin: 0;
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(20px);
  animation: header-enter 520ms var(--ease-out) both;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: .24em; font-weight: 500; white-space: nowrap; }
.brand img { border-radius: 11px; box-shadow: 0 0 30px rgba(255,255,255,.08); transition: transform 180ms var(--ease-out), opacity 180ms ease; }
.brand b { color: var(--muted); font-weight: 500; }
.brand.compact { font-size: 11px; }
.desktop-nav { display: flex; gap: 34px; color: var(--muted); font-size: 13px; }
.desktop-nav a { position: relative; transition: color 160ms ease; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; background: var(--chrome); opacity: 0; transform: scaleX(.35); transition: transform 180ms var(--ease-out), opacity 160ms ease; }
@media (hover: hover) and (pointer: fine) { .brand:hover img { transform: rotate(-5deg) scale(1.04); opacity: .9; } .desktop-nav a:hover { color: var(--text); } .desktop-nav a:hover::after { opacity: 1; transform: scaleX(1); } }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 116px 0; }
.hero { min-height: calc(100svh - 76px); display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; padding-top: 70px; overflow: hidden; }
.hero-copy > * { animation: hero-rise 620ms var(--ease-out) both; }
.hero-copy > :nth-child(2) { animation-delay: 70ms; }
.hero-copy > :nth-child(3) { animation-delay: 130ms; }
.hero-copy > :nth-child(4) { animation-delay: 190ms; }
.hero-copy > :nth-child(5) { animation-delay: 240ms; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--chrome); font-size: 11px; line-height: 1.4; letter-spacing: .19em; font-weight: 800; }
.eyebrow span { width: 24px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 24px; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(48px, 5.9vw, 86px); max-width: 820px; }
h2 { font-size: clamp(40px, 5vw, 68px); }
h1 em, h2 em { color: var(--muted); font-style: normal; font-weight: 500; }
.hero-lead, .section-heading > p:last-child { max-width: 610px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }
.button { position: relative; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; overflow: hidden; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; color: var(--text); background: transparent; cursor: pointer; font-weight: 760; font-size: 13px; transition: transform 140ms var(--ease-out), border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease; }
.button::after { content: ""; position: absolute; inset: -40% auto -40% -45%; width: 30%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent); opacity: 0; transform: translateX(-160%) skewX(-18deg); transition: transform 460ms var(--ease-out), opacity 160ms ease; }
.button:active { transform: scale(.97); }
.button:disabled { cursor: wait; opacity: .5; }
.button-primary { color: #090a0b; background: linear-gradient(135deg, var(--chrome-bright), var(--chrome)); box-shadow: 0 12px 34px rgba(210,218,224,.14), inset 0 1px rgba(255,255,255,.58); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.button-ghost { min-height: 40px; border-color: var(--line); padding: 0 18px; }
.button.full { width: 100%; }
.button.small { min-height: 42px; }
@media (hover: hover) and (pointer: fine) { .button:hover:not(:active) { transform: translateY(-2px); } .button:hover::after { opacity: .72; transform: translateX(520%) skewX(-18deg); } .button-primary:hover { background: linear-gradient(135deg, #ffffff, #c7cdd2); } .button-secondary:hover, .button-ghost:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.07); } }
.platform-line { display: flex; align-items: center; gap: 12px; color: var(--dim); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.platform-line i { width: 3px; height: 3px; border-radius: 50%; background: var(--chrome); animation: micro-pulse 2.4s var(--ease-in-out) infinite; }
.platform-line i:nth-of-type(2) { animation-delay: 1.2s; }

.hero-visual { position: relative; min-height: 680px; display: grid; place-items: center; isolation: isolate; }
.halo { position: absolute; width: 560px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(238,241,243,.13), rgba(174,180,186,.045) 28%, transparent 66%); filter: blur(2px); animation: halo-breathe 5.4s var(--ease-in-out) infinite; }
.carbon-emblem { position: absolute; width: 410px; right: -120px; top: 15px; z-index: -1; border-radius: 40px; opacity: .64; transform: rotate(5deg); animation: emblem-drift 7.5s var(--ease-in-out) infinite alternate; -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 94%); mask-image: linear-gradient(to bottom, black 50%, transparent 94%); }
.phone { position: relative; overflow: hidden; padding: 8px; border-radius: 48px; background: linear-gradient(135deg, #5a5a5a, #111 22%, #333 52%, #080808); box-shadow: 0 40px 100px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.18); }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 40px; filter: grayscale(1) contrast(1.04); }
.phone-main { width: 330px; aspect-ratio: 918 / 2048; transform: rotate(3deg); animation: settle-in 700ms var(--ease-out) both, phone-float 5.8s var(--ease-in-out) 760ms infinite; }
.phone-speaker { position: absolute; width: 76px; height: 17px; top: 18px; left: 50%; z-index: 2; transform: translateX(-50%); border-radius: 999px; background: #050505; }
.signal-card { position: absolute; left: 3%; bottom: 16%; z-index: 3; display: flex; align-items: center; gap: 12px; min-width: 230px; padding: 15px; border-radius: 18px; animation: signal-enter 620ms var(--ease-out) 320ms both, signal-float 4.8s var(--ease-in-out) 1s infinite; }
.signal-card div { display: grid; gap: 3px; }
.signal-card b { font-size: 12px; }
.signal-card small { color: var(--muted); }
.signal-dot { position: relative; width: 12px; height: 12px; border-radius: 50%; background: var(--chrome-bright); box-shadow: 0 0 0 6px rgba(210,218,224,.08), 0 0 24px var(--chrome); }
.signal-dot::after { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(238,241,243,.42); border-radius: 50%; animation: signal-ring 2.1s var(--ease-out) infinite; }
@keyframes settle-in { from { opacity: 0; transform: translateY(30px) rotate(3deg) scale(.97); } to { opacity: 1; transform: translateY(0) rotate(3deg) scale(1); } }
@keyframes header-enter { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ambient-drift { from { opacity: .76; transform: scale(1.03) translate3d(-.7%, -.5%, 0); } to { opacity: 1; transform: scale(1.06) translate3d(.7%, .5%, 0); } }
@keyframes halo-breathe { 0%, 100% { opacity: .55; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes emblem-drift { from { transform: translate3d(0, -8px, 0) rotate(3.5deg); } to { transform: translate3d(-12px, 10px, 0) rotate(6.5deg); } }
@keyframes phone-float { 0%, 100% { transform: translateY(0) rotate(3deg) scale(1); } 50% { transform: translateY(-12px) rotate(2.2deg) scale(1.006); } }
@keyframes signal-enter { from { opacity: 0; transform: translate3d(-22px, 10px, 0) scale(.97); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes signal-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes signal-ring { 0% { opacity: .7; transform: scale(.75); } 75%, 100% { opacity: 0; transform: scale(1.65); } }
@keyframes micro-pulse { 0%, 100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.35); } }

.motion-ready .motion-reveal { opacity: 0; transform: translateY(24px); transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out); }
.motion-ready .motion-reveal.motion-scale { transform: translateY(14px) scale(.985); }
.motion-ready .motion-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.motion-ready .motion-reveal.motion-settled { transition-duration: 220ms; transition-delay: 0ms; }
.motion-ready .motion-delay-1 { transition-delay: 55ms; }
.motion-ready .motion-delay-2 { transition-delay: 110ms; }
.motion-ready .motion-delay-3 { transition-delay: 165ms; }

.trust-strip { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 26px 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip div { display: flex; align-items: center; gap: 15px; padding: 10px 24px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { color: var(--chrome); font-size: 19px; }
.trust-strip span { color: var(--muted); font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }

.section-heading { max-width: 800px; margin-bottom: 56px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center > p:last-child { margin-left: auto; margin-right: auto; }
.product-stage { min-height: 720px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 36px; padding: clamp(30px, 5vw, 70px); border-radius: 36px; overflow: hidden; }
.product-copy { align-self: center; }
.index, .feature-number, .price-kicker { color: var(--chrome); font-size: 10px; letter-spacing: .16em; font-weight: 800; }
.product-copy h3, .feature-card h3 { margin: 20px 0 14px; font-size: 27px; letter-spacing: -.03em; }
.product-copy p, .feature-card p { color: var(--muted); line-height: 1.7; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 30px 0 0; list-style: none; color: #c7c7c7; font-size: 13px; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 10px; color: var(--chrome); border: 1px solid var(--line-chrome); border-radius: 50%; }
.phones-pair { position: relative; height: 620px; }
.phones-pair .phone { position: absolute; width: 280px; aspect-ratio: 918 / 2048; top: 50%; left: 50%; }
.phone-secondary { transform: translate(-85%, -45%) rotate(-8deg); opacity: .68; }
.phone-front { transform: translate(-20%, -54%) rotate(4deg); }
.motion-ready .product-stage .phone { transition: transform 900ms var(--ease-out), opacity 620ms var(--ease-out); }
.motion-ready .product-stage:not(.is-visible) .phone-secondary { opacity: 0; transform: translate(-98%, -39%) rotate(-13deg); }
.motion-ready .product-stage:not(.is-visible) .phone-front { opacity: 0; transform: translate(-5%, -46%) rotate(9deg); }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 360px; padding: 34px; border-radius: var(--radius); overflow: hidden; }
.feature-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.045), transparent 70%); opacity: 0; transform: translateX(-38%); transition: transform 520ms var(--ease-out), opacity 180ms ease; }
.feature-wide { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; grid-column: span 2; }
.feature-card > p { max-width: 470px; }
.feature-icon { width: 92px; height: 92px; margin: 48px 0 24px; display: grid; place-items: center; color: var(--chrome); font-size: 54px; border-radius: 28px; border: 1px solid var(--line-chrome); background: radial-gradient(circle, rgba(210,218,224,.12), transparent 70%); transition: transform 220ms var(--ease-out), opacity 180ms ease; }
.shield-mark { font-size: 66px; }
.route-visual { position: relative; min-height: 250px; }
.route-visual::before, .route-visual::after { content: ""; position: absolute; top: 50%; width: 46%; height: 1px; background: linear-gradient(90deg, transparent, var(--chrome), transparent); }
.route-visual::before { left: 0; transform: rotate(18deg); }.route-visual::after { right: 0; transform: rotate(-18deg); }
.route-visual i, .route-visual b { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--chrome); box-shadow: 0 0 28px rgba(210,218,224,.38); }
.route-visual i:nth-child(1) { left: 5%; top: 58%; }.route-visual i:nth-child(2) { left: 45%; top: 32%; }.route-visual i:nth-child(3) { right: 5%; top: 58%; }.route-visual b { left: 47%; top: 30%; width: 30px; height: 30px; border: 8px solid rgba(210,218,224,.2); }
.feature-card.is-visible .route-visual::before { transform-origin: right center; animation: route-left 3.2s var(--ease-in-out) infinite; }
.feature-card.is-visible .route-visual::after { transform-origin: left center; animation: route-right 3.2s var(--ease-in-out) infinite; }
.feature-card.is-visible .route-visual i, .feature-card.is-visible .route-visual b { animation: route-node 2.4s var(--ease-in-out) infinite; }
.feature-card.is-visible .route-visual i:nth-child(2) { animation-delay: .35s; }
.feature-card.is-visible .route-visual i:nth-child(3) { animation-delay: .7s; }
.feature-card.is-visible .route-visual b { animation-delay: .35s; }
@keyframes route-left { 0%, 100% { opacity: .42; transform: rotate(18deg) scaleX(.82); } 50% { opacity: 1; transform: rotate(18deg) scaleX(1); } }
@keyframes route-right { 0%, 100% { opacity: .42; transform: rotate(-18deg) scaleX(.82); } 50% { opacity: 1; transform: rotate(-18deg) scaleX(1); } }
@keyframes route-node { 0%, 100% { opacity: .5; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.15); } }
.support-card { align-items: center; }
.support-bubble { justify-self: end; width: min(100%, 390px); display: grid; gap: 8px; padding: 28px; border-radius: 28px 28px 8px 28px; background: linear-gradient(145deg, #202326, #101214); border: 1px solid var(--line-chrome); }
.support-bubble span { color: var(--muted); }.support-bubble i { margin-top: 12px; color: var(--chrome); font-size: 11px; font-style: normal; }
@media (hover: hover) and (pointer: fine) { .feature-card.motion-settled:hover { transform: translateY(-6px); } .feature-card:hover::after { opacity: 1; transform: translateX(38%); } .feature-card:hover .feature-icon { transform: rotate(-4deg) scale(1.06); } .account-promo-card:hover > img { transform: rotate(4deg) scale(1.035); } }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.price-card { position: relative; min-height: 400px; padding: 30px; display: flex; flex-direction: column; border-radius: var(--radius); }
.price-card h3 { margin: 18px 0 20px; font-size: 22px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.price b { font-size: 48px; letter-spacing: -.06em; }.price span { color: var(--chrome); }
.price-card p { flex: 1; color: var(--muted); line-height: 1.6; font-size: 13px; }
.price-card.featured { transform: translateY(-16px); border-color: var(--line-chrome); background: linear-gradient(150deg, rgba(42,46,50,.9), rgba(13,14,15,.95) 60%); }
.popular { position: absolute; right: 22px; top: 22px; padding: 7px 10px; color: #090a0b; background: var(--chrome); border-radius: 999px; font-size: 8px; letter-spacing: .12em; font-weight: 900; }
.pricing-note { margin: 24px auto 0; max-width: 720px; text-align: center; color: var(--dim); font-size: 12px; line-height: 1.7; }

.account-promo { padding-top: 50px; }
.account-promo-card { min-height: 310px; display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 40px; padding: 48px; border-radius: 34px; }
.account-promo-card img { border-radius: 32px; opacity: .8; transition: transform 240ms var(--ease-out), opacity 180ms ease; }
.account-promo-card h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 54px); }
.account-promo-card p { max-width: 620px; color: var(--muted); line-height: 1.7; }
.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-list { display: grid; gap: 12px; }
.faq details { border-radius: 18px; overflow: hidden; }
.faq summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; cursor: pointer; list-style: none; font-weight: 700; transition: transform 140ms var(--ease-out), color 160ms ease; }
.faq summary::-webkit-details-marker { display: none; }.faq summary i { color: var(--chrome); font-size: 22px; font-style: normal; transition: transform 180ms var(--ease-out); }.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { padding: 0 24px 24px; margin: 0; color: var(--muted); line-height: 1.7; }
.faq details[open] p { animation: faq-reveal 220ms var(--ease-out) both; }
.faq summary:active { transform: scale(.99); }
@keyframes faq-reveal { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: translateY(0); } }

.site-footer { width: min(calc(100% - 40px), var(--max)); min-height: 120px; margin: 0 auto; display: flex; align-items: center; gap: 26px; border-top: 1px solid var(--line); color: var(--dim); font-size: 11px; }
.site-footer p { flex: 1; margin: 0; }

.account-view { min-height: 100vh; }
.account-topbar { width: min(calc(100% - 40px), var(--max)); height: 76px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.text-button { padding: 8px; border: 0; color: var(--muted); background: none; cursor: pointer; font: inherit; font-size: 12px; }.text-button.danger { color: #c1c6ca; }
.dashboard-shell { width: min(calc(100% - 40px), 1120px); margin: 0 auto; padding: 70px 0 110px; }
.dashboard-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.dashboard-heading h1 { margin: 0; font-size: clamp(38px, 6vw, 66px); }.dashboard-heading h1 em { color: var(--chrome); }
.status-pill { padding: 9px 13px; border: 1px solid var(--line-chrome); border-radius: 999px; color: var(--chrome); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.dashboard-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 16px; }
.balance-card, .subscription-summary { min-height: 320px; padding: 32px; border-radius: var(--radius); }
.balance-card { display: flex; flex-direction: column; }.balance-card > span, .subscription-summary span, .dashboard-section-title span { color: var(--muted); font-size: 12px; }.balance-card strong { margin-top: 26px; font-size: 62px; letter-spacing: -.06em; }.balance-card small { flex: 1; color: var(--chrome); }.balance-card .button { width: 100%; }
.subscription-summary { display: flex; flex-direction: column; }.subscription-summary > div strong { display: block; margin-top: 8px; font-size: 26px; }.subscription-summary dl { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 34px 0; }.subscription-summary dt { color: var(--dim); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }.subscription-summary dd { margin: 8px 0 0; font-size: 13px; }
.dashboard-section { padding-top: 70px; }.dashboard-section-title { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }.dashboard-section-title h2 { margin: 7px 0 0; font-size: 32px; }
.subscription-list { display: grid; gap: 10px; }.subscription-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 24px; padding: 22px 24px; border-radius: 18px; }.subscription-item strong { display: block; }.subscription-item small { color: var(--muted); }.subscription-item span { color: var(--muted); font-size: 12px; }.subscription-item .button { min-height: 38px; }
.dashboard-plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }.dashboard-plan { min-height: 180px; padding: 22px; display: flex; flex-direction: column; border-radius: 18px; }.dashboard-plan h3 { margin: 12px 0 6px; }.dashboard-plan p { flex: 1; color: var(--muted); font-size: 12px; }.dashboard-plan b { color: var(--chrome); }
.account-view.account-preparing .dashboard-shell { opacity: 0; }
.account-view.account-entering .dashboard-heading { animation: account-rise 280ms var(--ease-out) both; }
.account-view.account-entering .dashboard-grid { animation: account-rise 280ms var(--ease-out) 55ms both; }
.account-view.account-entering .dashboard-section:nth-of-type(1) { animation: account-rise 280ms var(--ease-out) 110ms both; }
.account-view.account-entering .dashboard-section:nth-of-type(2) { animation: account-rise 280ms var(--ease-out) 165ms both; }
.item-enter { animation: item-enter 260ms var(--ease-out) both; }
@keyframes account-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes item-enter { from { opacity: 0; transform: translateY(9px) scale(.99); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal { width: 100%; max-width: none; height: 100%; max-height: none; padding: 20px; border: 0; opacity: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(14px); transition: opacity 160ms ease; }
.modal::backdrop { background: rgba(0,0,0,.62); }
.modal[open] { display: grid; place-items: center; }
.modal.is-visible { opacity: 1; }
.modal-card { position: relative; width: min(100%, 560px); max-height: calc(100svh - 40px); overflow: auto; padding: clamp(26px, 5vw, 42px); border-radius: 28px; opacity: 0; transform: translateY(16px) scale(.97); transition: transform 240ms var(--ease-out), opacity 180ms ease; }
.modal.is-visible .modal-card { opacity: 1; transform: translateY(0) scale(1); }
.modal-card h2 { margin-bottom: 14px; font-size: 38px; }.modal-card > p:not(.eyebrow):not(.form-error) { color: var(--muted); line-height: 1.6; }
.modal-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: rgba(255,255,255,.04); cursor: pointer; font-size: 22px; }
label { display: grid; gap: 8px; margin: 20px 0; color: #c8c8c8; font-size: 12px; font-weight: 700; }
input, select { width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; outline: none; color: var(--text); background: rgba(0,0,0,.44); transition: border-color 160ms ease, box-shadow 160ms ease; }
input:focus, select:focus { border-color: var(--line-chrome); box-shadow: 0 0 0 4px rgba(210,218,224,.08); }
label small, .privacy-note { color: var(--dim); font-weight: 400; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.form-error { min-height: 18px; margin: 10px 0; color: var(--alert); font-size: 12px; }
.order-summary { margin: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.order-summary div { min-height: 45px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }.order-summary b { color: var(--text); }.order-summary .order-total { min-height: 62px; font-size: 15px; }.order-total b { color: var(--chrome); font-size: 22px; }
.invoice-ready { text-align: center; }.success-mark { width: 62px; height: 62px; margin: 0 auto 24px; display: grid; place-items: center; border: 1px solid var(--line-chrome); border-radius: 50%; color: var(--chrome); font-size: 28px; }.invoice-ready .text-button { margin-top: 18px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 100; max-width: min(90vw, 480px); padding: 14px 18px; opacity: 0; transform: translate3d(-50%, 12px, 0) scale(.97); border: 1px solid var(--line); border-radius: 14px; background: rgba(20,20,20,.95); box-shadow: 0 20px 60px rgba(0,0,0,.5); font-size: 13px; transition: transform 220ms var(--ease-out), opacity 180ms ease; }
.toast.is-visible { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }.hero { grid-template-columns: 1fr 1fr; gap: 20px; }.hero-visual { min-height: 620px; }.carbon-emblem { right: -210px; }.trust-strip { grid-template-columns: repeat(2, 1fr); }.trust-strip div:nth-child(2) { border-right: 0; }.pricing-grid { grid-template-columns: repeat(2, 1fr); }.price-card.featured { transform: none; }.dashboard-plans { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .site-header { width: 100%; height: 68px; padding: 0 14px; }.brand { font-size: 11px; letter-spacing: .16em; }.header-account { min-height: 38px; padding: 0 14px; }.section { width: min(calc(100% - 28px), var(--max)); padding: 82px 0; }.hero { min-height: auto; grid-template-columns: 1fr; padding-top: 52px; }.hero-copy { z-index: 2; }.hero-visual { min-height: 600px; margin-top: -30px; }.phone-main { width: min(68vw, 310px); }.carbon-emblem { width: 320px; right: -80px; }.signal-card { left: 0; bottom: 10%; min-width: 210px; }.platform-line { flex-wrap: wrap; }.trust-strip { width: min(calc(100% - 28px), var(--max)); grid-template-columns: 1fr 1fr; }.trust-strip div { padding: 13px 10px; gap: 9px; }.trust-strip strong { font-size: 15px; }.trust-strip span { font-size: 9px; }.product-stage { min-height: auto; grid-template-columns: 1fr; padding: 28px 22px; }.phones-pair { height: 510px; }.phones-pair .phone { width: 230px; }.phone-secondary { transform: translate(-88%, -45%) rotate(-8deg); }.phone-front { transform: translate(-21%, -54%) rotate(4deg); }.feature-grid { grid-template-columns: 1fr; }.feature-wide { grid-column: auto; grid-template-columns: 1fr; }.feature-card { min-height: 320px; padding: 26px; }.route-visual { order: -1; min-height: 180px; }.support-bubble { justify-self: stretch; }.pricing-grid { grid-template-columns: 1fr; }.price-card { min-height: 340px; }.account-promo-card { grid-template-columns: 1fr; padding: 30px; }.account-promo-card img { width: 120px; }.faq { grid-template-columns: 1fr; gap: 10px; }.site-footer { width: min(calc(100% - 28px), var(--max)); flex-wrap: wrap; padding: 32px 0; }.site-footer p { flex-basis: 100%; order: 3; }.account-topbar, .dashboard-shell { width: min(calc(100% - 28px), var(--max)); }.account-topbar .brand { display: none; }.dashboard-shell { padding-top: 50px; }.dashboard-heading { align-items: start; flex-direction: column; }.dashboard-grid { grid-template-columns: 1fr; }.subscription-summary dl { grid-template-columns: 1fr 1fr; }.dashboard-section-title { align-items: start; flex-direction: column; }.subscription-item { grid-template-columns: 1fr auto; }.subscription-item > span { grid-column: 1 / -1; }.dashboard-plans { grid-template-columns: 1fr 1fr; }.form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 430px) { h1 { font-size: 45px; }.hero-lead { font-size: 15px; }.hero-actions .button { width: 100%; }.hero-visual { min-height: 530px; }.phone-main { width: 250px; }.carbon-emblem { width: 260px; }.signal-card { bottom: 5%; }.phones-pair { height: 430px; }.phones-pair .phone { width: 195px; }.dashboard-plans { grid-template-columns: 1fr; }.subscription-item { grid-template-columns: 1fr; }.subscription-summary dl { grid-template-columns: 1fr; }.modal { padding: 8px; }.modal-card { max-height: calc(100svh - 16px); border-radius: 22px; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; }
  .motion-ready .motion-reveal, .motion-ready .motion-reveal.motion-scale, .motion-ready .motion-reveal.is-visible { opacity: 1; transform: none; transition: opacity 160ms ease; }
  .motion-ready .product-stage .phone { transition: opacity 160ms ease; }
  .motion-ready .product-stage:not(.is-visible) .phone-secondary { opacity: .68; transform: translate(-85%, -45%) rotate(-8deg); }
  .motion-ready .product-stage:not(.is-visible) .phone-front { opacity: 1; transform: translate(-20%, -54%) rotate(4deg); }
  .modal { transition: opacity 120ms ease; }
  .modal-card { transform: none; transition: opacity 120ms ease; }
  .toast { transform: translateX(-50%); transition: opacity 120ms ease; }
  .toast.is-visible { transform: translateX(-50%); }
  .button:hover:not(:active), .button:active, .brand:hover img, .feature-card.motion-settled:hover, .feature-card:hover .feature-icon, .account-promo-card:hover > img, .faq summary:active { transform: none; }
  .button::after, .feature-card::after { display: none; }
}
@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .motion-ready .product-stage:not(.is-visible) .phone-secondary { transform: translate(-88%, -45%) rotate(-8deg); }
  .motion-ready .product-stage:not(.is-visible) .phone-front { transform: translate(-21%, -54%) rotate(4deg); }
}
