:root {
  color-scheme: light dark;
  --ink: #102622;
  --muted: #536761;
  --paper: #f7f4ec;
  --paper-rgb: 247, 244, 236;
  --surface: #fffdf8;
  --surface-2: #e8eee8;
  --line: rgba(16, 38, 34, 0.16);
  --deep: #0d3a36;
  --deep-2: #082924;
  --accent: #f3a51f;
  --accent-soft: #ffd982;
  --lime: #c8d97e;
  --white: #ffffff;
  --focus: #1167c4;
  --shadow-sm: 0 12px 32px rgba(13, 58, 54, 0.09);
  --shadow-lg: 0 35px 90px rgba(13, 58, 54, 0.2);
  --radius-sm: 0.9rem;
  --radius-md: 1.6rem;
  --radius-lg: clamp(2rem, 5vw, 4.5rem);
  --max: 82rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Conversion-focused marketing additions */
.header-download,
.mobile-download a {
    align-items: center;
    background: var(--accent, #f5b842);
    border-radius: 999px;
    color: #102f2c;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 2.75rem;
    padding: .65rem 1rem;
    text-decoration: none;
}

.hero__trust {
    font-size: .9rem;
    font-weight: 700;
    margin-top: 1rem;
}

.trust-strip {
    background: #082f2c;
    color: #fff;
    padding: 1rem 0;
}

.trust-strip__grid {
    display: grid;
    gap: .75rem 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip p {
    align-items: center;
    display: flex;
    font-size: .92rem;
    font-weight: 700;
    gap: .6rem;
    margin: 0;
}

.trust-strip p span {
    color: #f5c15c;
    font-size: 1.2rem;
}

.use-cases {
    background: var(--surface-2, #f5f1e8);
}

.outcome-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}

.outcome-card {
    background: var(--surface, #fff);
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: 1.5rem;
    min-height: 16rem;
    padding: 1.75rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.outcome-card:hover {
    box-shadow: 0 1.25rem 2.5rem rgb(8 47 44 / 12%);
    transform: translateY(-.3rem);
}

.outcome-card__number {
    color: var(--accent, #b56b00);
    display: block;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 3.5rem;
}

.outcome-card h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    margin-bottom: .65rem;
}

.comparison-section {
    background: #082f2c;
    color: #fff;
}

.comparison-layout {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 6vw, 6rem);
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.comparison-layout .section-heading {
    position: sticky;
    top: 7rem;
}

.comparison-table-wrap {
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 1.5rem;
    overflow: auto;
}

.comparison-table {
    border-collapse: collapse;
    min-width: 38rem;
    width: 100%;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    padding: 1.1rem;
    text-align: left;
}

.comparison-table thead th {
    background: rgb(255 255 255 / 9%);
    font-size: .86rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.comparison-table tbody th {
    font-weight: 650;
}

.comparison-table td strong {
    color: #ffd784;
}

.faq-section {
    background: var(--surface-2, #f5f1e8);
}

.faq-layout {
    display: grid;
    gap: clamp(2rem, 6vw, 6rem);
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
}

.faq-list details {
    border-bottom: 1px solid color-mix(in srgb, currentColor 20%, transparent);
    padding: 1.25rem 0;
}

.faq-list summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    gap: 1rem;
    justify-content: space-between;
    list-style: none;
    min-height: 3rem;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list summary span { transition: transform .2s ease; }
.faq-list details p { max-width: 65ch; padding-right: 2rem; }

.mobile-download { display: none; }

@media (max-width: 70rem) {
    .header-download { display: none; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .outcome-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 48rem) {
    body[data-page="home"] { padding-bottom: 5rem; }
    .trust-strip__grid,
    .outcome-grid,
    .comparison-layout,
    .faq-layout { grid-template-columns: 1fr; }
    .outcome-card { min-height: 13rem; }
    .comparison-layout .section-heading { position: static; }
    .mobile-download {
        align-items: center;
        background: #082f2c;
        bottom: 0;
        box-shadow: 0 -.75rem 2rem rgb(0 0 0 / 18%);
        color: #fff;
        display: flex;
        gap: 1rem;
        justify-content: space-between;
        left: 0;
        padding: .7rem max(1rem, env(safe-area-inset-left)) calc(.7rem + env(safe-area-inset-bottom));
        position: fixed;
        right: 0;
        z-index: 100;
    }
    .mobile-download span { font-size: .84rem; font-weight: 750; }
    .mobile-download a { flex: 0 0 auto; min-height: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
    .outcome-card,
    .faq-list summary span { transition: none; }
    .outcome-card:hover { transform: none; }
}

html[data-theme="dark"] {
  --ink: #eff8f3;
  --muted: #b0c4bc;
  --paper: #071b18;
  --paper-rgb: 7, 27, 24;
  --surface: #0d2b27;
  --surface-2: #143a34;
  --line: rgba(234, 247, 240, 0.18);
  --deep: #c8d97e;
  --deep-2: #041512;
  --accent: #ffc75f;
  --accent-soft: #80570c;
  --white: #0a211e;
  --focus: #7db9ff;
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.38);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] {
    --ink: #eff8f3;
    --muted: #b0c4bc;
    --paper: #071b18;
    --paper-rgb: 7, 27, 24;
    --surface: #0d2b27;
    --surface-2: #143a34;
    --line: rgba(234, 247, 240, 0.18);
    --deep: #c8d97e;
    --deep-2: #041512;
    --accent: #ffc75f;
    --accent-soft: #80570c;
    --white: #0a211e;
    --focus: #7db9ff;
    --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.38);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  line-height: 1.55;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 0%, rgba(200, 217, 126, 0.14), transparent 26rem),
    var(--paper);
  overflow-wrap: anywhere;
  opacity: 1;
}

.js body {
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js body.is-ready {
  opacity: 1;
  transform: none;
}

body,
button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

.wrap {
  width: min(var(--max), calc(100% - clamp(2rem, 6vw, 7rem)));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--deep);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(var(--paper-rgb), 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header[data-scrolled] {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(13, 58, 54, 0.06);
}

.site-header__inner {
  width: min(var(--max), calc(100% - clamp(2rem, 5vw, 6rem)));
  min-height: 5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1.15rem;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--deep);
  box-shadow: inset 0 0 0 0.35rem rgba(255, 255, 255, 0.12);
}

.brand__lens {
  width: 1rem;
  height: 1rem;
  border: 0.18rem solid var(--white);
  border-radius: 50%;
}

.brand__lens::after {
  content: "";
  position: absolute;
  width: 0.55rem;
  height: 0.18rem;
  margin: 0.72rem 0 0 0.58rem;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-header__actions,
.primary-nav ul,
.language-links {
  display: flex;
  align-items: center;
}

.site-header__actions {
  gap: 0.55rem;
}

.primary-nav ul,
.footer-links {
  gap: 0.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--ink);
}

.language-links {
  margin-left: 0.4rem;
  padding-left: 0.4rem;
  border-left: 1px solid var(--line);
}

.language-links a[aria-current="page"] {
  background: var(--deep);
  color: var(--white);
}

.theme-toggle,
.nav-toggle,
.carousel-button {
  display: inline-grid;
  place-items: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.theme-toggle:hover,
.nav-toggle:hover,
.carousel-button:hover {
  transform: translateY(-2px);
  background: var(--surface-2);
}

.theme-toggle {
  position: relative;
  overflow: hidden;
}

.theme-toggle__sun,
.theme-toggle__moon {
  position: absolute;
  transition: transform 0.45s var(--ease), opacity 0.3s ease;
}

.theme-toggle__moon {
  opacity: 0;
  transform: translateY(1.5rem) rotate(45deg);
}

html[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: translateY(-1.5rem) rotate(-45deg);
}

html[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(58rem, 100svh);
  padding: 8rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  width: min(var(--max), calc(100% - clamp(2rem, 6vw, 7rem)));
  min-height: calc(100svh - 13rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.45rem, 8.4vw, 7.8rem);
  font-weight: 650;
  line-height: 0.87;
  letter-spacing: -0.075em;
}

.lede {
  max-width: 57ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero .lede {
  margin: 2rem 0;
}

.hero__actions,
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--deep);
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, background 0.28s ease;
}

.button:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(13, 58, 54, 0.2);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.button--light {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--ink);
}

.button--light:hover {
  color: var(--ink);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.availability-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.availability-row p {
  margin: 0;
}

.availability-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #54a960;
  box-shadow: 0 0 0 0.3rem rgba(84, 169, 96, 0.14);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38rem;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero__halo {
  position: absolute;
  width: min(38vw, 30rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2.5rem rgba(243, 165, 31, 0.12);
}

.device-frame {
  position: relative;
  z-index: 2;
  width: min(19rem, 75vw);
  padding: 0.65rem;
  border-radius: 2.8rem;
  background: #081d1a;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}

.device-frame img {
  display: block;
  width: 100%;
  border-radius: 2.2rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 7.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  color: #102622;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.floating-card span {
  font-size: 1.35rem;
  font-weight: 800;
}

.floating-card small {
  color: #536761;
}

.floating-card--top {
  top: 18%;
  right: -4%;
}

.floating-card--bottom {
  bottom: 17%;
  left: -5%;
}

.sound-wave {
  width: 3rem;
  height: 1.1rem;
  background: repeating-linear-gradient(90deg, var(--deep) 0 0.16rem, transparent 0.16rem 0.42rem);
  mask: linear-gradient(175deg, transparent 5%, #000 38% 62%, transparent 95%);
}

.hero__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero__orb--one {
  top: 12%;
  left: -7rem;
  width: 15rem;
  height: 15rem;
  background: rgba(200, 217, 126, 0.48);
}

.hero__orb--two {
  right: -8rem;
  bottom: -6rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid var(--line);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(var(--muted), transparent);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker__track span {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 4.2rem;
  padding-inline: 1.6rem;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticker__track i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section,
.page-hero,
.cta-band {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 9vw, 9rem);
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2,
.gallery-heading h2,
.feature-story h2,
.cta-band h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.95;
}

.section-heading > p:last-child,
.intro-grid__body {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.intro-grid__body {
  margin: 0;
}

.gallery-section {
  overflow: hidden;
  background: var(--surface-2);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.carousel-controls {
  display: flex;
  gap: 0.65rem;
}

.carousel-button {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.15rem;
}

.carousel {
  outline: none;
}

.carousel__track {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2rem);
  overflow-x: auto;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2)) 2.2rem;
  scroll-padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track[data-dragging] {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.gallery-card {
  flex: 0 0 min(70rem, calc(100vw - clamp(2rem, 10vw, 10rem)));
  min-height: min(42rem, 72vh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--deep);
  color: var(--white);
  scroll-snap-align: center;
  box-shadow: var(--shadow-sm);
}

.gallery-card--amber {
  background: var(--accent);
  color: #172622;
}

.gallery-card--light {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.gallery-card__index {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.gallery-card h3 {
  max-width: 10ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
}

.gallery-card__copy > p,
.gallery-card li {
  max-width: 46rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.gallery-card__media {
  width: min(18rem, 100%);
  justify-self: center;
  padding: 0.55rem;
  border-radius: 2.5rem;
  background: #061916;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
  transform: rotate(2deg);
}

.gallery-card__media img {
  display: block;
  width: 100%;
  border-radius: 2rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 0.65rem;
  color: var(--accent-soft);
  font-weight: 900;
}

.gallery-card--amber .check-list li::before {
  color: var(--deep-2);
}

.platform-badge {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-story {
  position: relative;
  background: var(--deep-2);
  color: #fff;
}

.feature-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.feature-story__sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.feature-story .lede,
.command-card dd {
  color: #bfd0ca;
}

.voice-orbit {
  position: relative;
  width: min(18rem, 70vw);
  aspect-ratio: 1;
  margin: 3rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.voice-orbit::before,
.voice-orbit::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.voice-orbit::after {
  inset: 33%;
  background: var(--accent);
  box-shadow: 0 0 4rem rgba(243, 165, 31, 0.35);
}

.voice-orbit span,
.voice-orbit i,
.voice-orbit b {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 0.2rem;
  border-radius: 999px;
  background: #fff;
  transform: translateY(-50%);
  animation: voice 1.1s ease-in-out infinite alternate;
}

.voice-orbit span { left: 43%; height: 2rem; }
.voice-orbit i { left: 50%; height: 3.4rem; animation-delay: -0.3s; }
.voice-orbit b { left: 57%; height: 1.5rem; animation-delay: -0.55s; }

@keyframes voice {
  to { transform: translateY(-50%) scaleY(0.45); }
}

.command-stack {
  display: grid;
  gap: 1.5rem;
}

.command-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.command-card--offset {
  transform: translateX(2rem);
}

.command-card__language {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #172622;
  font-weight: 900;
}

.command-card dl {
  margin: 0;
}

.command-card dt {
  margin-top: 1.3rem;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 700;
}

.command-card dd {
  margin: 0.25rem 0 0;
}

.bento-section {
  background: var(--paper);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.bento-card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.bento-card--1 {
  grid-column: span 7;
  background: var(--accent-soft);
  color: #172622;
}

.bento-card--2 {
  grid-column: span 5;
}

.bento-card--3,
.bento-card--4 {
  min-height: 18rem;
}

.bento-card--privacy {
  grid-column: span 8;
  background: var(--deep);
  color: var(--white);
}

.bento-card__icon {
  font-size: 2.5rem;
}

.bento-card > p {
  max-width: 32rem;
  margin: 2rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.28;
}

.bento-card h3 {
  max-width: 17ch;
  margin: 0.6rem 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.bento-card--privacy p {
  color: rgba(255, 255, 255, 0.75);
}

.text-link {
  align-self: flex-start;
  color: inherit;
  font-weight: 800;
}

.platform-section {
  background: var(--surface-2);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.platform-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
}

.platform-card h3 {
  max-width: 9ch;
  margin: 1.4rem 0;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 0.95;
}

.platform-card--ios {
  background: var(--deep);
  color: var(--white);
}

.platform-card--ios p {
  color: rgba(255, 255, 255, 0.78);
}

.platform-card--android {
  border: 1px solid var(--line);
  background: var(--surface);
}

.note {
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: #f2a31a;
  color: #142621;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  justify-content: space-between;
}

.cta-band__inner > div:first-child {
  max-width: 50rem;
}

.cta-band h2 {
  max-width: 11ch;
}

.cta-band__orb {
  position: absolute;
  top: -12rem;
  right: -6rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(20, 38, 33, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.08), 0 0 0 8rem rgba(255, 255, 255, 0.05);
}

.page-hero {
  position: relative;
  padding-top: 11rem;
  overflow: hidden;
  background: var(--surface-2);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.32;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.page-hero .lede {
  max-width: 55rem;
  margin-top: 2rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  position: relative;
  min-height: 17rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.info-card__number {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.info-card h2 {
  max-width: 18ch;
  margin: 0 0 1.2rem;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.info-card p,
.policy-section p {
  color: var(--muted);
}

.section--soft {
  background: var(--surface-2);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-panel > div {
  max-width: 48rem;
}

.update-pill {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.83rem;
}

.policy-grid {
  max-width: 68rem;
}

.policy-section {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.policy-section__number {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.policy-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.policy-section p {
  max-width: 50rem;
  font-size: 1.05rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #061916;
  color: #f2f8f5;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - clamp(2rem, 6vw, 7rem)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.65fr) minmax(13rem, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.site-footer h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.site-footer__brand p:last-child {
  max-width: 32rem;
  color: #b9ccc5;
}

.footer-links {
  display: grid;
}

.footer-links a,
.site-footer__contact a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  color: #eaf5ef;
}

.site-footer__contact p {
  margin-bottom: 0.3rem;
  color: #91aaa1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__glow {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: rgba(243, 165, 31, 0.18);
  filter: blur(2rem);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 68rem) {
  .primary-nav {
    position: fixed;
    inset: 5rem 1rem auto;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
  }

  .primary-nav[data-open] {
    display: block;
  }

  .primary-nav ul {
    display: grid;
  }

  .primary-nav a {
    width: 100%;
    min-height: 3rem;
    padding-inline: 1rem;
  }

  .language-links {
    display: flex !important;
    margin: 0.5rem 0 0;
    padding: 0.5rem 0 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.3s var(--ease);
  }

  .nav-toggle__icon {
    position: relative;
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle__icon::before { top: -0.35rem; }
  .nav-toggle__icon::after { top: 0.35rem; }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 52rem) {
  .hero__inner,
  .intro-grid,
  .gallery-card,
  .feature-story__grid,
  .platform-grid,
  .support-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 15vw, 6rem);
  }

  .hero__visual {
    min-height: 33rem;
  }

  .scroll-cue {
    display: none;
  }

  .gallery-heading {
    align-items: flex-end;
  }

  .gallery-card {
    min-height: auto;
  }

  .gallery-card__media {
    max-height: 27rem;
    overflow: hidden;
  }

  .feature-story__sticky {
    position: static;
  }

  .command-card--offset {
    transform: none;
  }

  .bento-card,
  .bento-card--1,
  .bento-card--2,
  .bento-card--privacy {
    grid-column: 1 / -1;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 36rem) {
  .site-header__inner {
    min-height: 4.5rem;
  }

  .brand__text {
    font-size: 1rem;
  }

  .theme-toggle,
  .nav-toggle {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .hero__actions,
  .cta-band__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .floating-card--top {
    right: 0;
  }

  .floating-card--bottom {
    left: 0;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-card {
    flex-basis: calc(100vw - 2rem);
    padding: 1.5rem;
    border-radius: 1.8rem;
  }

  .gallery-card h3 {
    font-size: 2.5rem;
  }

  .policy-section {
    grid-template-columns: 1fr;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: currentColor;
  }

  .button,
  .info-card,
  .bento-card,
  .platform-card,
  .gallery-card {
    border-width: 2px;
  }

  .muted,
  .note,
  .lede,
  .info-card p,
  .policy-section p {
    color: currentColor;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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

  [data-parallax] {
    transform: none !important;
  }
}
.camera-quality-section {
  overflow: hidden;
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, var(--accent)), var(--background));
}

.camera-quality-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .9fr) minmax(20rem, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.camera-quality-visual {
  position: relative;
  min-height: clamp(22rem, 50vw, 36rem);
  border-radius: 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.24) 0 4%, transparent 4.5%),
    radial-gradient(circle at 48% 48%, #f7ca63 0 9%, #cf7d28 23%, #4e2b22 45%, #151515 72%);
  box-shadow: 0 2rem 5rem rgba(19, 17, 15, .22);
}

.focus-reticle,
.focus-reticle::before,
.focus-reticle::after {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.focus-reticle {
  width: 11rem;
  height: 11rem;
  border: .18rem solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 0 0 .08rem rgba(0,0,0,.35), 0 0 3rem rgba(255,255,255,.16);
}

.focus-reticle::before,
.focus-reticle::after {
  content: "";
  background: rgba(255,255,255,.9);
}

.focus-reticle::before { width: 15rem; height: .12rem; }
.focus-reticle::after { width: .12rem; height: 15rem; }

.camera-quality-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(12,12,12,.7);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.camera-quality-list { margin-block: 1.75rem; }

@media (max-width: 760px) {
  .camera-quality-layout { grid-template-columns: 1fr; }
  .camera-quality-visual { min-height: 24rem; }
}

@media (prefers-reduced-motion: reduce) {
  .focus-reticle { transition: none; }
}
