@font-face { font-family: 'Poppins'; src: url('./assets/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('./assets/Poppins-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('./assets/Poppins-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('./assets/Poppins-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }

:root {
  --paper: #f7f3eb;
  --paper-light: #fdfbf7;
  --ink: #152831;
  --ink-soft: #56656b;
  --red: #f0473e;
  --red-dark: #d9352e;
  --red-soft: #ffd9d1;
  --blue: #162f3b;
  --mint: #b9ddd1;
  --line: rgba(21, 40, 49, 0.14);
  --white: #fffefb;
  --radius: 28px;
  --shadow: 0 26px 70px rgba(25, 46, 55, 0.14);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-150%); padding: 10px 16px; border-radius: 8px; background: var(--ink); color: white; }
.skip-link:focus { transform: translateY(0); }
.section-pad { padding-inline: max(24px, calc((100vw - 1180px) / 2)); }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 84px; padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent; transition: .3s ease;
}
.site-header.scrolled { height: 70px; border-color: var(--line); background: rgba(247, 243, 235, .88); backdrop-filter: blur(18px); }
.logo { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: .1em; }
.logo-mark { position: relative; display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--red); }
.logo-mark::before, .logo-mark::after, .logo-mark span::before, .logo-mark span::after { content: ''; position: absolute; width: 5px; height: 11px; border-radius: 4px; background: var(--paper); }
.logo-mark::before { transform: translateY(-7px); }.logo-mark::after { transform: translateY(7px); }.logo-mark span::before { transform: translateX(-7px) rotate(90deg); }.logo-mark span::after { transform: translateX(7px) rotate(90deg); }
.desktop-nav { display: flex; gap: 34px; font-size: 14px; font-weight: 600; }
.desktop-nav a, .text-link { position: relative; }
.desktop-nav a::after, .text-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--red); transition: right .25s; }
.desktop-nav a:hover::after, .text-link:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 52px; padding: 0 27px; border: 1px solid var(--red); border-radius: 999px; background: var(--red); color: white; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 13px 30px rgba(240, 71, 62, .22); }
.button-small { min-height: 42px; padding: 0 22px; }
.button-large { min-height: 58px; padding: 0 31px; }
.menu-button, .mobile-nav { display: none; }

