:root {
  color-scheme: dark;
  --bg: #04070b;
  --bg-2: #071018;
  --surface: #0a141f;
  --surface-2: #101d2c;
  --surface-3: #16263a;
  --ink: #f6fbff;
  --ink-strong: #ffffff;
  --ink-soft: rgba(235, 244, 255, 0.76);
  --ink-muted: rgba(221, 234, 250, 0.58);
  --line: rgba(199, 221, 255, 0.14);
  --line-strong: rgba(218, 234, 255, 0.24);
  --frame-edge: rgba(231, 242, 255, 0.2);
  --frame-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
  --blue: #5e97ff;
  --blue-2: #2f6bea;
  --cyan: #7fd4df;
  --gold: #d9a15f;
  --red: #f14f42;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: 'Outfit', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  accent-color: var(--cyan);
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size-adjust: from-font;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink-strong);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.icon,
.icon-card {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-card {
  width: 46px;
  height: 46px;
  color: var(--cyan);
  transition:
    color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.icon *,
.icon-card * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(1160px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  gap: 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 14, 23, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
  font-family: var(--display);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow:
    0 10px 26px rgba(241, 79, 66, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 30px);
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.94rem;
}

.nav-links a,
.footer-links a {
  transition: color 180ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink-strong);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0;
  font-family: var(--display);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.header-cta,
.primary-action {
  color: #fff;
  background: linear-gradient(135deg, #6ba2ff, #2f6bea 72%);
  box-shadow: 0 16px 34px rgba(47, 107, 234, 0.34);
}

.header-cta {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.primary-action {
  padding: 0 24px;
}

.secondary-action {
  padding: 0 22px;
  color: var(--ink-strong);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta:hover,
.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(47, 107, 234, 0.48);
}

.secondary-action:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.13);
}

.header-cta:active,
.primary-action:active,
.secondary-action:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

.hero {
  position: relative;
  min-height: min(800px, 86svh);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  overflow: hidden;
  padding: 112px clamp(22px, 6vw, 92px) 46px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(12, 24, 37, 0.92), rgba(4, 7, 11, 0.98)),
    var(--bg-2);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 140px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0), var(--bg));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: riseBlur 620ms var(--ease-out) both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--display);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(3.35rem, 2.6rem + 4.2vw, 6.1rem);
  font-weight: 860;
  line-height: 1.0;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  color: inherit;
  font-family: var(--display);
  font-size: clamp(2.25rem, 1.55rem + 3vw, 4.5rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.12;
}

.lead {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 0.98rem + 0.45vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-marks li,
.hero-signal-grid span,
.mission-tiles span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.055);
}

.trust-marks .icon,
.hero-signal-grid .icon,
.mission-tiles .icon {
  color: var(--cyan);
}

.trust-marks .trust-live .icon {
  color: var(--gold);
}

.trust-marks .trust-swiss .icon,
.privacy-grid article:first-child .icon-card {
  color: #ff7068;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: min(638px, 62vw);
  animation: phoneEnter 720ms var(--ease-out) 120ms both;
}

.hero-stage::before {
  position: absolute;
  inset: 8% 3% 15%;
  border: 1px solid rgba(127, 212, 223, 0.08);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(94, 151, 255, 0.13), rgba(127, 212, 223, 0.025) 58%, rgba(241, 79, 66, 0.055)),
    rgba(255, 255, 255, 0.018);
  content: "";
  opacity: 0.66;
  transform: skewY(-3deg);
}

.device {
  position: relative;
  aspect-ratio: 390 / 844;
  border: 1px solid var(--frame-edge);
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035) 18%, rgba(0, 0, 0, 0.34) 78%),
    #080d16;
  box-shadow: var(--frame-shadow);
}

.device::after {
  position: absolute;
  inset: 7px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 29px;
  content: "";
  pointer-events: none;
}

.device-screen {
  position: absolute;
  inset: 7px;
  z-index: 1;
  overflow: hidden;
  border-radius: 29px;
  background: #0b1422;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-button {
  position: absolute;
  display: block !important;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(230, 241, 255, 0.55), rgba(78, 95, 122, 0.3));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0.72;
}

