:root {
  --bg: #f6f8fc;
  --bg-strong: #ffffff;
  --ink: #080713;
  --muted: #5d6072;
  --soft: #e8edf6;
  --soft-2: #dce4f1;
  --accent: #41f6be;
  --accent-ink: #031d17;
  --accent-secondary: #7a3cff;
  --accent-blue: #50c0ff;
  --accent-gradient: linear-gradient(135deg, #41f6be 0%, #7a3cff 50%, #50c0ff 100%);
  --line: rgba(8, 7, 19, 0.1);
  --shadow: 0 26px 80px rgba(16, 28, 54, 0.14);
  --page-wash: linear-gradient(180deg, #ffffff 0%, #f6f8fc 44%, #e9eff8 100%);
  --star-color: rgba(78, 91, 118, 0.14);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-soft: rgba(232, 238, 248, 0.72);
  --surface-inset: rgba(255, 255, 255, 0.68);
  --control-bg: rgba(255, 255, 255, 0.86);
  --button-bg: #090713;
  --button-ink: #ffffff;
  --feature-bg: #090211;
  --feature-ink: #ffffff;
  --feature-muted: rgba(237, 232, 246, 0.72);
  --header-bg: rgba(246, 248, 252, 0.22);
  --header-bg-solid: rgba(246, 248, 252, 0.38);
  --nav-glass: rgba(255, 255, 255, 0.32);
  --mobile-menu-bg: rgba(250, 252, 255, 0.96);
  --mobile-menu-line: rgba(8, 7, 19, 0.14);
  --device-bg: #0b0914;
  --device-border: #07050e;
  --radius: 8px;
  --radius-lg: 8px;
  --shell: min(1160px, calc(100vw - 40px));
  color-scheme: light dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #090211;
    --bg-strong: #110720;
    --ink: #ffffff;
    --muted: #c5bfd2;
    --soft: #1a1029;
    --soft-2: #291848;
    --accent: #41f6be;
    --accent-ink: #031d17;
    --accent-secondary: #8a4bff;
    --accent-blue: #58c7ff;
    --accent-gradient: linear-gradient(135deg, #41f6be 0%, #8a4bff 50%, #58c7ff 100%);
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
    --page-wash:
      linear-gradient(110deg, rgba(12, 3, 22, 0.98) 0%, rgba(9, 2, 17, 0.98) 42%, rgba(21, 9, 48, 0.96) 100%),
      linear-gradient(180deg, rgba(38, 113, 152, 0.2), transparent 42%);
    --star-color: rgba(255, 255, 255, 0.16);
    --surface: rgba(18, 9, 33, 0.76);
    --surface-solid: #120921;
    --surface-soft: rgba(24, 10, 46, 0.72);
    --surface-inset: rgba(255, 255, 255, 0.065);
    --control-bg: rgba(21, 11, 38, 0.92);
    --button-bg: #ffffff;
    --button-ink: #090211;
    --feature-bg: #090211;
    --feature-ink: #f4f4ec;
    --feature-muted: rgba(237, 232, 246, 0.72);
    --header-bg: rgba(9, 2, 17, 0.22);
    --header-bg-solid: rgba(9, 2, 17, 0.38);
    --nav-glass: rgba(255, 255, 255, 0.07);
    --mobile-menu-bg: rgba(13, 5, 25, 0.96);
    --mobile-menu-line: rgba(255, 255, 255, 0.16);
    --device-bg: #080713;
    --device-border: #050309;
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f8fc;
  --bg-strong: #ffffff;
  --ink: #080713;
  --muted: #5d6072;
  --soft: #e8edf6;
  --soft-2: #dce4f1;
  --accent: #41f6be;
  --accent-ink: #031d17;
  --accent-secondary: #7a3cff;
  --accent-blue: #50c0ff;
  --accent-gradient: linear-gradient(135deg, #41f6be 0%, #7a3cff 50%, #50c0ff 100%);
  --line: rgba(8, 7, 19, 0.1);
  --shadow: 0 26px 80px rgba(16, 28, 54, 0.14);
  --page-wash: linear-gradient(180deg, #ffffff 0%, #f6f8fc 44%, #e9eff8 100%);
  --star-color: rgba(78, 91, 118, 0.14);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-soft: rgba(232, 238, 248, 0.72);
  --surface-inset: rgba(255, 255, 255, 0.68);
  --control-bg: rgba(255, 255, 255, 0.86);
  --button-bg: #090713;
  --button-ink: #ffffff;
  --feature-bg: #090211;
  --feature-ink: #ffffff;
  --feature-muted: rgba(237, 232, 246, 0.72);
  --header-bg: rgba(246, 248, 252, 0.22);
  --header-bg-solid: rgba(246, 248, 252, 0.38);
  --nav-glass: rgba(255, 255, 255, 0.32);
  --mobile-menu-bg: rgba(250, 252, 255, 0.96);
  --mobile-menu-line: rgba(8, 7, 19, 0.14);
  --device-bg: #0b0914;
  --device-border: #07050e;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090211;
  --bg-strong: #110720;
  --ink: #ffffff;
  --muted: #c5bfd2;
  --soft: #1a1029;
  --soft-2: #291848;
  --accent: #41f6be;
  --accent-ink: #031d17;
  --accent-secondary: #8a4bff;
  --accent-blue: #58c7ff;
  --accent-gradient: linear-gradient(135deg, #41f6be 0%, #8a4bff 50%, #58c7ff 100%);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --page-wash:
    linear-gradient(110deg, rgba(12, 3, 22, 0.98) 0%, rgba(9, 2, 17, 0.98) 42%, rgba(21, 9, 48, 0.96) 100%),
    linear-gradient(180deg, rgba(38, 113, 152, 0.2), transparent 42%);
  --star-color: rgba(255, 255, 255, 0.16);
  --surface: rgba(18, 9, 33, 0.76);
  --surface-solid: #120921;
  --surface-soft: rgba(24, 10, 46, 0.72);
  --surface-inset: rgba(255, 255, 255, 0.065);
  --control-bg: rgba(21, 11, 38, 0.92);
  --button-bg: #ffffff;
  --button-ink: #090211;
  --feature-bg: #090211;
  --feature-ink: #f4f4ec;
  --feature-muted: rgba(237, 232, 246, 0.72);
  --header-bg: rgba(9, 2, 17, 0.22);
  --header-bg-solid: rgba(9, 2, 17, 0.38);
  --nav-glass: rgba(255, 255, 255, 0.07);
  --mobile-menu-bg: rgba(13, 5, 25, 0.96);
  --mobile-menu-line: rgba(255, 255, 255, 0.16);
  --device-bg: #080713;
  --device-border: #050309;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    var(--page-wash),
    radial-gradient(circle at 14px 22px, var(--star-color) 0 1px, transparent 1.6px),
    radial-gradient(circle at 70px 46px, var(--star-color) 0 1px, transparent 1.6px);
  background-size: auto, 118px 118px, 186px 186px;
}

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

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

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

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-inset);
  padding: 0.12rem 0.36rem;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-ink);
  padding: 0.7rem 1rem;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  padding: 0 0;
  background: transparent;
  pointer-events: none;
  transition: transform 180ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-4px);
}

.header-shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    var(--header-bg);
  backdrop-filter: blur(30px) saturate(1.9);
  -webkit-backdrop-filter: blur(30px) saturate(1.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 24px 70px rgba(0, 0, 0, 0.14);
  padding: 0.42rem 0.62rem 0.42rem 0.92rem;
  pointer-events: auto;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled .header-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%),
    var(--header-bg-solid);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 18px 54px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 820;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.88rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.28rem;
  box-shadow: none;
}

.primary-nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 0.58rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 680;
  transition:
    background 180ms ease,
    color 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 999px;
  background: var(--nav-glass);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  cursor: pointer;
  box-shadow: 0 1px 0 var(--surface-inset) inset;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
}

