:root {
  color-scheme: dark;
  --midnight: #010c17;
  --navy: #04182b;
  --ocean: #08243f;
  --steel: #325f8c;
  --blue: #61a3e4;
  --yunilo-blue: #73a9db;
  --mist: #748698;
  --ice: #dcebfa;
  --white-blue: #eef6ff;
  --white: #ffffff;
  --ink: #eef6ff;
  --muted: rgba(220, 235, 250, 0.74);
  --soft: rgba(220, 235, 250, 0.58);
  --line: rgba(115, 169, 219, 0.24);
  --line-strong: rgba(115, 169, 219, 0.62);
  --panel: rgba(4, 24, 43, 0.68);
  --panel-strong: rgba(1, 12, 23, 0.86);
  --glass: rgba(238, 246, 255, 0.08);
  --glow: 0 0 34px rgba(97, 163, 228, 0.46);
  --deep-glow: 0 0 80px rgba(97, 163, 228, 0.34);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --pointer-x: 50vw;
  --pointer-y: 38vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: #00040a;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(520px at var(--pointer-x) var(--pointer-y), rgba(97, 163, 228, 0.2), transparent 72%),
    radial-gradient(900px at 82% 18%, rgba(50, 95, 140, 0.16), transparent 76%),
    radial-gradient(700px at 18% 82%, rgba(97, 163, 228, 0.12), transparent 78%);
  opacity: 0.88;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 430px at 66% 106%, transparent 48%, rgba(97, 163, 228, 0.18) 50%, rgba(97, 163, 228, 0.08) 57%, transparent 66%),
    radial-gradient(900px 360px at -8% -4%, transparent 44%, rgba(115, 169, 219, 0.16) 47%, rgba(97, 163, 228, 0.08) 56%, transparent 66%),
    radial-gradient(980px 360px at 108% 48%, transparent 48%, rgba(97, 163, 228, 0.16) 51%, rgba(97, 163, 228, 0.07) 58%, transparent 68%);
  filter: blur(42px);
  opacity: 0.72;
  animation: backgroundSweep 16s ease-in-out infinite alternate;
}

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

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white-blue);
  color: var(--midnight);
  font-weight: 900;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(1, 12, 23, 0.58);
  border-bottom: 1px solid rgba(115, 169, 219, 0.18);
  box-shadow: 0 0 52px rgba(97, 163, 228, 0.16);
  backdrop-filter: blur(20px);
  transition: padding 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(1, 12, 23, 0.86);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42), var(--glow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
  font-weight: 950;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(115, 169, 219, 0.52);
  border-radius: var(--radius);
  box-shadow: 0 0 28px rgba(97, 163, 228, 0.62);
}

.brand span {
  color: var(--white);
  font-size: 19px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(115, 169, 219, 0.26);
  border-radius: var(--radius);
  background: rgba(238, 246, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(238, 246, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(97, 163, 228, 0.18);
  color: var(--white);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(115, 169, 219, 0.22), 0 0 28px rgba(97, 163, 228, 0.24);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(115, 169, 219, 0.34);
  border-radius: var(--radius);
  background: rgba(238, 246, 255, 0.08);
  color: var(--white);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-button span {
  position: relative;
  margin: auto;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -7px;
}

.menu-button span::after {
  top: 7px;
}

.menu-button.is-open span {
  background: transparent;
}

.menu-button.is-open span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 138px clamp(18px, 7vw, 112px) 90px;
  overflow: hidden;
  color: var(--white);
  background: #00040a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(1100px 420px at 58% 103%, transparent 45%, rgba(97, 163, 228, 0.26) 48%, rgba(97, 163, 228, 0.1) 58%, transparent 68%),
    radial-gradient(820px 330px at -10% -4%, transparent 42%, rgba(115, 169, 219, 0.2) 46%, rgba(97, 163, 228, 0.08) 56%, transparent 66%),
    radial-gradient(820px 420px at 103% 46%, transparent 45%, rgba(97, 163, 228, 0.22) 49%, rgba(220, 235, 250, 0.08) 58%, transparent 68%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.3) 78%, transparent);
  filter: blur(16px);
  animation: lightFloat 14s ease-in-out infinite alternate;
}

.hero-shader-canvas,
.hero-shader-soften {
  position: absolute;
  inset: 0;
}

.hero-shader-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
  background: #00040a;
}