.hero { min-height: 850px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; padding-top: 120px; padding-bottom: 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(240, 71, 62, .14); animation: pulse-dot 2s infinite; }
.hero h1, h2 { font-family: 'Manrope', sans-serif; letter-spacing: -.055em; }
.hero h1 { margin: 27px 0 25px; font-size: clamp(58px, 6.3vw, 94px); line-height: .98; font-weight: 700; }
em { color: var(--red); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 610px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 29px; margin-top: 37px; }
.play-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.play-icon { display: grid; place-items: center; width: 42px; height: 42px; padding-left: 2px; border: 1px solid var(--line); border-radius: 50%; color: var(--red); font-size: 11px; transition: .2s; }
.play-link:hover .play-icon { background: var(--ink); color: white; transform: scale(1.05); }
.trust-row { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 38px; color: var(--ink-soft); font-size: 12px; }
.trust-row i, .included i { display: inline-grid; place-items: center; width: 17px; height: 17px; margin-right: 5px; border-radius: 50%; background: var(--mint); color: var(--ink); font-style: normal; font-size: 10px; }
.trust-row .trial-highlight { color: var(--red-dark); font-weight: 700; }
.trust-row .trial-highlight i { background: var(--red); color: white; }
.pricing-heading strong { color: var(--red); }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 680px; isolation: isolate; }
.hero-visual::before { content: ''; position: absolute; z-index: -3; width: 560px; height: 560px; border-radius: 50%; background: var(--red-soft); }
.hero-visual::after { content: ''; position: absolute; z-index: -2; width: 450px; height: 450px; border-radius: 50%; border: 1px solid rgba(240,71,62,.3); }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(21,40,49,.12); border-radius: 50%; animation: rotate 22s linear infinite; }
.orbit::before { content: ''; position: absolute; top: 10%; left: 10%; width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.orbit-one { width: 620px; height: 620px; }.orbit-two { width: 520px; height: 520px; animation-direction: reverse; animation-duration: 17s; }
.phone { width: 276px; height: 568px; padding: 9px; border: 5px solid var(--ink); border-radius: 48px; background: var(--ink); box-shadow: 0 34px 70px rgba(21,40,49,.28); transform: rotate(2deg); animation: phone-float 5s ease-in-out infinite; }
.phone-screen { position: relative; height: 100%; overflow: hidden; padding: 18px 20px; border-radius: 37px; background: #fbfaf7; text-align: center; }
.phone-screen::before { content: ''; position: absolute; z-index: 2; top: 7px; left: 50%; width: 76px; height: 20px; border-radius: 99px; background: var(--ink); transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; margin: 1px 3px 26px; font-size: 9px; font-weight: 800; }
.phone-brand { display: flex; justify-content: center; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.mini-mark { position: relative; display: inline-block; width: 16px; height: 16px; border: 5px solid var(--red); border-radius: 50%; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; padding: 7px 11px; border-radius: 99px; background: #e4f2ed; color: #286654; font-size: 8px; font-weight: 700; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #39a47e; box-shadow: 0 0 0 4px rgba(57,164,126,.13); }
.phone-copy { display: grid; gap: 4px; margin-top: 27px; }.phone-copy small { color: #8a9598; font-size: 7px; letter-spacing: .15em; }.phone-copy strong { font-size: 18px; }.phone-copy span { color: var(--ink-soft); font-size: 9px; }
.sos-demo { position: relative; display: grid; place-items: center; align-content: center; width: 158px; height: 158px; margin: 24px auto 15px; border: 9px solid #ffbcb5; border-radius: 50%; background: var(--red); color: white; box-shadow: 0 0 0 1px white, 0 0 0 16px #fee4de, 0 15px 27px rgba(240,71,62,.25); cursor: pointer; animation: sos-breathe 2.5s ease-in-out infinite; }
.sos-demo span { font-family: 'Manrope'; font-size: 37px; font-weight: 800; }.sos-demo small { font-size: 7px; }
.phone-hint { color: #899397; font-size: 8px; }.phone-avatars { display: flex; justify-content: center; margin-top: 20px; }.phone-avatars span { display: grid; place-items: center; width: 30px; height: 30px; margin-left: -5px; border: 2px solid white; border-radius: 50%; background: var(--mint); font-size: 7px; font-weight: 800; }.phone-avatars span:nth-child(2) { background: #f4c7a7; }.phone-avatars span:nth-child(3) { background: #cad2ea; }.phone-avatars span:nth-child(4) { background: var(--ink); color: white; }.home-indicator { position: absolute; bottom: 8px; left: 50%; width: 90px; height: 4px; border-radius: 9px; background: var(--ink); transform: translateX(-50%); }
.float-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,254,251,.9); box-shadow: var(--shadow); backdrop-filter: blur(12px); animation: card-float 4.2s ease-in-out infinite; }
.float-card span:last-child { display: grid; gap: 2px; }.float-card small { color: var(--ink-soft); font-size: 9px; }.float-card strong { font-size: 11px; }.float-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: white; font-weight: 800; }.alert-float { top: 22%; left: -3%; }.location-float { right: -7%; bottom: 20%; animation-delay: -1.5s; }

.proof-strip { padding: 30px max(24px, calc((100vw - 1180px) / 2)); border-block: 1px solid var(--line); background: rgba(255,255,255,.24); text-align: center; }
.proof-strip > p { margin: 0 0 22px; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.proof-items { display: flex; justify-content: space-between; gap: 25px; font-size: 13px; font-weight: 600; }.proof-items span { display: flex; align-items: center; gap: 9px; }.proof-items b { color: var(--red); font-size: 18px; }

.features { padding-top: 125px; padding-bottom: 130px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 57px; }
.kicker { margin: 0 0 18px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
h2 { margin: 0; font-size: clamp(43px, 5.3vw, 71px); line-height: 1.06; font-weight: 650; }
.section-heading > p { max-width: 430px; margin: 0 0 7px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card { position: relative; min-height: 430px; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.35); }
.feature-card h3 { margin: 21px 0 12px; font-family: 'Manrope'; font-size: 27px; letter-spacing: -.04em; }.feature-card p { max-width: 470px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.feature-number { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; }.red-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; grid-column: 1 / -1; background: var(--red); color: white; }.red-card .feature-number, .red-card p { color: rgba(255,255,255,.75); }.red-card h3 { margin-top: 44px; font-size: 38px; }.feature-tag, .privacy-note { display: inline-block; margin-top: 22px; padding: 8px 12px; border-radius: 99px; background: rgba(255,255,255,.15); font-size: 10px; font-weight: 700; }
.rings-visual { position: relative; display: grid; place-items: center; }.ring { position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; animation: ring-pulse 3s ease-out infinite; }.r1 { width: 130px; height: 130px; }.r2 { width: 210px; height: 210px; animation-delay: .5s; }.r3 { width: 290px; height: 290px; animation-delay: 1s; }.rings-visual b { display: grid; z-index: 2; place-items: center; width: 112px; height: 112px; border-radius: 50%; background: white; color: var(--red); font-size: 29px; box-shadow: 0 18px 40px rgba(137,29,25,.22); }
.map-visual { position: relative; height: 190px; margin: -32px -32px 25px; overflow: hidden; background: #dce9e3; }.map-visual svg { width: 100%; height: 100%; fill: none; stroke: rgba(21,40,49,.16); stroke-width: 1.5; }.map-visual .route { stroke: var(--red); stroke-width: 3; stroke-dasharray: 7; animation: dash 8s linear infinite; }.map-pin { position: absolute; width: 18px; height: 18px; border: 5px solid white; border-radius: 50%; background: var(--red); box-shadow: 0 3px 12px rgba(0,0,0,.2); }.pin-start { left: 8%; bottom: 17%; }.pin-end { right: 7%; top: 30%; }.map-badge { position: absolute; top: 18px; right: 18px; display: flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 99px; background: white; font-size: 9px; font-weight: 800; }
.dark-card { background: var(--blue); color: white; }.dark-card .feature-number, .dark-card p { color: rgba(255,255,255,.64); }.sound-visual { display: flex; align-items: center; justify-content: center; gap: 8px; height: 150px; }.sound-visual span { width: 8px; height: 25%; border-radius: 10px; background: var(--red); animation: sound 1.4s ease-in-out infinite alternate; }.sound-visual span:nth-child(2),.sound-visual span:nth-child(8){animation-delay:.2s}.sound-visual span:nth-child(3),.sound-visual span:nth-child(7){animation-delay:.4s}.sound-visual span:nth-child(4),.sound-visual span:nth-child(6){animation-delay:.6s}.sound-visual span:nth-child(5){animation-delay:.8s}.privacy-note { background: rgba(185,221,209,.13); color: var(--mint); }
.chat-visual { display: flex; flex-direction: column; gap: 8px; justify-content: center; height: 150px; margin-bottom: 16px; }
.bubble { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 11px; line-height: 1.45; }
.bubble-in { align-self: flex-start; border: 1px solid var(--line); border-bottom-left-radius: 4px; background: var(--paper); color: var(--ink); }
.bubble-out { align-self: flex-end; border-bottom-right-radius: 4px; background: var(--red); color: white; }
.call-visual { display: grid; justify-items: center; align-content: center; gap: 5px; height: 150px; }
.call-avatar { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 4px; border-radius: 50%; background: rgba(255,255,255,.12); font-family: 'Poppins'; font-size: 18px; font-weight: 800; }
.call-visual strong { font-family: 'Poppins'; font-size: 15px; }
.call-visual small { color: rgba(255,255,255,.55); font-size: 10px; }
.call-actions { display: flex; gap: 22px; margin-top: 10px; }
.call-btn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-size: 15px; font-weight: 800; }
.call-btn.decline { background: var(--red); color: white; }
.call-btn.accept { background: #39a47e; color: white; }
.watch-feature-card { display: grid; grid-template-columns: 1fr 1fr; grid-column: 1 / -1; min-height: 300px; align-items: center; }
.watch-feature-card .feature-number, .watch-feature-card p { color: rgba(255,255,255,.65); }
.watch-feature-card h3 { margin-top: 18px; font-size: 32px; }
.watch-visual { position: relative; display: grid; place-items: center; min-height: 220px; }
.watch-face { position: relative; z-index: 2; width: 150px; height: 178px; padding: 10px; border: 6px solid #05070a; border-radius: 40px; background: #111417; box-shadow: 0 20px 45px rgba(0,0,0,.45); }
.watch-crown { position: absolute; top: 40%; right: -8px; width: 10px; height: 22px; border-radius: 3px; background: #05070a; }
.watch-screen { display: grid; place-items: center; gap: 12px; height: 100%; border-radius: 28px; background: radial-gradient(circle at 50% 20%, rgba(240,71,62,.3), transparent 60%), #0b0e11; }
.watch-time { color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; }
.watch-sos { display: grid; place-items: center; width: 74px; height: 74px; border: 4px solid #ffbcb5; border-radius: 50%; background: var(--red); color: white; font-family: 'Poppins'; font-size: 16px; font-weight: 800; animation: sos-breathe 2.5s ease-in-out infinite; }
.feature-wide { display: grid; grid-template-columns: 1fr 1fr; grid-column: 1 / -1; min-height: 360px; }.feature-wide .feature-copy { align-self: center; }.group-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }.group-chips span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; font-size: 10px; font-weight: 700; }.people-visual { position: relative; min-height: 260px; }.people-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(21,40,49,.18); stroke-width: 1.5; stroke-dasharray: 4; }.person,.center-mark { position: absolute; z-index: 2; display: grid; place-items: center; border: 5px solid var(--paper); border-radius: 50%; font-size: 10px; font-weight: 800; box-shadow: 0 8px 20px rgba(21,40,49,.12); }.person { width: 58px; height: 58px; background: var(--mint); }.p1 { top: 12%; left: 7%; }.p2 { top: 5%; right: 8%; background: #f2c29e; }.p3 { bottom: 5%; left: 8%; background: #cbd3e9; }.p4 { right: 8%; bottom: 6%; background: #f2cbc7; }.center-mark { top: 50%; left: 50%; width: 75px; height: 75px; background: white; transform: translate(-50%,-50%); }

.steps-section { padding-top: 120px; padding-bottom: 130px; background: var(--blue); color: white; }
.steps-intro { text-align: center; }.steps-intro .kicker { color: var(--mint); }.steps-intro em { color: var(--mint); }.steps-list { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 78px; }.step { position: relative; padding: 0 48px; text-align: center; }.step + .step { border-left: 1px solid rgba(255,255,255,.12); }.step > span { position: absolute; top: 4px; left: 30px; color: rgba(255,255,255,.3); font-size: 11px; }.step-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--mint); font-size: 29px; }.step h3 { margin: 0 0 13px; font-family: 'Manrope'; font-size: 21px; }.step p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.7; }

.pricing { padding-top: 125px; padding-bottom: 125px; }.pricing-heading { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.coming-soon-banner { display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 620px; margin: -30px auto 50px; text-align: center; }.coming-soon-badge { display: inline-flex; padding: 7px 14px; border-radius: 99px; background: var(--mint); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .12em; }.coming-soon-banner p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.pricing-heading > p:last-child { margin-top: 20px; color: var(--ink-soft); }.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: auto; }.price-card { position: relative; padding: 39px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-light); }.plan-name { margin: 0; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .16em; }.price { display: flex; align-items: flex-start; margin: 25px 0 20px; }.price sup { margin-top: 12px; font-size: 24px; font-weight: 700; }.price strong { font-family: 'Manrope'; font-size: 76px; line-height: .9; letter-spacing: -.06em; }.price span { margin: 14px 0 0 13px; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }.price-card > p:not(.plan-name) { min-height: 48px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }.price-card .button { width: 100%; margin-top: 25px; }.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); }.button-outline:hover { border-color: var(--ink); background: var(--ink); }.featured-price { background: var(--red); color: white; transform: translateY(-10px); box-shadow: 0 28px 60px rgba(240,71,62,.2); }.featured-price .plan-name, .featured-price .price span, .featured-price > p:not(.plan-name) { color: rgba(255,255,255,.75); }.best-value { position: absolute; top: 24px; right: 24px; padding: 7px 10px; border-radius: 99px; background: white; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .1em; }.button-light { border-color: white; background: white; color: var(--red); }.button-light:hover { background: var(--paper); color: var(--red-dark); }.included { max-width: 880px; margin: 31px auto 0; padding: 26px; border-top: 1px solid var(--line); }.included > p { margin: 0 0 18px; text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.included > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; font-size: 12px; }

.testimonial { position: relative; overflow: hidden; padding-top: 130px; padding-bottom: 130px; background: var(--red-soft); text-align: center; }.quote-mark { position: absolute; top: -195px; left: 50%; color: rgba(240,71,62,.1); font-family: Georgia; font-size: 480px; line-height: 1; transform: translateX(-50%); }.testimonial blockquote { position: relative; margin: 0; font-family: 'Manrope'; font-size: clamp(33px,4.3vw,59px); font-weight: 600; line-height: 1.2; letter-spacing: -.045em; }.quote-avatars { display: flex; align-items: center; justify-content: center; margin-top: 38px; }.quote-avatars span { display: grid; place-items: center; width: 39px; height: 39px; margin-left: -7px; border: 3px solid var(--red-soft); border-radius: 50%; background: var(--mint); font-size: 8px; font-weight: 800; }.quote-avatars span:nth-child(2){background:#f0bf9b}.quote-avatars span:nth-child(3){background:#c5cde3}.quote-avatars span:nth-child(4){background:var(--ink);color:white}.quote-avatars p { margin-left: 15px; color: var(--ink-soft); font-size: 11px; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; padding-top: 125px; padding-bottom: 125px; }.faq-heading h2 { font-size: 55px; }.faq-list { border-top: 1px solid var(--line); }.faq details { border-bottom: 1px solid var(--line); }.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 4px; cursor: pointer; list-style: none; font-family: 'Manrope'; font-size: 16px; font-weight: 700; }.faq summary::-webkit-details-marker { display: none; }.faq summary span { color: var(--red); font-size: 24px; font-weight: 400; transition: transform .3s; }.faq details[open] summary span { transform: rotate(45deg); }.faq details p { max-width: 650px; margin: -5px 40px 25px 4px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.final-cta { position: relative; display: flex; flex-direction: column; align-items: center; overflow: hidden; padding-top: 100px; padding-bottom: 100px; background: var(--red); color: white; text-align: center; }.final-cta .mini-mark { width: 30px; height: 30px; border-color: white; }.final-cta h2 { position: relative; margin-top: 22px; }.final-cta em { color: white; }.final-cta p { position: relative; max-width: 530px; margin: 20px auto 30px; color: rgba(255,255,255,.76); line-height: 1.7; }.final-cta small { position: relative; margin-top: 18px; color: rgba(255,255,255,.62); }.cta-orbit { position: absolute; width: 800px; height: 800px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }.cta-orbit::before,.cta-orbit::after { content:''; position:absolute; border:1px solid rgba(255,255,255,.12); border-radius:50%; }.cta-orbit::before{inset:90px}.cta-orbit::after{inset:190px}

.site-footer { padding: 70px max(24px, calc((100vw - 1180px) / 2)) 25px; background: #102630; color: white; }.footer-main { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding-bottom: 65px; }.footer-logo .logo-mark { transform: scale(.82); }.footer-main > div:first-child p { color: rgba(255,255,255,.5); line-height: 1.6; }.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }.footer-links div { display: flex; flex-direction: column; gap: 13px; }.footer-links strong { margin-bottom: 8px; color: var(--mint); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }.footer-links a { color: rgba(255,255,255,.59); font-size: 12px; }.footer-links a:hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.36); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s ease, transform .8s ease; }.reveal.is-visible { opacity: 1; transform: none; }.feature-grid .reveal:nth-child(2), .steps-list .reveal:nth-child(2), .pricing-grid .reveal:nth-child(2) { transition-delay: .1s; }.feature-grid .reveal:nth-child(3), .steps-list .reveal:nth-child(3) { transition-delay: .2s; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 7px rgba(240,71,62,0); } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes phone-float { 50% { transform: rotate(0deg) translateY(-9px); } }
@keyframes card-float { 50% { transform: translateY(-8px); } }
@keyframes sos-breathe { 50% { box-shadow: 0 0 0 1px white,0 0 0 21px rgba(254,228,222,.65),0 15px 27px rgba(240,71,62,.3); } }
@keyframes ring-pulse { 50% { transform: scale(1.05); opacity: .65; } }
@keyframes dash { to { stroke-dashoffset: -100; } }
@keyframes sound { to { height: 85%; } }

@media (max-width: 1000px) {
  .desktop-nav { display: none; }.site-header { grid-template-columns: 1fr auto; }.hero { grid-template-columns: 1fr; padding-top: 150px; text-align: center; }.hero-copy { display: flex; flex-direction: column; align-items: center; }.hero-visual { min-height: 620px; }.section-heading { grid-template-columns: 1fr; gap: 25px; }.steps-list { gap: 0; }.step { padding: 0 25px; }.faq { grid-template-columns: 1fr; gap: 50px; }.menu-button { display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; }.menu-button span { width: 17px; height: 2px; background: var(--ink); transition: .25s; }.mobile-nav { position: absolute; top: 100%; left: 18px; right: 18px; display: flex; flex-direction: column; max-height: 0; overflow: hidden; border-radius: 20px; background: var(--paper-light); box-shadow: var(--shadow); opacity: 0; transition: .3s; }.mobile-nav a { padding: 14px 20px; border-bottom: 1px solid var(--line); }.menu-open .mobile-nav { max-height: 400px; padding: 10px; opacity: 1; }.menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }.menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }
}
@media (max-width: 700px) {
  .section-pad { padding-inline: 18px; }.site-header { height: 68px; padding-inline: 18px; }.desktop-only { display: none; }.header-actions { gap: 10px; }.button-small { min-height: 38px; padding: 0 16px; }.logo { font-size: 16px; }.logo-mark { width: 28px; height: 28px; }.hero { min-height: auto; gap: 30px; padding-top: 120px; padding-bottom: 40px; }.hero h1 { font-size: 54px; }.hero-lead { font-size: 16px; }.hero-actions { flex-direction: column; }.trust-row { justify-content: center; gap: 12px 18px; }.hero-visual { min-height: 540px; transform: scale(.84); margin: -30px -40px; }.hero-visual::before { width: 480px; height: 480px; }.orbit-one { width: 540px; height: 540px; }.orbit-two { width: 450px; height: 450px; }.float-card { transform: scale(.9); }.alert-float { left: 0; }.location-float { right: 0; }.proof-items { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }.features { padding-top: 85px; padding-bottom: 85px; }.feature-grid,.red-card,.feature-wide,.watch-feature-card { grid-template-columns: 1fr; }.red-card { min-height: 570px; }.rings-visual { min-height: 250px; }.feature-card { min-height: 390px; padding: 25px; }.feature-wide { min-height: 620px; }.watch-feature-card { min-height: 480px; }.section-heading { margin-bottom: 40px; }.steps-section { padding-top: 85px; padding-bottom: 85px; }.steps-list { grid-template-columns: 1fr; gap: 40px; margin-top: 55px; }.step { padding: 35px 30px 0; }.step + .step { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }.step > span { top: 42px; }.pricing { padding-top: 85px; padding-bottom: 85px; }.pricing-grid { grid-template-columns: 1fr; }.featured-price { transform: none; }.included > div { grid-template-columns: 1fr 1fr; }.testimonial { padding-top: 90px; padding-bottom: 90px; }.faq { padding-top: 85px; padding-bottom: 85px; }.faq-heading h2 { font-size: 44px; }.final-cta { padding-top: 80px; padding-bottom: 80px; }.footer-main { grid-template-columns: 1fr; gap: 40px; }.footer-links { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

/* Compact brand refinement */
.site-header { height: 70px; }
.site-header.scrolled { height: 62px; }
.logo, .hero h1, h2, .feature-card h3, .step h3, .faq summary, .sos-demo span, .price strong { font-family: 'Poppins', sans-serif; }
.brand-icon { width: 38px; height: 38px; border-radius: 12px; object-fit: cover; box-shadow: 0 7px 18px rgba(222, 28, 48, .2); }
.brand-name strong, .phone-brand strong { color: var(--red); font-weight: 800; }
.brand-name strong { margin-left: 3px; }
.phone-brand span { display: inline-flex; align-items: center; gap: 2px; }
.footer-logo .brand-icon { width: 42px; height: 42px; transform: none; }
.hero { min-height: 690px; gap: 48px; padding-top: 88px; padding-bottom: 28px; }
.hero h1 { margin: 20px 0 18px; font-size: clamp(52px, 5.5vw, 78px); }
.hero-lead { max-width: 570px; font-size: 16px; line-height: 1.6; }
.hero-actions { margin-top: 26px; }
.trust-row { margin-top: 25px; }
.hero-visual { min-height: 570px; }
.hero-visual::before { width: 470px; height: 470px; }
.hero-visual::after { width: 390px; height: 390px; }
.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 445px; height: 445px; }
.phone { width: 244px; height: 504px; border-radius: 43px; }
.phone-screen { padding: 16px 17px; border-radius: 33px; }
.phone-brand img { width: 20px; height: 20px; border-radius: 7px; }
.status-pill { margin-top: 12px; }
.phone-copy { margin-top: 18px; }
.sos-demo { width: 137px; height: 137px; margin: 18px auto 12px; border-width: 7px; }
.sos-demo span { font-size: 31px; }
.phone-avatars { margin-top: 13px; }
.float-card { padding: 11px 14px; }
.alert-float { top: 22%; left: 0; }
.location-float { right: -2%; bottom: 18%; }
.protection-badge { position: absolute; z-index: 4; top: 10%; right: 3%; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.75); border-radius: 14px; background: rgba(21,40,49,.92); color: white; box-shadow: var(--shadow); transform: rotate(4deg); animation: card-float 5s ease-in-out infinite reverse; }
.protection-badge strong { color: var(--mint); font-size: 15px; }.protection-badge span { font-size: 7px; line-height: 1.25; text-transform: uppercase; letter-spacing: .1em; }
.proof-strip { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; padding-top: 19px; padding-bottom: 19px; text-align: left; }
.proof-strip > p { display: flex; align-items: center; gap: 7px; margin: 0; padding: 8px 12px; border-radius: 99px; background: var(--ink); color: white; white-space: nowrap; }
.proof-strip > p span { color: var(--mint); }
.proof-items { align-items: center; }
.features { position: relative; padding-top: 84px; padding-bottom: 88px; background-image: radial-gradient(rgba(21,40,49,.1) .75px, transparent .75px); background-size: 24px 24px; }
.features::before { content: ''; position: absolute; inset: 0; background: linear-gradient(var(--paper) 0%, transparent 18%, transparent 82%, var(--paper) 100%); pointer-events: none; }
.section-heading, .feature-grid { position: relative; }
.section-heading { margin-bottom: 38px; }
h2 { font-size: clamp(40px, 4.6vw, 60px); }
.feature-card { min-height: 340px; padding: 28px; background: rgba(255,254,251,.78); box-shadow: 0 14px 45px rgba(21,40,49,.055); transition: transform .3s ease, box-shadow .3s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 55px rgba(21,40,49,.1); }
.feature-card h3 { margin-top: 15px; font-size: 24px; }
.red-card { min-height: 285px; background-color: var(--red); background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 18px 18px; }
.red-card h3 { margin-top: 27px; font-size: 33px; }
.rings-visual { transform: scale(.84); }
.map-visual { height: 145px; margin: -28px -28px 20px; }
.dark-card { background-color: var(--blue); background-image: linear-gradient(135deg, rgba(185,221,209,.06) 25%, transparent 25%, transparent 50%, rgba(185,221,209,.06) 50%, rgba(185,221,209,.06) 75%, transparent 75%); background-size: 42px 42px; }
.watch-feature-card { background: linear-gradient(165deg, #3a3f45 0%, #1c1f22 100%); color: white; }
.sound-visual { height: 105px; }
.feature-wide { min-height: 290px; }
.people-visual { min-height: 220px; }
.steps-section { padding-top: 82px; padding-bottom: 84px; background-image: radial-gradient(circle at 50% 0, rgba(185,221,209,.12), transparent 38%); }
.steps-list { margin-top: 50px; }
.step-icon { width: 62px; height: 62px; margin-bottom: 20px; }
.pricing { padding-top: 82px; padding-bottom: 80px; background: linear-gradient(145deg, transparent 55%, rgba(255,217,209,.45)); }
.pricing-heading { margin-bottom: 40px; }
.burger-value-banner { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; overflow: hidden; max-width: 880px; min-height: 285px; margin: 0 auto 38px; padding: 34px 38px; border-radius: 32px; background: linear-gradient(135deg, #152831 0%, #243c46 58%, #6f1d25 100%); color: white; box-shadow: 0 25px 65px rgba(21,40,49,.18); isolation: isolate; }
.burger-value-banner::before { content: ''; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 76% 44%, rgba(255,190,94,.2), transparent 29%), radial-gradient(circle at 10% 110%, rgba(240,71,62,.22), transparent 38%); }
.burger-copy { position: relative; z-index: 2; }
.burger-kicker { color: #ffd66b; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.burger-copy h3 { margin: 10px 0 10px; font-size: clamp(25px, 3vw, 37px); line-height: 1.1; letter-spacing: -.045em; }
.burger-copy h3 strong { color: #ffd66b; font-weight: 800; }
.burger-copy p { max-width: 470px; margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.65; }
.burger-price-pill { display: inline-flex; margin-top: 17px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; background: rgba(255,255,255,.09); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.burger-art { position: absolute; z-index: 1; top: -32px; right: -3px; width: 340px; height: 350px; }
.burger-art img { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 28px 22px rgba(0,0,0,.42)); transform: rotate(2deg); transition: transform .45s ease; }
.burger-value-banner:hover .burger-art img { transform: rotate(0) scale(1.035); }
.burger-orbit { position: absolute; top: 58px; left: 45px; width: 245px; height: 245px; border: 1px solid rgba(255,214,107,.25); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,214,107,.035), 0 0 0 60px rgba(255,214,107,.025); }
.burger-stamp { position: absolute; z-index: 3; top: 52px; right: 14px; display: grid; place-items: center; width: 78px; height: 78px; border: 2px solid white; border-radius: 50%; background: var(--red); color: white; box-shadow: 0 12px 30px rgba(0,0,0,.28); text-align: center; font-size: 7px; font-weight: 700; line-height: 1.25; letter-spacing: .08em; transform: rotate(9deg); }
.burger-stamp b { font-size: 11px; }
.price-card { padding: 31px; }
.price strong { font-size: 64px; }
.price-card .button { margin-top: 15px; }
.included { margin-top: 22px; padding: 20px; }
.plans-divider { display: flex; align-items: center; gap: 16px; max-width: 880px; margin: 46px auto 10px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.plans-divider::before, .plans-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.plans-lead { max-width: 560px; margin: 0 auto 26px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; text-align: center; }
.group-plans-grid { max-width: 980px; grid-template-columns: repeat(3, 1fr); }
.testimonial { padding-top: 82px; padding-bottom: 82px; }
.testimonial blockquote { font-size: clamp(31px, 3.8vw, 50px); }
.quote-avatars { margin-top: 28px; }
.faq { gap: 70px; padding-top: 82px; padding-bottom: 82px; }
.faq-heading h2 { font-size: 48px; }
.faq summary { padding: 19px 4px; }
.final-cta { padding-top: 72px; padding-bottom: 72px; }
.cta-logo { position: relative; z-index: 1; width: 55px; height: 55px; border: 3px solid rgba(255,255,255,.55); border-radius: 17px; box-shadow: 0 14px 35px rgba(112,20,18,.2); }
.site-footer { padding-top: 48px; }
.footer-main { padding-bottom: 40px; }

.platforms { position: relative; padding-top: 84px; padding-bottom: 88px; background: var(--paper-light); }
.platforms::before { content: ''; position: absolute; top: 0; left: 50%; width: min(1180px, calc(100% - 48px)); height: 1px; background: var(--line); transform: translateX(-50%); }
.platforms-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 38px; }
.platforms-heading > p { max-width: 440px; margin: 0 0 7px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.platform-card::after { content: ''; position: absolute; right: -55px; bottom: -55px; width: 160px; height: 160px; border: 1px solid currentColor; border-radius: 50%; opacity: .07; box-shadow: 0 0 0 32px currentColor, 0 0 0 64px currentColor; pointer-events: none; }
.android-card { background: #e5f2ed; }
.ios-card { background: var(--blue); color: white; }
.platform-top { display: flex; align-items: center; gap: 17px; padding-bottom: 22px; border-bottom: 1px solid currentColor; border-color: rgba(21,40,49,.12); }
.ios-card .platform-top, .watch-card .platform-top { border-color: rgba(255,255,255,.12); }
.platform-top > div:last-child { display: grid; gap: 4px; }
.platform-top span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.ios-card .platform-top span, .watch-card .platform-top span { color: var(--mint); }
.platform-top h3 { margin: 0; font-family: 'Poppins', sans-serif; font-size: 24px; letter-spacing: -.04em; }
.platform-icon { flex: 0 0 auto; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--ink); color: white; }
.android-icon { background: #3d8f73; }
.android-icon svg { width: 35px; height: 35px; fill: none; stroke: white; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.apple-icon { background: white; color: var(--ink); font-size: 16px; font-weight: 800; letter-spacing: -.05em; }
.platform-card ul { display: grid; gap: 0; margin: 12px 0 18px; padding: 0; list-style: none; }
.platform-card li { display: grid; grid-template-columns: 32px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(21,40,49,.1); }
.ios-card li, .watch-card li { border-color: rgba(255,255,255,.1); }
.platform-card li i { color: var(--red); font-size: 9px; font-style: normal; font-weight: 800; }
.ios-card li i, .watch-card li i { color: var(--mint); }
.platform-card li span { display: grid; gap: 3px; color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.ios-card li span, .watch-card li span { color: rgba(255,255,255,.6); }
.platform-card li strong { color: var(--ink); font-size: 13px; }
.ios-card li strong, .watch-card li strong { color: white; }
.platform-note { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 99px; background: rgba(255,255,255,.52); color: var(--ink-soft); font-size: 9px; }
.ios-card .platform-note, .watch-card .platform-note { background: rgba(255,255,255,.08); color: rgba(255,255,255,.58); }
.platform-note-block { display: flex; align-items: flex-start; gap: 9px; width: 100%; padding: 12px 14px; border-radius: 14px; font-size: 10.5px; line-height: 1.6; text-align: left; }
.platform-note-block b { margin-top: 1px; color: var(--mint); font-style: normal; }
.watch-card { background: linear-gradient(165deg, #3a3f45 0%, #1c1f22 100%); color: white; }
.watch-icon { background: #4a4f57; }
.watch-icon svg { width: 32px; height: 32px; fill: none; stroke: white; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.platform-note b { color: #3d8f73; }
.shared-features { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 25px; margin-top: 20px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.shared-label { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .14em; white-space: nowrap; }
.shared-features > div { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 11px; font-weight: 600; }

.privacy-section { padding-top: 100px; padding-bottom: 100px; background: var(--blue); color: white; text-align: center; }
.privacy-heading { max-width: 700px; margin: 0 auto 50px; }
.privacy-heading .kicker { color: var(--mint); }
.privacy-heading em { color: var(--mint); }
.privacy-heading > p:last-child { margin-top: 18px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; text-align: left; }
.privacy-card { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.privacy-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px; border-radius: 50%; background: rgba(185,221,209,.14); color: var(--mint); font-size: 16px; }
.privacy-card h3 { margin: 0 0 10px; font-family: 'Manrope'; font-size: 18px; }
.privacy-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }

@media (max-width: 1000px) {
  .hero { padding-top: 105px; }
  .hero-visual { min-height: 525px; }
  .proof-strip { grid-template-columns: 1fr; gap: 16px; }
  .proof-strip > p { justify-self: center; }
  .platforms-heading { grid-template-columns: 1fr; gap: 20px; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .watch-card { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .brand-icon { width: 34px; height: 34px; border-radius: 10px; }
  .hero { gap: 16px; padding-top: 98px; padding-bottom: 20px; }
  .hero h1 { font-size: 45px; }
  .hero-actions { gap: 18px; }
  .hero-visual { min-height: 460px; margin-top: -25px; margin-bottom: -35px; }
  .protection-badge { top: 12%; right: 8%; }
  .proof-strip { padding-top: 16px; padding-bottom: 16px; }
  .proof-items { gap: 13px; }
  .features, .steps-section, .pricing, .faq, .privacy-section { padding-top: 65px; padding-bottom: 65px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .burger-value-banner { grid-template-columns: 1fr; min-height: 470px; padding: 28px 24px 220px; }
  .burger-copy h3 { font-size: 29px; }
  .burger-art { top: auto; right: 50%; bottom: -50px; width: 300px; height: 300px; transform: translateX(50%); }
  .burger-stamp { top: 38px; right: 6px; }
  .platforms { padding-top: 65px; padding-bottom: 65px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { padding: 24px; }
  .platform-top h3 { font-size: 21px; }
  .shared-features { grid-template-columns: 1fr; gap: 13px; }
  .shared-features > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .red-card { min-height: 505px; }
  .feature-wide { min-height: 550px; }
  .testimonial { padding-top: 68px; padding-bottom: 68px; }
  .final-cta { padding-top: 62px; padding-bottom: 62px; }
}

.store-dialog { width: min(580px, calc(100% - 32px)); padding: 38px; border: 0; border-radius: 28px; background: var(--paper-light); color: var(--ink); box-shadow: 0 35px 100px rgba(15,34,42,.32); text-align: center; }
.store-dialog::backdrop { background: rgba(13,31,39,.68); backdrop-filter: blur(7px); }
.store-dialog[open] { animation: dialog-in .28s ease both; }
.store-dialog > img { width: 58px; height: 58px; border-radius: 17px; box-shadow: 0 10px 25px rgba(240,71,62,.2); }
.store-dialog .kicker { margin: 18px 0 10px; }
.store-dialog h2 { font-size: 38px; }
.dialog-copy { max-width: 460px; margin: 18px auto 25px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.dialog-copy span { color: var(--red); font-weight: 700; }
.dialog-close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 22px; }
.store-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.store-options button { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 16px; background: white; color: var(--ink); text-align: left; }
.store-options button:disabled { cursor: default; opacity: .7; }
.store-options button > span:last-child { display: grid; gap: 1px; }
.store-options small { color: var(--ink-soft); font-size: 7px; font-weight: 700; letter-spacing: .08em; }
.store-options strong { font-size: 14px; }
.store-symbol { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--ink); color: white; font-size: 10px; font-weight: 800; }
.android-symbol { background: #3d8f73; font-size: 18px; }
.dialog-note { display: block; margin-top: 19px; color: #8a9598; font-size: 9px; line-height: 1.5; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(15px) scale(.97); } }

/* Final art-direction pass */
.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; border-radius: 0 99px 99px 0; background: linear-gradient(90deg, var(--red), #ff8f80); box-shadow: 0 0 12px rgba(240,71,62,.45); }
.site-header { transition: height .3s ease, top .3s ease, width .3s ease, border-radius .3s ease, box-shadow .3s ease, background .3s ease; }
.site-header.scrolled { top: 9px; left: 50%; right: auto; width: min(1180px, calc(100% - 28px)); padding-inline: 20px; border: 1px solid rgba(21,40,49,.1); border-radius: 18px; box-shadow: 0 14px 38px rgba(21,40,49,.1); transform: translateX(-50%); }
.desktop-nav a { transition: color .25s ease; }
.desktop-nav a.active { color: var(--red); }
.desktop-nav a.active::after { right: 0; }
.button { position: relative; overflow: hidden; isolation: isolate; }
.button::before { content: ''; position: absolute; z-index: -1; top: -60%; left: -30%; width: 28px; height: 220%; background: rgba(255,255,255,.25); transform: rotate(24deg) translateX(-130px); transition: transform .65s ease; }
.button:hover::before { transform: rotate(24deg) translateX(360px); }
.button span { transition: transform .25s ease; }
.button:hover > span:last-child { transform: translateX(4px); }
.hero { position: relative; }
.hero::before { content: ''; position: absolute; z-index: -2; top: 15%; left: -9%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(185,221,209,.48), transparent 68%); filter: blur(2px); pointer-events: none; }
.privacy-float { position: absolute; z-index: 5; left: 3%; bottom: 12%; display: grid; grid-template-columns: 27px auto; column-gap: 8px; align-items: center; padding: 10px 13px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,254,251,.9); box-shadow: 0 15px 35px rgba(21,40,49,.12); backdrop-filter: blur(10px); animation: card-float 5.5s ease-in-out -2s infinite; }
.privacy-float > span { grid-row: 1 / 3; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; background: var(--mint); color: #286654; font-size: 11px; font-weight: 800; }
.privacy-float strong { font-size: 10px; }.privacy-float small { color: var(--ink-soft); font-size: 7px; }
.phone-screen, .status-pill, .sos-demo, .alert-float { transition: background .35s ease, color .35s ease, transform .35s ease, box-shadow .35s ease; }
.hero-visual.demo-active .phone-screen { background: #fff4f2; }
.hero-visual.demo-active .status-pill { background: var(--red); color: white; }
.hero-visual.demo-active .status-pill .live-dot { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.22); }
.hero-visual.demo-active .sos-demo { transform: scale(.96); box-shadow: 0 0 0 1px white, 0 0 0 24px rgba(240,71,62,.14), 0 18px 35px rgba(240,71,62,.38); }
.hero-visual.demo-active .alert-float { transform: translateY(-8px) scale(1.04); box-shadow: 0 22px 50px rgba(240,71,62,.2); }
.sos-demo:focus-visible { outline: 3px solid var(--ink); outline-offset: 5px; }
.feature-card::before, .platform-card::before { content: ''; position: absolute; z-index: 0; inset: 0; border-radius: inherit; background: linear-gradient(125deg, rgba(255,255,255,.2), transparent 30%); pointer-events: none; }
.feature-card > *, .platform-card > * { position: relative; z-index: 1; }
.platform-card { box-shadow: 0 16px 45px rgba(21,40,49,.06); transition: transform .3s ease, box-shadow .3s ease; }
.platform-card:hover { transform: translateY(-4px); box-shadow: 0 23px 55px rgba(21,40,49,.11); }
.plan-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-heading .plan-name { margin: 0; }
.plan-heading > span { padding: 6px 9px; border-radius: 99px; background: var(--red-soft); color: var(--red-dark); font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.featured-price .plan-heading > span { background: rgba(255,255,255,.17); color: white; }
.price-card { transition: transform .3s ease, box-shadow .3s ease; }
.price-card:not(.featured-price):hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(21,40,49,.1); }
.featured-price { border-color: transparent; }
.featured-price::after { content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, #ff8a7e, var(--red), #c92c2a); }
.faq details { padding-inline: 12px; border-radius: 12px; transition: background .25s ease, padding .25s ease; }
.faq details[open] { margin-block: 4px; background: rgba(255,255,255,.52); }
.faq details[open] summary { color: var(--red-dark); }
.mobile-quick-cta { display: none; }

.lang-switch { display: flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.5); }
.lang-btn { display: grid; place-items: center; width: 30px; height: 30px; border: 0; border-radius: 50%; background: transparent; color: inherit; font-size: 15px; line-height: 1; cursor: pointer; opacity: .5; transition: opacity .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.lang-btn:hover { opacity: .85; }
.lang-btn.active { opacity: 1; background: var(--white); box-shadow: 0 4px 10px rgba(21,40,49,.14); transform: scale(1.06); }
.lang-switch-mobile { justify-content: center; margin: 6px 4px 4px; }
.site-header.scrolled .lang-switch { background: rgba(255,255,255,.7); }

@media (max-width: 700px) {
  .store-dialog { padding: 31px 20px 25px; }
  .store-dialog h2 { font-size: 30px; }
  .store-options { grid-template-columns: 1fr; }
  .site-header.scrolled { top: 7px; width: calc(100% - 14px); padding-inline: 11px; }
  .privacy-float { left: 8%; bottom: 10%; }
  .mobile-quick-cta { position: fixed; z-index: 45; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; padding: 11px 13px 11px 17px; border: 1px solid rgba(255,255,255,.28); border-radius: 18px; background: rgba(21,40,49,.94); color: white; box-shadow: 0 18px 50px rgba(21,40,49,.28); backdrop-filter: blur(14px); transform: translateY(130%); transition: transform .35s ease; }
  .mobile-quick-cta.visible { transform: none; }
  .mobile-quick-cta > span { display: grid; }.mobile-quick-cta small { color: var(--mint); font-size: 7px; font-weight: 800; letter-spacing: .12em; }.mobile-quick-cta strong { font-size: 12px; }
  .mobile-quick-cta b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; background: var(--red); font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .protection-badge { animation: none; }
  .privacy-float { animation: none; }
  .store-dialog[open] { animation: none; }
}