.theme-icon {
  display: none;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.theme-icon--system path:last-child {
  fill: currentColor;
  stroke: none;
}

.theme-toggle[data-theme-mode="system"] .theme-icon--system,
.theme-toggle[data-theme-mode="light"] .theme-icon--light,
.theme-toggle[data-theme-mode="dark"] .theme-icon--dark {
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 999px;
  background: var(--nav-glass);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.hero {
  padding: 92px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 56px;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.7rem, 6.6vw, 7.1rem);
  font-weight: 830;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero h1 {
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 42%, var(--accent-secondary) 62%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--button-bg);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-ink);
  padding: 0.85rem 1.15rem;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button--light {
  border-color: #ffffff;
  background: #ffffff;
  color: #090211;
}

.hero-showcase {
  position: relative;
  min-height: 540px;
}

.showcase-card {
  position: absolute;
  inset: 42px 0 auto auto;
  width: min(460px, 90%);
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, #10051f 0%, #0a0716 48%, #122c46 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(65, 246, 190, 0.18), transparent 36%),
    linear-gradient(110deg, transparent 28%, rgba(122, 60, 255, 0.26) 62%, rgba(80, 192, 255, 0.16));
}

.showcase-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.46rem;
  padding: 1.2rem;
}

.showcase-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.showcase-screen {
  position: relative;
  z-index: 1;
  margin: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.screen-header {
  width: 54%;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-gradient);
}

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

.screen-grid span {
  min-height: 94px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
}

.screen-panel {
  display: grid;
  gap: 0.2rem;
  border-radius: 16px;
  background: var(--surface-solid);
  color: var(--ink);
  padding: 1rem;
}