.hero-shader-soften {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(620px at var(--pointer-x) var(--pointer-y), rgba(115, 169, 219, 0.28), transparent 70%),
    linear-gradient(90deg, rgba(0, 4, 10, 0.72) 0%, rgba(0, 4, 10, 0.28) 45%, rgba(0, 4, 10, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 4, 10, 0.42), transparent 50%, rgba(0, 4, 10, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 169, 219, 0.95), transparent);
  box-shadow: 0 0 38px rgba(97, 163, 228, 0.9);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}

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

.hero-visual {
  max-width: 640px;
  justify-self: center;
  padding: 12px;
  border: 1px solid rgba(115, 169, 219, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(238, 246, 255, 0.14), rgba(238, 246, 255, 0.04)),
    rgba(1, 12, 23, 0.56);
  box-shadow: var(--shadow), 0 0 70px rgba(97, 163, 228, 0.28);
  backdrop-filter: blur(22px);
  transform: perspective(1000px) rotateX(0deg) rotateY(-4deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-visual:hover {
  border-color: rgba(220, 235, 250, 0.62);
  box-shadow: var(--shadow), 0 0 110px rgba(97, 163, 228, 0.46);
  transform: perspective(1000px) rotateX(2deg) rotateY(0deg) translateY(-8px);
}

.hero-visual img {
  width: 100%;
  border-radius: 6px;
  filter: saturate(1.12) contrast(1.04);
}

.system-orbit {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.system-orbit span {
  padding: 8px 10px;
  border: 1px solid rgba(115, 169, 219, 0.38);
  border-radius: 999px;
  background: rgba(1, 12, 23, 0.68);
  color: var(--ice);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(97, 163, 228, 0.24);
  backdrop-filter: blur(14px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--yunilo-blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), transparent);
  box-shadow: var(--glow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.94;
  font-weight: 950;
  text-shadow: 0 0 38px rgba(97, 163, 228, 0.38);
}

h1::first-line {
  color: var(--white);
}

h2 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1;
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(238, 246, 255, 0.82);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 650;
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--yunilo-blue) 44%, var(--steel));
  color: var(--midnight);
  box-shadow: 0 20px 48px rgba(97, 163, 228, 0.42), 0 0 34px rgba(115, 169, 219, 0.4);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 26px 70px rgba(97, 163, 228, 0.58), 0 0 54px rgba(220, 235, 250, 0.34);
}

.button.ghost,
.form-fallback {
  border-color: rgba(115, 169, 219, 0.32);
  background: rgba(238, 246, 255, 0.08);
  color: var(--ice);
  backdrop-filter: blur(14px);
}

.button.ghost:hover,
.form-fallback:hover {
  border-color: rgba(220, 235, 250, 0.54);
  box-shadow: var(--glow);
}

.button.is-disabled {
  border-color: rgba(115, 169, 219, 0.18);
  background: linear-gradient(135deg, rgba(97, 163, 228, 0.42), rgba(115, 169, 219, 0.28));
  color: rgba(1, 12, 23, 0.76);
  box-shadow: none;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(115, 169, 219, 0.3);
  border-radius: var(--radius);
  background: rgba(238, 246, 255, 0.08);
  color: rgba(238, 246, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 26px rgba(97, 163, 228, 0.14);
}

.hero-facts strong {
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 30px;
  z-index: 3;
  color: var(--ice);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.intro-band,
.download-section,
.trust-section,
.showcase,
.product-map-section,
.live-section,
.dayboard-section,
.design-lab,
.google-section,
.quick-faq-section,
.blog-section,
.blog-list-section,
.article-shell,
.contact-section {
  padding: clamp(76px, 8vw, 120px) clamp(18px, 6vw, 92px);
  position: relative;
  background: transparent;
  max-width: 100%;
  overflow-x: clip;
}

.intro-band,
.product-map-section,
.contact-section {
  background: transparent;
}

.section-copy {
  max-width: 1040px;
  margin: 0 auto 44px;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.28));
}

.section-copy p:not(.section-kicker),
.showcase-copy p,
.contact-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.62fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(115, 169, 219, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(560px at 85% 18%, rgba(97, 163, 228, 0.18), transparent 72%),
    linear-gradient(145deg, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0.035)),
    rgba(1, 12, 23, 0.7);
  box-shadow: var(--shadow), 0 0 72px rgba(97, 163, 228, 0.18);
  backdrop-filter: blur(20px);
}

