:root {
  color-scheme: dark;
  --void: #07090d;
  --void-soft: #0b0e14;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.1);
  --line-bright: rgba(255, 255, 255, 0.18);
  --text: #f7f8fb;
  --muted: #9a9fa9;
  --muted-soft: #696f7b;
  --orange: #ff9635;
  --yellow: #ffd064;
  --blue: #8cafff;
  --green: #6fe09b;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--void);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.page-glow { position: fixed; z-index: -2; pointer-events: none; border-radius: 999px; filter: blur(10px); }
.page-glow-top { width: 55rem; height: 34rem; top: -24rem; left: 30%; background: rgba(255, 137, 45, 0.16); }
.page-glow-side { width: 36rem; height: 36rem; right: -30rem; top: 45rem; background: rgba(90, 120, 255, 0.09); }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.site-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; font-size: 0.78rem; font-weight: 750; letter-spacing: 0.16em; }
.brand-mark { position: relative; width: 28px; height: 28px; display: inline-grid; place-items: center; border: 1px solid rgba(255, 161, 69, 0.5); border-radius: 50%; transform: rotate(-18deg); }
.brand-mark::before { content: ""; position: absolute; width: 34px; height: 8px; border: 1.5px solid var(--orange); border-width: 1.5px 0; border-radius: 50%; }
.brand-mark span { width: 11px; height: 11px; border-radius: 50%; background: #020204; box-shadow: 0 0 12px rgba(255, 150, 53, 0.68); }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.86rem; transition: color 160ms ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 9px 15px; border: 1px solid var(--line-bright); border-radius: 999px; color: var(--text); text-decoration: none; font-size: 0.78rem; font-weight: 650; background: rgba(255,255,255,.04); }

.hero { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr); align-items: center; gap: 6vw; padding-top: 76px; padding-bottom: 90px; }
.hero-copy { position: relative; z-index: 4; max-width: 680px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--orange); font: 650 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; box-shadow: 0 0 8px currentColor; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3.5rem, 7.2vw, 6.8rem); line-height: 0.94; letter-spacing: -0.067em; font-weight: 750; }
.hero h1 em { color: var(--orange); font-style: normal; text-shadow: 0 0 45px rgba(255, 150, 53, 0.18); }
.hero-lede { max-width: 590px; margin: 30px 0 0; color: #b0b4bd; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }
.app-store-cta { display: inline-flex; min-width: 192px; align-items: center; justify-content: center; gap: 12px; padding: 11px 18px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: white; text-decoration: none; background: #020204; box-shadow: 0 15px 40px rgba(0,0,0,.28); transition: transform 180ms ease, border-color 180ms ease; }
.app-store-cta:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.42); }
.app-store-cta small, .app-store-cta strong { display: block; line-height: 1.06; }
.app-store-cta small { font-size: 0.64rem; letter-spacing: 0.01em; }
.app-store-cta strong { margin-top: 2px; font-size: 1.25rem; font-weight: 570; }
.apple-symbol { position: relative; width: 25px; height: 29px; display: grid; place-items: center; color: white; font-size: 2.1rem; line-height: 1; overflow: hidden; border-radius: 50% 50% 48% 48%; transform: scaleX(.84); }
.apple-symbol::after { content: ""; position: absolute; width: 8px; height: 5px; top: 0; right: 2px; background: white; border-radius: 9px 1px; transform: rotate(-35deg); }
.text-cta { color: #c3c6cc; text-decoration: none; font-size: 0.93rem; font-weight: 600; }
.text-cta span { display: inline-block; margin-left: 7px; color: var(--orange); transition: transform 160ms ease; }
.text-cta:hover span { transform: translateY(3px); }
.availability { display: flex; align-items: center; margin-top: 24px; color: var(--muted-soft); font-size: 0.76rem; }
.availability > span { margin-right: 8px; color: var(--orange); font-size: 0.55rem; }

.hero-product { position: relative; min-height: 650px; display: grid; place-items: center; isolation: isolate; }
.hero-product::before { content: ""; position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(255,147,52,.16), rgba(255,147,52,.035) 42%, transparent 70%); filter: blur(3px); }
.orbit { position: absolute; z-index: -1; width: 560px; height: 290px; border: 1px solid rgba(255, 151, 53, 0.12); border-radius: 50%; transform: rotate(-12deg); }
.orbit-two { width: 440px; height: 560px; border-color: rgba(140,175,255,.08); transform: rotate(33deg); }
.signal-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 150px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(18, 20, 27, 0.8); box-shadow: 0 16px 40px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.signal-chip-left { left: -25px; top: 190px; }
.signal-chip-right { right: -26px; bottom: 146px; }
.signal-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--orange); background: rgba(255,150,53,.1); }
.signal-chip small, .signal-chip strong { display: block; line-height: 1.3; }
.signal-chip small { color: var(--muted-soft); font-size: 0.6rem; }
.signal-chip strong { color: #e9ebee; font-size: 0.78rem; font-weight: 650; }

.iphone { position: relative; z-index: 2; width: 326px; filter: drop-shadow(0 42px 80px rgba(0,0,0,.6)); transform: rotate(1.5deg); }
.iphone-frame { position: relative; padding: 8px; border-radius: 52px; background: linear-gradient(135deg, #9da0a6 0%, #34363b 15%, #090a0d 42%, #777a81 75%, #191a1e 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), inset 0 0 0 3px #050506; }
.iphone-frame::before, .iphone-frame::after { content: ""; position: absolute; left: -3px; width: 3px; border-radius: 2px 0 0 2px; background: #3c3e42; }
.iphone-frame::before { height: 56px; top: 115px; }
.iphone-frame::after { height: 78px; top: 181px; }
.iphone-screen { position: relative; height: 650px; overflow: hidden; border-radius: 45px; background: #000; border: 1px solid #1d1e22; }
.dynamic-island { position: absolute; z-index: 4; width: 90px; height: 25px; left: 50%; top: 10px; transform: translateX(-50%); border-radius: 999px; background: #020203; box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); }
.phone-status { height: 45px; display: flex; align-items: center; justify-content: space-between; padding: 4px 23px 0; color: rgba(255,255,255,.86); font-size: 0.61rem; font-weight: 700; }
.phone-content { padding: 2px 15px 74px; }
.app-hero { text-align: center; }
.app-hero p { margin: 5px 0 0; color: #888b92; font: 600 0.45rem/1.4 ui-monospace, monospace; letter-spacing: .25em; }
.app-hero h2 { margin: 5px 0 0; font-size: 1.05rem; line-height: 1.2; letter-spacing: -.025em; }
.app-hero > span { color: #767980; font-size: .55rem; }
.mini-black-hole { position: relative; width: 72px; height: 45px; margin: 4px auto 0; display: grid; place-items: center; transform: rotate(-8deg); }
.mini-black-hole::before { content: ""; position: absolute; width: 64px; height: 17px; border: 3px solid var(--orange); border-left-color: rgba(255,208,100,.9); border-right-color: rgba(255,150,53,.3); border-radius: 50%; filter: drop-shadow(0 0 8px rgba(255,150,53,.62)); }
.mini-black-hole::after { content: ""; position: absolute; width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 42% 44%, #050505 0 45%, rgba(255,153,53,.23) 52%, transparent 68%); }
.mini-black-hole span { position: relative; z-index: 2; width: 30px; height: 30px; border-radius: 50%; background: #000; box-shadow: 0 0 10px rgba(255,150,53,.28); }
.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.phone-stats > div { min-width: 0; padding: 12px 10px; text-align: left; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.045); }
.phone-stats small, .phone-stats strong, .phone-stats span { display: block; }
.phone-stats small { color: #777a81; font: 600 .43rem/1.2 ui-monospace, monospace; letter-spacing: .12em; }
.phone-stats strong { margin-top: 5px; color: white; font-size: 1.03rem; line-height: 1.2; letter-spacing: -.03em; }
.phone-stats span { margin-top: 2px; color: #686b72; font-size: .48rem; }
.renewal-card { margin-top: 11px; padding: 11px; text-align: left; border: 1px solid rgba(255,153,53,.16); border-radius: 13px; background: rgba(255,150,53,.055); }
.renewal-title { display: flex; justify-content: space-between; align-items: center; color: var(--orange); font: 650 .45rem/1.2 ui-monospace, monospace; letter-spacing: .11em; }
.renewal-title b { width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; color: #111; background: var(--orange); font-size: .45rem; }
.service-row { display: flex; align-items: center; gap: 9px; margin-top: 10px; }
.letter-avatar { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; font-size: .7rem; font-weight: 750; }
.letter-avatar.orange { color: #fff1e7; background: linear-gradient(145deg, #e7492f, #ff8b2d); }
.service-copy { min-width: 0; flex: 1; }
.service-copy strong, .service-copy span, .service-price strong, .service-price span { display: block; line-height: 1.25; }
.service-copy strong, .service-price strong { font-size: .61rem; }
.service-copy span, .service-price span { margin-top: 2px; color: #70737a; font-size: .48rem; }
.service-price { text-align: right; }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 9px; }
.quick-actions > div { padding: 11px 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; background: rgba(255,255,255,.035); }
.quick-actions span, .quick-actions strong, .quick-actions small { display: block; }
.quick-actions span { color: var(--orange); font-size: .9rem; }
.quick-actions strong { margin-top: 5px; font-size: .56rem; }
.quick-actions small { color: #666970; font-size: .45rem; }
.phone-tabs { position: absolute; left: 0; right: 0; bottom: 18px; height: 54px; display: grid; grid-template-columns: repeat(5, 1fr); padding: 7px 12px 2px; border-top: 1px solid rgba(255,255,255,.06); background: rgba(7,8,10,.93); backdrop-filter: blur(14px); }
.phone-tabs > span { display: flex; flex-direction: column; align-items: center; color: #73767c; font-size: .68rem; line-height: 1; }
.phone-tabs > span.active { color: var(--orange); }
.phone-tabs small { margin-top: 5px; font-size: .37rem; }
.home-indicator { position: absolute; bottom: 6px; left: 50%; width: 94px; height: 3px; transform: translateX(-50%); border-radius: 5px; background: rgba(255,255,255,.7); }

.trust-strip { border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.015); }
.trust-grid { min-height: 94px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { display: flex; align-items: center; gap: 12px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.07); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border: 0; }
.trust-grid span { color: var(--orange); font: 600 .55rem/1 ui-monospace, monospace; }
.trust-grid strong { color: #b8bbc2; font-size: .76rem; font-weight: 520; }

.section { padding-top: 150px; padding-bottom: 40px; }
.section-heading { max-width: 690px; margin-bottom: 56px; }
.section-heading h2, .download-inner h2 { margin: 0; font-size: clamp(2.65rem, 5.2vw, 5.15rem); line-height: 1.02; letter-spacing: -.058em; }
.section-heading > p:last-child { max-width: 590px; margin: 24px 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.section-heading.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.compact { margin-bottom: 34px; }
.section-heading.compact h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }

.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.feature-card { position: relative; min-height: 510px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.feature-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 35%); }
.feature-card-wide { grid-column: 1 / -1; min-height: 480px; }
.feature-copy { position: relative; z-index: 3; max-width: 470px; }
.feature-number { display: inline-block; margin-bottom: 18px; color: var(--orange); font: 600 .6rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.feature-copy h3 { margin: 0; font-size: clamp(1.65rem, 2.8vw, 2.5rem); line-height: 1.09; letter-spacing: -.04em; }
.feature-copy p { margin: 17px 0 0; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.feature-copy a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #dddfe4; font-size: .85rem; font-weight: 650; text-decoration: none; }
.feature-copy a span { color: var(--orange); }
.renewal-radar { display: flex; align-items: center; min-height: 500px; padding-right: 54%; }
.renewal-radar::before { content: ""; position: absolute; width: 620px; height: 620px; right: -95px; top: 50%; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,151,53,.095), transparent 65%); }
.radar-visual { position: absolute; right: 7%; top: 50%; width: 410px; height: 410px; transform: translateY(-50%); }
.radar-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.085); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-a { width: 120px; height: 120px; border-color: rgba(255,150,53,.22); }
.ring-b { width: 245px; height: 245px; }
.ring-c { width: 390px; height: 390px; }
.radar-ring::after { content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.ring-a::after { left: 5px; top: 49px; }
.ring-b::after { right: 25px; bottom: 52px; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.ring-c::after { left: 79px; top: 28px; }
.radar-core { position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%); border-radius: 50%; background: #010101; box-shadow: 0 0 0 8px rgba(255,150,53,.08), 0 0 35px rgba(255,150,53,.3); }
.radar-item { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 9px 12px 9px 9px; border: 1px solid var(--line); border-radius: 13px; background: rgba(12,14,19,.88); box-shadow: 0 15px 30px rgba(0,0,0,.3); }
.radar-item b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: white; background: linear-gradient(145deg, #f14b37, #ff922f); font-size: .72rem; }
.radar-item span, .radar-item small { display: block; line-height: 1.25; }
.radar-item span { font-size: .7rem; font-weight: 620; }
.radar-item small { margin-top: 2px; color: var(--muted-soft); font-size: .55rem; font-weight: 500; }
.item-a { left: 7px; top: 83px; }
.item-b { right: 2px; top: 157px; }
.item-b b { background: linear-gradient(145deg, #459bea, #68baf4); }
.item-c { left: 43px; bottom: 48px; }
.item-c b { background: linear-gradient(145deg, #29b862, #6dde87); }
.spend-card { background: radial-gradient(circle at 50% 100%, rgba(95,125,255,.1), transparent 55%), linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); }
.spend-visual { position: absolute; left: 34px; right: 34px; bottom: 29px; padding: 20px 20px 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 19px; background: rgba(4,5,8,.52); }
.spend-total small, .spend-total strong, .spend-total span { display: block; }
.spend-total small { color: var(--muted-soft); font: 600 .53rem/1 ui-monospace, monospace; letter-spacing: .12em; }
.spend-total strong { margin-top: 6px; font-size: 2rem; line-height: 1.1; letter-spacing: -.04em; }
.spend-total span { margin-top: 4px; color: var(--muted-soft); font-size: .62rem; }
.spend-total i { color: var(--green); font-style: normal; }
.bar-chart { height: 94px; display: flex; align-items: flex-end; gap: 9px; margin-top: 17px; border-bottom: 1px solid rgba(255,255,255,.1); }
.bar-chart i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: rgba(140,175,255,.22); }
.bar-chart i.hot { background: linear-gradient(to top, rgba(255,150,53,.3), var(--orange)); box-shadow: 0 0 20px rgba(255,150,53,.15); }
.reminder-card { background: radial-gradient(circle at 75% 95%, rgba(255,150,53,.11), transparent 50%), linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025)); }
.notification-preview { position: absolute; left: 34px; right: 34px; bottom: 50px; padding: 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: linear-gradient(145deg, rgba(54,56,62,.88), rgba(33,35,40,.82)); box-shadow: 0 24px 50px rgba(0,0,0,.3); backdrop-filter: blur(20px); transform: rotate(-1deg); }
.notification-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.notification-logo { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: #111; background: linear-gradient(145deg, var(--yellow), var(--orange)); font-size: .58rem; font-weight: 800; }
.notification-top small { color: rgba(255,255,255,.56); font-size: .54rem; }
.notification-preview > strong, .notification-preview > span { display: block; }
.notification-preview > strong { font-size: .85rem; }
.notification-preview > span { margin-top: 2px; color: rgba(255,255,255,.6); font-size: .72rem; }
.private-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 7%; }
.private-card .feature-copy { grid-column: 2; }
.privacy-visual { position: relative; min-height: 380px; display: grid; place-items: center; }
.shield { position: relative; z-index: 3; width: 104px; height: 118px; display: grid; place-items: center; border: 1px solid rgba(255,151,53,.46); border-radius: 50px 50px 58px 58px; background: radial-gradient(circle at 50% 30%, rgba(255,150,53,.15), rgba(255,150,53,.025)); clip-path: polygon(50% 0, 94% 17%, 88% 73%, 50% 100%, 12% 73%, 6% 17%); box-shadow: 0 0 60px rgba(255,150,53,.12); }
.shield span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: #12100b; background: var(--orange); font-weight: 850; }
.privacy-orbit { position: absolute; width: 320px; height: 150px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: rotate(18deg); }
.privacy-orbit-b { transform: rotate(-35deg); border-color: rgba(140,175,255,.12); }
.privacy-node { position: absolute; z-index: 3; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: #11141a; font: 600 .48rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.node-local { left: 7%; top: 28%; }
.node-cloud { right: 1%; bottom: 23%; }

.how-section { margin-top: 120px; padding: 140px 0 150px; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); background: radial-gradient(circle at 50% 0, rgba(255,150,53,.07), transparent 35%), rgba(255,255,255,.012); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border-top: 1px solid var(--line); }
.steps-grid article { position: relative; min-height: 330px; padding: 34px 34px 25px; border-right: 1px solid var(--line); }
.steps-grid article:last-child { border-right: 0; }
.step-number { color: var(--muted-soft); font: 600 .58rem/1 ui-monospace, monospace; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 70px 0 25px; border: 1px solid rgba(255,150,53,.25); border-radius: 17px; color: var(--orange); background: rgba(255,150,53,.06); font-size: 1.25rem; box-shadow: 0 0 30px rgba(255,150,53,.055); }
.steps-grid h3 { margin: 0; font-size: 1.22rem; letter-spacing: -.025em; }
.steps-grid p { margin: 12px 0 0; color: var(--muted); font-size: .87rem; line-height: 1.65; }

.pricing-section { display: grid; grid-template-columns: .83fr 1.17fr; align-items: start; gap: 7%; padding-bottom: 120px; }
.pricing-section .section-heading { position: sticky; top: 120px; }
.pricing-grid { display: grid; gap: 16px; }
.price-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.price-card-pro { overflow: hidden; border-color: rgba(255,150,53,.33); background: radial-gradient(circle at 100% 0, rgba(255,150,53,.12), transparent 42%), rgba(255,255,255,.04); }
.popular-label { position: absolute; top: 20px; right: -37px; width: 150px; padding: 5px 0; color: #111; background: var(--orange); font: 750 .5rem/1 ui-monospace, monospace; letter-spacing: .08em; text-align: center; transform: rotate(38deg); }
.price-top > span, .price-top > strong, .price-top > small { display: block; }
.price-top > span { color: var(--orange); font: 650 .58rem/1 ui-monospace, monospace; letter-spacing: .13em; }
.price-top > strong { margin-top: 17px; font-size: 3.2rem; line-height: 1; letter-spacing: -.055em; }
.price-top > strong small { font-size: 1rem; letter-spacing: -.01em; color: var(--muted); }
.price-top > small { margin-top: 8px; color: var(--muted-soft); font-size: .72rem; }
.price-card ul { display: grid; gap: 13px; margin: 30px 0; padding: 26px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; gap: 11px; color: #b9bdc4; font-size: .83rem; }
.price-card li span { color: var(--orange); font-weight: 750; }
.price-card > a { display: block; padding: 12px 18px; border: 1px solid var(--line-bright); border-radius: 12px; color: white; background: rgba(255,255,255,.04); font-size: .8rem; font-weight: 650; text-align: center; text-decoration: none; }
.price-card-pro > a { color: #17120c; border-color: var(--orange); background: var(--orange); }
.price-card > p { margin: 12px 0 0; color: var(--muted-soft); font-size: .64rem; text-align: center; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8%; padding-bottom: 150px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 2px; color: #dcdee2; cursor: pointer; font-size: .95rem; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 0 26px; padding-right: 45px; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.download-section { position: relative; overflow: hidden; padding: 155px 0; border-top: 1px solid rgba(255,255,255,.06); background: radial-gradient(circle at 50% 60%, rgba(255,150,53,.13), transparent 35%), #050608; }
.download-orbit { position: absolute; left: 50%; bottom: -535px; width: 1120px; height: 800px; transform: translateX(-50%); border: 1px solid rgba(255,150,53,.12); border-radius: 50%; box-shadow: 0 -70px 150px rgba(255,150,53,.035); }
.download-inner { position: relative; z-index: 2; max-width: 780px; text-align: center; }
.download-mark { margin-bottom: 22px; }
.mini-black-hole.large { width: 115px; height: 70px; }
.mini-black-hole.large::before { width: 105px; height: 27px; border-width: 4px; }
.mini-black-hole.large::after { width: 71px; height: 71px; }
.mini-black-hole.large span { width: 46px; height: 46px; }
.download-inner .eyebrow { justify-content: center; }
.download-inner > p:not(.eyebrow) { max-width: 610px; margin: 25px auto 0; color: var(--muted); }
.download-inner .app-store-cta { margin-top: 32px; }
.app-store-disabled { cursor: default; }
.app-store-disabled:hover { transform: none; }
.download-note { display: block; margin-top: 17px; color: var(--muted-soft); font-size: .66rem; }

.site-footer { border-top: 1px solid rgba(255,255,255,.07); background: #050608; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 70px 0 62px; }
.footer-main > div:first-child p { margin: 15px 0 0; color: var(--muted-soft); font-size: .78rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links > div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 7px; color: #d8dade; font-size: .72rem; }
.footer-links a { color: var(--muted-soft); text-decoration: none; font-size: .76rem; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.06); color: #5f646d; font-size: .67rem; }

/* Legal and support pages */
.legal-page { background: radial-gradient(circle at 50% -20%, rgba(255,150,53,.09), transparent 42%), var(--void); }
.legal-shell { width: min(780px, calc(100% - 48px)); margin: 0 auto; padding: 92px 0 130px; }
.legal-shell .eyebrow { margin-bottom: 18px; }
.legal-shell h1 { margin: 0; font-size: clamp(3rem, 7vw, 5rem); line-height: 1; letter-spacing: -.055em; }
.legal-shell .updated { margin: 16px 0 45px; color: var(--muted-soft); font-size: .78rem; }
.legal-shell h2 { margin: 47px 0 12px; color: #eceef1; font-size: 1.18rem; letter-spacing: -.02em; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-shell p { margin: 0 0 18px; }
.legal-shell a { color: var(--orange); text-underline-offset: 3px; }
.legal-card { padding: 24px; margin: 30px 0; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.legal-card strong { display: block; margin-bottom: 7px; color: var(--text); }
.legal-card p { margin: 0; }
.legal-page .footer-main { padding-top: 50px; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 5px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 400px; gap: 10px; }
  .signal-chip-left { left: -8px; }
  .signal-chip-right { right: -5px; }
  .renewal-radar { padding-right: 49%; }
  .radar-visual { right: 1%; transform: translateY(-50%) scale(.88); }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 680px); }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 74px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero .eyebrow, .hero-actions, .availability { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-product { min-height: 660px; }
  .signal-chip-left { left: 4%; }
  .signal-chip-right { right: 4%; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 10px 0; }
  .trust-grid > div { min-height: 65px; padding: 0 18px; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.07); }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-wide { grid-column: auto; }
  .renewal-radar { min-height: 690px; align-items: flex-start; padding-right: 34px; }
  .radar-visual { right: 50%; top: auto; bottom: 10px; transform: translateX(50%) scale(.9); }
  .private-card { grid-template-columns: 1fr; }
  .private-card .feature-copy { grid-column: auto; }
  .privacy-visual { order: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; padding: 32px 10px 36px; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid article:last-child { border-bottom: 0; }
  .step-icon { margin: 35px 0 22px; }
  .pricing-section, .faq-section { grid-template-columns: 1fr; gap: 20px; }
  .pricing-section .section-heading { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .site-nav { min-height: 68px; }
  .nav-cta { padding: 8px 12px; font-size: .69rem; }
  .brand { font-size: .68rem; letter-spacing: .12em; }
  .brand-mark { width: 25px; height: 25px; }
  .brand-mark::before { width: 30px; }
  .hero { min-height: auto; padding-top: 56px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .hero-lede { font-size: .98rem; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-product { min-height: 595px; margin-top: 20px; }
  .iphone { width: 286px; }
  .iphone-screen { height: 570px; }
  .phone-content { padding-inline: 13px; }
  .signal-chip { display: none; }
  .orbit { transform: rotate(-12deg) scale(.72); }
  .orbit-two { transform: rotate(33deg) scale(.72); }
  .trust-grid { grid-template-columns: 1fr; padding: 0; }
  .trust-grid > div, .trust-grid > div:first-child { min-height: 57px; padding: 0 4px; border: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding-top: 105px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .download-inner h2 { font-size: 2.75rem; }
  .feature-card { min-height: 500px; padding: 25px; border-radius: 23px; }
  .renewal-radar { min-height: 650px; padding-right: 25px; }
  .radar-visual { transform: translateX(50%) scale(.72); }
  .spend-visual, .notification-preview { left: 24px; right: 24px; }
  .privacy-visual { min-height: 335px; transform: scale(.87); }
  .how-section { margin-top: 85px; padding: 105px 0; }
  .price-card { padding: 27px; }
  .faq-section { padding-bottom: 105px; }
  .download-section { padding: 115px 0; }
  .footer-links { gap: 22px; }
  .footer-main { padding-top: 55px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .legal-shell { width: calc(100% - 32px); padding: 65px 0 95px; }
}

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