.side-button-left-a {
  top: 96px;
  left: -4px;
  height: 38px;
}

.side-button-left-b {
  top: 150px;
  left: -4px;
  height: 68px;
}

.side-button-right {
  top: 140px;
  right: -4px;
  height: 84px;
}

.device-hero {
  z-index: 2;
  width: clamp(280px, 22vw, 356px);
  transform: rotate(1.5deg);
}

.hero-alarm-strip {
  --strip-x: -74%;
  --strip-enter-x: -84%;
  --strip-y: -50%;
  position: absolute;
  top: 53%;
  left: 50%;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(318px, 74%);
  min-height: 76px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(218, 234, 255, 0.2);
  border-radius: 22px;
  padding: 0 18px;
  color: var(--ink-strong);
  background:
    linear-gradient(180deg, rgba(23, 40, 63, 0.94), rgba(10, 20, 31, 0.94)),
    var(--surface-2);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  pointer-events: none;
  transform: translate(var(--strip-x), var(--strip-y));
}

.alarm-strip-time {
  font-family: var(--display);
  font-size: 1.82rem;
  font-weight: 860;
  line-height: 1;
}

.alarm-strip-name {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.alarm-strip-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8fc0ff, #4f8cff);
  box-shadow: 0 8px 20px rgba(79, 140, 255, 0.34);
}

.alarm-strip-toggle::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  content: "";
  box-shadow: 0 2px 8px rgba(5, 10, 18, 0.24);
}

.hero-signal-grid {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 360px;
}

.section,
.showcase,
.mission-feature,
.final-cta {
  position: relative;
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 92px);
  color: var(--ink);
  background: var(--bg);
}