.release-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.release-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(115, 169, 219, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(97, 163, 228, 0.16), rgba(238, 246, 255, 0.04)),
    rgba(1, 12, 23, 0.7);
  box-shadow: inset 0 0 0 1px rgba(238, 246, 255, 0.06), 0 0 48px rgba(97, 163, 228, 0.18);
}

.release-card strong {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.release-card p {
  margin-bottom: 4px;
  color: var(--muted);
}

.release-badge {
  width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(115, 169, 219, 0.34);
  border-radius: 999px;
  background: rgba(97, 163, 228, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-grid,
.quick-faq-grid,
.blog-teaser-grid,
.blog-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.blog-teaser-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
}

.blog-list {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 900px);
  max-width: 900px;
  align-items: stretch;
  min-width: 0;
}

.trust-card,
.quick-faq-grid article,
.blog-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(115, 169, 219, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0.035)),
    rgba(1, 12, 23, 0.58);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.42), 0 0 34px rgba(97, 163, 228, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.trust-card::before,
.quick-faq-grid article::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(115, 169, 219, 0.18), transparent 42%, rgba(238, 246, 255, 0.07));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.trust-card:hover,
.quick-faq-grid article:hover,
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--deep-glow);
}

.trust-card:hover::before,
.quick-faq-grid article:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

.trust-card strong,
.trust-card span,
.quick-faq-grid h3,
.quick-faq-grid p,
.blog-card span,
.blog-card h2,
.blog-card h3,
.blog-card p,
.blog-read-link {
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow-wrap: break-word;
}

.trust-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
}

.trust-card span,
.quick-faq-grid p {
  color: var(--muted);
}

.quick-faq-grid h3 {
  font-size: 18px;
}

.blog-card span,
.article-meta,
.blog-back-link {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-card h2,
.blog-card h3 {
  margin-top: 24px;
  font-size: clamp(22px, 2.5vw, 34px);
  max-width: 100%;
  overflow-wrap: break-word;
}

.blog-card h3 {
  font-size: 22px;
}

.blog-card a {
  color: var(--white);
  text-decoration: none;
}

.blog-card p {
  color: var(--muted);
}

.blog-card-featured {
  min-height: 320px;
}

.blog-read-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ice);
  font-weight: 950;
}

.blog-hero {
  min-height: 46svh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 7vw, 112px) 58px;
  max-width: 100%;
  overflow: hidden;
  background:
    radial-gradient(900px at 74% 18%, rgba(97, 163, 228, 0.18), transparent 72%),
    radial-gradient(780px at 12% 90%, rgba(115, 169, 219, 0.12), transparent 70%),
    #00040a;
}

.blog-hero-copy {
  width: 100%;
  max-width: 920px;
  min-width: 0;
}

.blog-hero-copy h1 {
  font-size: clamp(42px, 6.2vw, 76px);
  max-width: 100%;
  overflow-wrap: break-word;
}

.blog-hero-copy p:not(.section-kicker) {
  max-width: 760px;
  overflow-wrap: break-word;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 650;
}

.article-shell {
  padding-top: 150px;
  overflow: hidden;
}

.blog-article {
  width: min(100%, 900px);
  max-width: 900px;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(115, 169, 219, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(680px at 84% 12%, rgba(97, 163, 228, 0.16), transparent 72%),
    linear-gradient(145deg, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0.035)),
    rgba(1, 12, 23, 0.72);
  box-shadow: var(--shadow), 0 0 82px rgba(97, 163, 228, 0.14);
  backdrop-filter: blur(20px);
}

.blog-article h1 {
  font-size: clamp(34px, 5.4vw, 68px);
  overflow-wrap: break-word;
}

.article-meta {
  margin-bottom: 28px;
}

.article-lede {
  color: rgba(238, 246, 255, 0.86);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 650;
}

.article-body {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.article-body h2 {
  margin: 28px 0 0;
  font-size: clamp(26px, 3vw, 40px);
}

.article-body p {
  max-width: 760px;
  overflow-wrap: break-word;
  color: var(--muted);
  font-size: 18px;
}

.faq-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card,
.privacy-steps article,
.contact-form {
  border: 1px solid rgba(115, 169, 219, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0.035)),
    rgba(1, 12, 23, 0.58);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.42), 0 0 34px rgba(97, 163, 228, 0.08);
  backdrop-filter: blur(20px);
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card::before,
.privacy-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(115, 169, 219, 0.18), transparent 42%, rgba(238, 246, 255, 0.07));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.feature-card:hover,
.privacy-steps article:hover {
  transform: translateY(-10px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--deep-glow);
}