.screen-panel strong {
  font-size: 1rem;
}

.screen-panel small {
  color: var(--muted);
}

.phone-mock {
  position: absolute;
  display: grid;
  gap: 0.65rem;
  width: 168px;
  min-height: 330px;
  border: 7px solid var(--device-border);
  border-radius: 32px;
  background: var(--device-bg);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.18);
  padding: 1.2rem 0.9rem;
}

.phone-mock div {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-gradient);
}

.phone-mock span {
  display: block;
  height: 46px;
  border-radius: 14px;
  background: var(--soft);
}

.phone-mock--one {
  right: 320px;
  bottom: 4px;
  transform: rotate(-6deg);
}

.phone-mock--two {
  right: 34px;
  bottom: 0;
  width: 142px;
  min-height: 282px;
  transform: rotate(7deg);
}

.section {
  padding: 90px 0;
}

.section--tight {
  padding: 70px 0;
}

.section--soft {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 820;
}

.section-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(65, 246, 190, 0.12), transparent 28%),
    linear-gradient(135deg, var(--feature-bg) 0%, #120725 55%, #183c57 100%);
  color: var(--feature-ink);
  padding: clamp(2rem, 5vw, 4rem);
}

.intro-panel p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 3.75rem);
  font-weight: 770;
  line-height: 1.05;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 56px;
}

.principle-list,
.value-grid,
.category-grid,
.stats-grid,
.product-grid,
.detail-columns,
.screenshot-grid {
  display: grid;
  gap: 1rem;
}

.principle-list {
  align-content: start;
}

.principle-card,
.value-card,
.category-card,
.stat-card,
.product-card,
.detail-card,
.fact-panel,
.contact-aside,
.support-selector,
.support-questions,
.empty-state,
.data-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 1px 0 var(--surface-inset) inset;
}

.principle-card,
.value-card,
.category-card,
.stat-card,
.detail-card,
.fact-panel,
.contact-aside,
.support-selector,
.support-questions,
.empty-state,
.data-panel {
  padding: 1.25rem;
}

.principle-card h3,
.value-card h3,
.category-card h3,
.product-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  line-height: 1.08;
}

.principle-card p,
.value-card p,
.category-card p,
.product-card p,
.stat-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  min-height: 230px;
}

.stat-card strong {
  display: block;
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.stat-card span {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 760;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.release-panel {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.release-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 1rem;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.product-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    var(--accent-gradient),
    var(--surface-solid);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.product-icon span {
  font-size: 1.7rem;
  font-weight: 820;
}

.product-card .chip-row {
  margin-top: auto;
}

.status-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--muted);
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 760;
}

.status-pill--coming-soon {
  background: var(--accent);
  color: var(--accent-ink);
}

.status-pill--beta {
  background: var(--button-bg);
  color: var(--button-ink);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-inset);
  color: var(--muted);
  padding: 0.35rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 5px;
}

.category-grid,
.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.values-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(80, 192, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #090211 0%, #170738 58%, #0b0618 100%);
  color: var(--feature-ink);
  padding: clamp(2rem, 5vw, 4rem);
}

.values-band .eyebrow,
.values-band p {
  color: var(--feature-muted);
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.platform-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-inset);
  padding: 0.72rem 0.9rem;
  color: var(--feature-ink);
  font-weight: 740;
}

.cta-band {
  padding: 70px 0;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(65, 246, 190, 0.14), transparent 36%),
    linear-gradient(135deg, #090211 0%, #1d0b41 62%, #12324d 100%);
  color: var(--feature-ink);
  padding: clamp(2rem, 5vw, 4rem);
}

.cta-shell h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
}

.cta-shell p,
.cta-shell .eyebrow {
  max-width: 640px;
  color: var(--feature-muted);
}

.page-hero {
  padding: 86px 0 50px;
}

.page-hero-inner {
  max-width: 930px;
}

.page-hero h1,
.product-detail-copy h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  font-weight: 830;
}

.page-hero p,
.product-detail-copy p {
  max-width: 770px;
  color: var(--muted);
  font-size: 1.18rem;
}

.editorial-grid,
.contact-grid,
.support-grid,
.product-detail-grid {
  display: grid;
  gap: 1.2rem;
}

.editorial-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.editorial-main {
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(122, 60, 255, 0.2), transparent 44%),
    linear-gradient(135deg, #090211 0%, #16072e 58%, #102b44 100%);
  color: var(--feature-ink);
  padding: clamp(2rem, 5vw, 4rem);
}

.editorial-main h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.editorial-main p {
  color: var(--feature-muted);
  font-size: 1.1rem;
}

.fact-panel h2,
.detail-card h2,
.support-questions h2,
.contact-aside h2 {
  font-size: 1.4rem;
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

dd {
  margin: 0.2rem 0 0;
  font-weight: 720;
}

.data-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.data-panel h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 4rem);
}