.section-tight {
  padding-top: 72px;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.flow-grid,
.profile-grid,
.privacy-grid,
.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.flow-grid,
.profile-grid,
.privacy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-grid article,
.profile-grid article,
.privacy-grid article,
.faq-grid details {
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.flow-grid article:hover,
.profile-grid article:hover,
.privacy-grid article:hover,
.screen-card:hover .device-gallery {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.flow-grid article:hover,
.profile-grid article:hover,
.privacy-grid article:hover {
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.flow-grid article:hover .icon-card,
.profile-grid article:hover .icon-card,
.privacy-grid article:hover .icon-card {
  transform: translateY(-2px) scale(1.04);
}

.flow-grid article,
.profile-grid article,
.privacy-grid article,
.screen-card {
  animation: riseBlur 580ms var(--ease-out) both;
}

.flow-grid article:nth-child(2),
.profile-grid article:nth-child(2),
.privacy-grid article:nth-child(2),
.screen-card:nth-child(2) {
  animation-delay: 70ms;
}

.flow-grid article:nth-child(3),
.profile-grid article:nth-child(3),
.privacy-grid article:nth-child(3),
.screen-card:nth-child(3) {
  animation-delay: 120ms;
}

.flow-grid article:nth-child(4),
.profile-grid article:nth-child(4),
.privacy-grid article:nth-child(4),
.screen-card:nth-child(4) {
  animation-delay: 170ms;
}

.flow-grid p,
.profile-grid p,
.faq-grid p {
  margin: 0;
  color: var(--ink-muted);
}

.showcase {
  overflow: hidden;
  background:
    linear-gradient(180deg, #061018, #0a1623 48%, #050a12);
}

.showcase-copy {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.showcase-phones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  max-width: 1210px;
  align-items: start;
  margin: 0 auto;
}

.screen-card {
  margin: 0;
  color: var(--ink);
}

.device-gallery {
  width: min(100%, 250px);
  margin: 0 auto;
  border-radius: 36px;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.device-gallery .device-screen {
  inset: 7px;
  border-radius: 28px;
}

.device-gallery::after {
  border-radius: 28px;
}

.screen-card:nth-child(even) {
  margin-top: 48px;
}

.screen-card:nth-child(3) {
  margin-top: -12px;
}

.screen-card:nth-child(3) .device-gallery {
  width: min(100%, 268px);
}

.screen-card figcaption {
  margin: 16px auto 0;
  color: var(--ink-strong);
  text-align: center;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 850;
}

.profiles {
  background: linear-gradient(180deg, #04070b, #09131e);
}

.mission-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 96px;
  background:
    linear-gradient(180deg, #071018, #0d1b2d);
}

.mission-device-wrap {
  display: grid;
  place-items: center;
}

.device-feature {
  width: min(390px, 80vw);
}

.mission-copy {
  max-width: 700px;
}

.mission-copy h2 {
  color: var(--ink-strong);
}

.mission-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.privacy {
  background: linear-gradient(180deg, #04070b, #0a1624);
}

.privacy-panel {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--surface-2);
  box-shadow: var(--shadow-soft);
}

.privacy-panel h2 {
  margin-bottom: 0;
}

.privacy-grid article {
  min-height: 150px;
}

.privacy-grid h3 {
  margin-bottom: 0;
}

.faq {
  background: #050a12;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid details {
  min-height: 0;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink-strong);
  font-weight: 850;
}

.faq-grid summary::marker {
  color: var(--cyan);
}

.faq-grid p {
  padding-top: 12px;
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, #07111f, #0c1a2d);
}

.final-cta img {
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(241, 79, 66, 0.28);
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--ink-strong);
}

.site-footer {
  display: flex;
  width: min(1160px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--ink);
}

.site-footer .brand img {
  box-shadow: none;
}

.footer-links {
  color: var(--ink-soft);
}

.legal-page {
  min-height: 100svh;
  padding: clamp(22px, 5vw, 64px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(95, 151, 255, 0.12), rgba(95, 151, 255, 0) 34%),
    linear-gradient(215deg, rgba(127, 212, 223, 0.08), rgba(127, 212, 223, 0) 42%),
    linear-gradient(180deg, #050a12 0%, #08111f 52%, #050a12 100%);
}

.legal-shell {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: var(--shadow);
}

.press-shell {
  width: min(880px, 100%);
}

.legal-shell .brand {
  margin-bottom: clamp(34px, 6vw, 58px);
  color: var(--ink-strong);
}

.legal-shell .brand-icon,
.legal-shell .brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(241, 79, 66, 0.24);
}

.legal-shell h1 {
  margin: 0 0 16px;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(2.75rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.legal-shell h2 {
  margin: 36px 0 10px;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.06;
}

.legal-shell p,
.legal-shell li {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.legal-shell p {
  margin-bottom: 18px;
}

.legal-shell ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.legal-shell li + li {
  margin-top: 8px;
}

.legal-shell a:not(.brand):not(.primary-action) {
  color: var(--ink-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(127, 212, 223, 0.48);
  text-underline-offset: 0.18em;
}

.legal-shell code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.08em 0.32em;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.07);
}

.legal-updated {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.legal-shell .primary-action {
  width: fit-content;
  margin-top: 10px;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 600px;
  }

  .flow-grid,
  .profile-grid,
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-phones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .mission-feature {
    grid-template-columns: 1fr;
  }

  .mission-copy {
    max-width: 820px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 10px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding: 82px 18px 58px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  h1 {
    margin-bottom: 0;
    font-size: clamp(2.34rem, 1.9rem + 3.8vw, 2.68rem);
    line-height: 1.0;
  }

  h2 {
    font-size: clamp(2rem, 1.62rem + 4.6vw, 2.82rem);
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .lead {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 18px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-stage {
    min-height: 346px;
    overflow: hidden;
    margin-top: 26px;
    margin-bottom: 0;
  }

  .hero-stage::before {
    inset: 20% 2% 4%;
    border-radius: 30px;
    transform: none;
  }

  .device-hero {
    width: min(48vw, 188px);
    border-radius: 30px;
  }

  .device-hero::after,
  .device-hero .device-screen {
    border-radius: 24px;
  }

  .hero-alarm-strip {
    --strip-x: -50%;
    --strip-enter-x: -50%;
    top: 64%;
    width: min(304px, 82vw);
    min-height: 62px;
    gap: 9px;
    border-radius: 17px;
    padding: 0 14px;
  }

  .alarm-strip-time {
    font-size: 1.42rem;
  }

  .alarm-strip-name {
    font-size: 0.76rem;
  }

  .alarm-strip-toggle {
    width: 42px;
    height: 24px;
  }

  .alarm-strip-toggle::after {
    width: 17px;
    height: 17px;
  }

  .hero-signal-grid {
    display: none;
  }

  .hero-signal-grid span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .trust-marks {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .trust-marks li {
    flex: 0 0 auto;
    min-height: 36px;
    padding-inline: 11px;
    font-size: 0.88rem;
  }

  .trust-marks::-webkit-scrollbar {
    display: none;
  }

  .section,
  .showcase,
  .mission-feature,
  .final-cta {
    padding: 72px 18px;
  }

  .flow-grid,
  .profile-grid,
  .privacy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid article,
  .profile-grid article,
  .privacy-grid article {
    min-height: 142px;
  }

  .showcase {
    padding-inline: 0;
    padding-top: 66px;
  }

  .showcase-copy {
    padding-inline: 18px;
    margin-bottom: 24px;
  }

  .showcase-phones {
    display: flex;
    gap: 16px;
    max-width: none;
    margin: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 18px 16px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(127, 212, 223, 0.56) rgba(255, 255, 255, 0.08);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 38px), transparent 100%);
  }

  .screen-card {
    flex: 0 0 min(66vw, 268px);
    scroll-snap-align: center;
  }

  .screen-card:nth-child(even),
  .screen-card:nth-child(3) {
    margin-top: 0;
  }

  .device-gallery {
    width: 100%;
  }

  .screen-card figcaption {
    margin-top: 12px;
    font-size: 1rem;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .legal-page {
    padding: 12px;
  }

  .legal-shell {
    padding: 26px 18px;
  }

  .legal-shell h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .legal-shell h2 {
    margin: 32px 0 12px;
    font-size: clamp(1.48rem, 7vw, 2.05rem);
    line-height: 1.14;
  }

  .legal-shell p,
  .legal-shell li {
    font-size: 0.98rem;
  }
}

@keyframes riseBlur {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes phoneEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroSettle {
  from {
    transform: translateY(12px) rotate(0.2deg) scale(0.985);
    filter: blur(2px);
  }
  to {
    transform: translateY(0) rotate(1.5deg) scale(1);
    filter: blur(0);
  }
}

@keyframes alarmStripEnter {
  from {
    opacity: 0;
    transform: translate(var(--strip-enter-x), calc(var(--strip-y) + 12px)) scale(0.96);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate(var(--strip-x), var(--strip-y)) scale(1);
    filter: blur(0);
  }
}

@keyframes chipEnter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes viewRise {
  from {
    opacity: 0.88;
    transform: translateY(18px) scale(0.99);
    filter: none;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .device-hero {
    animation: heroSettle 760ms var(--ease-soft) 360ms both;
    will-change: transform, filter;
  }

  .hero-alarm-strip {
    animation: alarmStripEnter 640ms var(--ease-out) 540ms both;
    will-change: transform, opacity, filter;
  }

  .trust-marks li,
  .hero-signal-grid span {
    animation: chipEnter 520ms var(--ease-out) both;
  }

  .trust-marks li:nth-child(1) {
    animation-delay: 180ms;
  }

  .trust-marks li:nth-child(2) {
    animation-delay: 250ms;
  }

  .trust-marks li:nth-child(3) {
    animation-delay: 320ms;
  }

  .trust-marks li:nth-child(4) {
    animation-delay: 390ms;
  }

  .hero-signal-grid span:nth-child(2) {
    animation-delay: 120ms;
  }

  .hero-signal-grid span:nth-child(3) {
    animation-delay: 220ms;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-heading,
    .showcase-copy,
    .flow-grid article,
    .screen-card,
    .mission-device-wrap,
    .mission-copy,
    .privacy-panel,
    .privacy-grid article,
    .faq-grid details,
    .final-cta img,
    .final-cta h2,
    .final-cta .primary-action {
      animation-name: viewRise;
      animation-duration: 1ms;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: view();
      animation-range: entry 0% cover 30%;
    }
  }
}

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