.feature-card:hover::before,
.privacy-steps article:hover::before {
  opacity: 1;
}

.feature-number {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 950;
}

.feature-card p,
.privacy-steps span {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: transparent;
}

.module-lab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

.module-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(115, 169, 219, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(238, 246, 255, 0.11), rgba(238, 246, 255, 0.035)),
    rgba(1, 12, 23, 0.66);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.42), 0 0 42px rgba(97, 163, 228, 0.12);
  transform: translateZ(0);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(360px at 76% 18%, rgba(97, 163, 228, 0.24), transparent 68%),
    linear-gradient(120deg, rgba(220, 235, 250, 0.12), transparent 46%);
  opacity: 0.72;
}

.module-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 169, 219, 0.78), transparent);
  box-shadow: 0 0 24px rgba(97, 163, 228, 0.7);
}

.module-card:hover {
  border-color: rgba(220, 235, 250, 0.58);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.56), 0 0 88px rgba(97, 163, 228, 0.28);
  transform: translateY(-10px) rotateX(2deg);
}

.module-card > * {
  position: relative;
  z-index: 2;
}

.module-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(238, 246, 255, 0.76);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.module-topline strong {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(97, 163, 228, 0.78);
}

.calendar-mini,
.task-mini,
.shopping-mini,
.kids-mini {
  display: grid;
  gap: 12px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.calendar-days span {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 9px;
  border: 1px solid rgba(115, 169, 219, 0.22);
  border-radius: 6px;
  background: rgba(238, 246, 255, 0.06);
  color: rgba(238, 246, 255, 0.62);
  font-size: 11px;
  font-weight: 880;
  text-transform: uppercase;
}

.calendar-days strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1;
}

.calendar-days .is-today {
  border-color: rgba(115, 169, 219, 0.62);
  background: rgba(97, 163, 228, 0.2);
  box-shadow: 0 0 30px rgba(97, 163, 228, 0.28);
}

.appointment-list,
.task-mini,
.shopping-mini,
.kids-tasks {
  display: grid;
  gap: 8px;
}

.appointment-list div,
.task-row,
.shopping-item,
.kids-tasks div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(115, 169, 219, 0.18);
  border-radius: 6px;
  background: rgba(238, 246, 255, 0.06);
  color: rgba(238, 246, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
}

.appointment-list time,
.task-row strong,
.shopping-item strong,
.kids-tasks strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-shadow: 0 0 16px rgba(97, 163, 228, 0.5);
}

.check-dot,
.shopping-item span,
.kid-status {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(115, 169, 219, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(97, 163, 228, 0.24);
}

.task-row.is-done .check-dot,
.shopping-item.is-checked span,
.kid-status.is-complete {
  background: var(--blue);
  box-shadow: 0 0 22px rgba(97, 163, 228, 0.74);
}

.task-row.is-done span:nth-child(2),
.shopping-item.is-checked {
  color: rgba(238, 246, 255, 0.54);
}

.task-progress {
  height: 9px;
  margin-top: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(238, 246, 255, 0.08);
}

.task-progress span {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--ice));
  box-shadow: 0 0 24px rgba(97, 163, 228, 0.58);
  animation: modulePulse 3.8s ease-in-out infinite;
}

.shopping-item {
  grid-template-columns: auto 1fr auto;
}

.kids-mini {
  grid-template-columns: 130px 1fr;
  align-items: center;
}

.reward-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(220, 235, 250, 0.9) 0 12%, rgba(97, 163, 228, 0.22) 13% 36%, transparent 37%),
    conic-gradient(var(--blue) 0 72%, rgba(238, 246, 255, 0.08) 72% 100%);
  box-shadow: inset 0 0 34px rgba(1, 12, 23, 0.62), 0 0 42px rgba(97, 163, 228, 0.24);
}

.reward-ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--midnight);
}

.reward-ring span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 38px;
  font-weight: 950;
  text-shadow: 0 0 28px rgba(97, 163, 228, 0.7);
}