.data-panel p {
  max-width: 720px;
  color: var(--muted);
}

.product-detail-hero {
  padding: 76px 0 56px;
}

.product-detail-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  align-items: center;
}

.product-detail-copy .product-icon {
  margin: 1.5rem 0 1rem;
}

.product-preview {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--feature-bg);
  padding: 2rem;
}

.preview-device {
  display: grid;
  gap: 1rem;
  max-width: 320px;
  min-height: 440px;
  margin: 1rem auto;
  border-radius: 34px;
  background: var(--device-bg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.preview-top {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-gradient);
}

.preview-line {
  height: 18px;
  border-radius: 999px;
  background: var(--soft);
}

.preview-line--wide {
  width: 76%;
  background: var(--device-border);
}

.preview-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: auto;
}

.preview-tiles span {
  min-height: 112px;
  border-radius: 18px;
  background: var(--soft);
}

.detail-columns {
  grid-template-columns: 1fr 1fr;
}

.store-links {
  display: grid;
  gap: 0.65rem;
}

.store-links--compact {
  margin-top: 1rem;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-solid);
  padding: 0.75rem 0.9rem;
  font-weight: 720;
}

.store-link--disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.screenshot-grid {
  grid-template-columns: repeat(3, 1fr);
}

.screenshot-empty {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--surface-inset);
  color: var(--muted);
  font-weight: 760;
}

.support-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
}

.support-selector,
.support-questions {
  padding: 1.4rem;
}

.support-selector label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 740;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--control-bg);
  color: var(--ink);
  padding: 0.86rem 0.9rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(183, 242, 85, 0.45);
}

.support-product-panel {
  margin-top: 1rem;
}

.support-product {
  display: none;
}

.support-product.is-active {
  display: block;
}

.support-product .product-icon {
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-solid);
  padding: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.form-full {
  grid-column: 1 / -1;
}

.contact-form span small {
  color: var(--muted);
  font-weight: 650;
}

.checkbox-line {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.7rem !important;
}

.checkbox-line input {
  width: 20px;
  height: 20px;
  margin-top: 0.16rem;
  accent-color: var(--ink);
}

.contact-form .button {
  margin-top: 1.4rem;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-aside {
  align-self: start;
}

.legal-layout {
  display: grid;
  max-width: 900px;
  gap: 1rem;
}

.legal-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.4rem;
}

.legal-section h2 {
  font-size: 1.6rem;
}

.legal-section p {
  color: var(--muted);
}

.empty-state {
  display: grid;
  min-height: 260px;
  place-items: center;
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.empty-state p {
  max-width: 620px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-solid);
  padding: 56px 0 26px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  gap: 3rem;
}

.footer-intro p {
  max-width: 470px;
  color: var(--muted);
}

.brand--footer {
  margin-bottom: 1.4rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-links h2 {
  margin-bottom: 0.8rem;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-weight: 640;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.reveal {
  transform: translateY(14px);
  opacity: 0;
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .editorial-grid,
  .product-detail-grid,
  .support-grid,
  .contact-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .stats-grid,
  .category-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-shell {
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 28px, 1160px);
  }

  .header-shell {
    min-height: 62px;
    border-radius: 24px;
    padding: 0.42rem 0.52rem 0.42rem 0.72rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    border: 1px solid var(--mobile-menu-line);
    border-radius: 18px;
    background: var(--mobile-menu-bg);
    backdrop-filter: blur(24px) saturate(1.45);
    -webkit-backdrop-filter: blur(24px) saturate(1.45);
    padding: 0.5rem;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 22px 70px rgba(0, 0, 0, 0.22);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    border-radius: 8px;
    color: var(--ink);
    padding: 0.9rem;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1,
  .page-hero h1,
  .product-detail-copy h1 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-showcase {
    min-height: 390px;
  }

  .showcase-card {
    inset: 0 auto auto 0;
    width: 100%;
    min-height: 320px;
  }

  .phone-mock--one {
    right: auto;
    left: 12px;
    bottom: 0;
    width: 130px;
    min-height: 260px;
  }

  .phone-mock--two {
    right: 14px;
    width: 112px;
    min-height: 230px;
  }

  .screen-grid span {
    min-height: 66px;
  }

  .section {
    padding: 62px 0;
  }

  .section--tight {
    padding: 50px 0;
  }

  .stats-grid,
  .category-grid,
  .value-grid,
  .product-grid,
  .detail-columns,
  .screenshot-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 320px;
  }

  .cta-shell,
  .data-panel,
  .release-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-shell,
  .values-band,
  .editorial-main,
  .contact-form,
  .product-preview {
    border-radius: 8px;
  }

  .product-preview {
    min-height: 420px;
  }

}