.product-map-frame {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(115, 169, 219, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(238, 246, 255, 0.11), rgba(238, 246, 255, 0.04)),
    rgba(1, 12, 23, 0.74);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.56), 0 0 70px rgba(97, 163, 228, 0.24);
  transform: translateZ(0);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.product-map-frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 18px);
  z-index: 2;
  pointer-events: none;
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(1, 12, 23, 0.18), rgba(97, 163, 228, 0.16) 48%, rgba(1, 12, 23, 0.22)),
    radial-gradient(640px at 74% 10%, rgba(115, 169, 219, 0.18), transparent 66%);
  mix-blend-mode: screen;
}

.product-map-frame:hover {
  border-color: rgba(220, 235, 250, 0.54);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.62), 0 0 100px rgba(97, 163, 228, 0.34);
  transform: translateY(-8px);
}

.product-map-frame img,
.product-map-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.04);
}

.product-map-video {
  aspect-ratio: 16 / 9;
  max-height: min(68svh, 620px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(640px at 50% 18%, rgba(97, 163, 228, 0.18), transparent 68%),
    linear-gradient(180deg, rgba(1, 12, 23, 0.96), rgba(0, 4, 10, 0.92));
  filter: saturate(0.82) contrast(1.06) brightness(0.74);
  box-shadow: inset 0 0 0 1px rgba(220, 235, 250, 0.08);
}

.dayboard-section {
  background: transparent;
}

.dayboard-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.64fr) minmax(320px, 1.2fr) minmax(220px, 0.58fr);
  gap: 14px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(115, 169, 219, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(680px at 72% 12%, rgba(97, 163, 228, 0.2), transparent 70%),
    linear-gradient(145deg, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0.035)),
    rgba(1, 12, 23, 0.72);
  box-shadow: var(--shadow), 0 0 82px rgba(97, 163, 228, 0.18);
  backdrop-filter: blur(20px);
}

.dayboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(115, 169, 219, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(220, 235, 250, 0.045) 0 1px, transparent 1px 86px);
  opacity: 0.62;
}

.dayboard-status,
.dayboard-lane,
.dayboard-side {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(115, 169, 219, 0.22);
  border-radius: var(--radius);
  background: rgba(1, 12, 23, 0.62);
  box-shadow: inset 0 0 0 1px rgba(238, 246, 255, 0.04), 0 0 34px rgba(97, 163, 228, 0.1);
}

.dayboard-status {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
}

.dayboard-status span,
.lane-head span,
.dayboard-side span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dayboard-status strong {
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.dayboard-status p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.dayboard-lane {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.lane-head,
.signal-row,
.dayboard-side div {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(115, 169, 219, 0.18);
  border-radius: 6px;
  background: rgba(238, 246, 255, 0.065);
}

.lane-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
}

.lane-head strong {
  color: var(--ice);
  text-shadow: 0 0 18px rgba(97, 163, 228, 0.55);
}

.signal-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  padding: 13px 14px;
  color: rgba(238, 246, 255, 0.86);
  font-weight: 820;
}

.signal-row time,
.signal-row strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-shadow: 0 0 16px rgba(97, 163, 228, 0.52);
}

.signal-row span {
  min-width: 0;
}

.signal-calendar {
  box-shadow: inset 3px 0 0 rgba(97, 163, 228, 0.72);
}

.signal-task {
  box-shadow: inset 3px 0 0 rgba(220, 235, 250, 0.46);
}

.signal-shopping {
  box-shadow: inset 3px 0 0 rgba(116, 209, 177, 0.56);
}

.dayboard-side {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.dayboard-side div {
  align-content: center;
  min-height: 118px;
  padding: 16px;
}

.dayboard-side strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.live-section {
  background: transparent;
}

.app-carousel {
  position: relative;
  max-width: min(760px, 100%);
  min-height: clamp(320px, 34vw, 430px);
  margin: 0 auto;
  overflow: visible;
  padding: 18px 0 26px;
  perspective: 1100px;
}

.app-carousel::before,
.app-carousel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.app-carousel::before {
  inset: 7% 3% 10%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(97, 163, 228, 0.16), rgba(97, 163, 228, 0.06) 42%, transparent 72%);
  filter: blur(34px);
}

.app-carousel::after {
  inset: auto 10% 4%;
  z-index: 4;
  height: 90px;
  background: radial-gradient(ellipse, rgba(0, 4, 10, 0.76), transparent 72%);
  filter: blur(24px);
}

.carousel-track {
  position: absolute;
  inset: clamp(18px, 3vw, 36px) 0 0;
  z-index: 2;
  transform-style: preserve-3d;
  animation: carouselOrbit 34s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.app-carousel:hover .carousel-track,
.app-carousel:focus-within .carousel-track {
  animation-play-state: running;
}

.carousel-card {
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(170px, 22vw, 250px);
  overflow: hidden;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(115, 169, 219, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(238, 246, 255, 0.1), rgba(238, 246, 255, 0.03)),
    rgba(1, 12, 23, 0.78);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.54), 0 0 56px rgba(97, 163, 228, 0.16);
  transform: translate(-50%, -50%) rotateY(var(--angle)) translateZ(clamp(170px, 24vw, 290px));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.carousel-card:nth-child(1) {
  --angle: 0deg;
}

.carousel-card:nth-child(2) {
  --angle: 60deg;
}

.carousel-card:nth-child(3) {
  --angle: 120deg;
}

.carousel-card:nth-child(4) {
  --angle: 180deg;
}

.carousel-card:nth-child(5) {
  --angle: 240deg;
}

.carousel-card:nth-child(6) {
  --angle: 300deg;
}

.carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(1, 12, 23, 0.08), rgba(97, 163, 228, 0.16) 48%, rgba(1, 12, 23, 0.22)),
    radial-gradient(440px at 74% 18%, rgba(97, 163, 228, 0.18), transparent 68%);
  mix-blend-mode: screen;
}

.carousel-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 3;
  pointer-events: none;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(220, 235, 250, 0.1), inset 0 0 42px rgba(1, 12, 23, 0.3);
}

.carousel-card img {
  width: 100%;
  height: clamp(210px, 27vw, 310px);
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(1, 12, 23, 0.92), rgba(8, 36, 63, 0.62));
  filter: saturate(0.96) contrast(1.04) brightness(0.84);
}

.carousel-card figcaption {
  position: relative;
  z-index: 4;
  display: inline-flex;
  margin-top: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(115, 169, 219, 0.22);
  border-radius: 999px;
  background: rgba(97, 163, 228, 0.14);
  color: rgba(238, 246, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.carousel-card:hover {
  border-color: rgba(220, 235, 250, 0.54);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.62), var(--deep-glow);
}

.carousel-card-muted img {
  filter: saturate(0.72) hue-rotate(170deg) contrast(1.04) brightness(0.72);
}

.carousel-card-muted::before {
  background:
    linear-gradient(120deg, rgba(1, 12, 23, 0.28), rgba(97, 163, 228, 0.28) 48%, rgba(1, 12, 23, 0.3)),
    radial-gradient(440px at 74% 18%, rgba(115, 169, 219, 0.24), transparent 68%);
  opacity: 0.9;
}

.design-lab {
  background: transparent;
}

.ambient-card {
  position: relative;
  min-height: clamp(390px, 46vw, 560px);
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(115, 169, 219, 0.34);
  border-radius: var(--radius);
  background: var(--midnight);
  box-shadow: var(--shadow), 0 0 80px rgba(97, 163, 228, 0.28);
}

.ambient-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 6px;
  border: 1px solid rgba(238, 246, 255, 0.08);
}

.ambient-video,
.ambient-overlay {
  position: absolute;
  inset: 0;
}

.ambient-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(0.72) contrast(1.08);
  transform: scale(1.02);
}

.ambient-overlay {
  background:
    linear-gradient(90deg, rgba(1, 12, 23, 0.92), rgba(4, 24, 43, 0.66) 50%, rgba(1, 12, 23, 0.2)),
    linear-gradient(155deg, rgba(97, 163, 228, 0.24), transparent 52%);
}

.ambient-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: clamp(28px, 6vw, 58px);
  color: var(--white);
}

.ambient-content h2 {
  color: var(--white);
}

.ambient-content p:not(.section-kicker) {
  color: rgba(238, 246, 255, 0.82);
}

.design-principles {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(370px, calc(100% - 36px));
}

.design-principles article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(220, 235, 250, 0.24);
  border-radius: var(--radius);
  background: rgba(238, 246, 255, 0.1);
  color: var(--white);
  box-shadow: 0 0 34px rgba(97, 163, 228, 0.14);
  backdrop-filter: blur(16px);
}

.design-principles strong {
  color: var(--blue);
  font-weight: 950;
}

.design-principles span {
  color: rgba(238, 246, 255, 0.84);
  font-weight: 850;
}

.google-section {
  background: transparent;
  color: var(--white);
}

.section-copy.narrow {
  max-width: 980px;
}

.privacy-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.privacy-steps article {
  position: relative;
  min-height: 160px;
  padding: 24px;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.privacy-steps strong {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 22px;
}

.privacy-steps span {
  color: rgba(238, 246, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.mail-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ice);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ice);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(115, 169, 219, 0.26);
  border-radius: var(--radius);
  background: rgba(238, 246, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: rgba(238, 246, 255, 0.12);
  box-shadow: var(--glow);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.mail-link:focus-visible,
.site-footer a:focus-visible,
.blog-card a:focus-visible,
.scroll-cue:focus-visible {
  outline: 2px solid rgba(220, 235, 250, 0.9);
  outline-offset: 3px;
}

.contact-hint {
  margin: -2px 0 0;
  color: rgba(220, 235, 250, 0.7);
  font-size: 13px;
  font-weight: 760;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 6vw, 92px);
  border-top: 1px solid rgba(115, 169, 219, 0.18);
  background: var(--midnight);
  color: rgba(238, 246, 255, 0.74);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  text-decoration: none;
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(0.972);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes backgroundSweep {
  from {
    transform: translateX(-3%) translateY(-1%) scale(1);
    opacity: 0.54;
  }
  to {
    transform: translateX(3%) translateY(1%) scale(1.06);
    opacity: 0.92;
  }
}

@keyframes lightFloat {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: 0.66;
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.045);
    opacity: 0.98;
  }
}

@keyframes modulePulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.72;
  }
  50% {
    transform: translateX(5%);
    opacity: 1;
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes carouselOrbit {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 76px;
    display: grid;
    gap: 4px;
    padding: 10px;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    background: rgba(1, 12, 23, 0.94);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .feature-grid,
  .privacy-steps,
  .release-panel,
  .trust-grid,
  .quick-faq-grid,
  .blog-teaser-grid,
  .blog-list,
  .showcase,
  .hero,
  .module-lab,
  .dayboard-shell,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
    transform: none;
  }

  .release-actions {
    display: grid;
  }

  .ambient-card {
    min-height: 660px;
  }

  .dayboard-status {
    min-height: 190px;
  }

  .signal-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .signal-row strong {
    grid-column: 2;
  }

  .design-principles {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 clamp(18px, 6vw, 42px) clamp(18px, 6vw, 42px);
  }

  .carousel-card {
    width: min(56vw, 240px);
    transform: translate(-50%, -50%) rotateY(var(--angle)) translateZ(min(38vw, 270px));
  }
}

@media (max-width: 760px) {
  .live-section {
    overflow: hidden;
  }

  .app-carousel {
    max-width: 100%;
    min-height: 430px;
    overflow: hidden;
    perspective: 900px;
  }

  .carousel-card {
    width: min(62vw, 220px);
    transform: translate(-50%, -50%) rotateY(var(--angle)) translateZ(220px);
  }

  .carousel-card img {
    height: 270px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand span {
    font-size: 26px;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
    gap: 30px;
    padding: 118px 18px 72px;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 330px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 360px);
    margin-top: 26px;
  }

  .hero-facts span {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    white-space: normal;
  }

  .hero-visual {
    padding: 8px;
  }

  .system-orbit {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 17vw, 76px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .intro-band,
  .download-section,
  .trust-section,
  .showcase,
  .product-map-section,
  .live-section,
  .dayboard-section,
  .design-lab,
  .google-section,
  .quick-faq-section,
  .blog-section,
  .blog-list-section,
  .article-shell,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .blog-hero {
    min-height: auto;
    padding: 108px 18px 42px;
  }

  .blog-hero-copy h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .blog-hero-copy p:not(.section-kicker) {
    font-size: 17px;
  }

  .blog-list,
  .blog-teaser-grid {
    width: 100%;
  }

  .article-shell {
    padding-top: 118px;
  }

  .blog-card,
  .blog-card-featured {
    min-height: 220px;
  }

  .blog-article {
    padding: 22px;
  }

  .feature-card {
    min-height: 210px;
  }

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

  .dayboard-shell {
    padding: 14px;
  }

  .dayboard-status,
  .dayboard-lane,
  .dayboard-side {
    padding: 16px;
  }

  .dayboard-side div {
    min-height: 96px;
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-shader-canvas {
    pointer-events: none;
  }

  .carousel-track {
    animation-play-state: running;
    animation-duration: 42s;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
