:root {
  /* Dark backgrounds */
  --color-bg-primary: #050607;
  --color-bg-primary-rgb: 5, 6, 7;
  --color-bg-secondary: #0b0d0f;
  --color-bg-secondary-rgb: 11, 13, 15;
  --color-bg-elevated: #111419;
  --color-bg-elevated-rgb: 17, 20, 25;
  --color-bg-card: rgba(255, 255, 255, 0.035);
  --color-bg-card-hover: rgba(255, 255, 255, 0.055);

  /* Text hierarchy */
  --color-text-primary: #eef4ff;
  --color-text-secondary: #aeb9ca;
  --color-text-muted: #738096;
  --color-text-faint: #485468;

  /* Borders — cool low-contrast indigo */
  --color-border: rgba(160, 177, 207, 0.1);
  --color-border-strong: rgba(174, 191, 223, 0.2);
  --color-border-muted: rgba(160, 177, 207, 0.065);

  /* Accent — derived from the Nightshale icon */
  --color-accent: #6f71ff;
  --color-accent-rgb: 111, 113, 255;
  --color-accent-end: #78edde;
  --color-accent-end-rgb: 120, 237, 222;
  --color-accent-pink: #8d95ff;
  --color-accent-purple: #6f71ff;
  --color-accent-blue: #78edde;
  --color-accent-bg: rgba(var(--color-accent-rgb), 0.14);
  --color-accent-bg-strong: rgba(var(--color-accent-end-rgb), 0.12);
  --color-accent-border: rgba(var(--color-accent-end-rgb), 0.24);

  /* CTAs */
  --color-cta-fill: #fff;
  --color-cta-fill-hover: linear-gradient(135deg, #8486ff 0%, #91f4e9 100%);
  --color-cta-fill-text: #08111f;
  --color-cta-secondary-fill: rgba(var(--color-bg-elevated-rgb), 0.72);
  --color-cta-secondary-text: #f2f7ff;
  --color-cta-secondary-border: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-display: 'Inter', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'SF Mono', 'IBM Plex Mono', 'Cascadia Code', Consolas, monospace;

  /* Shadows (dark-adapted) */
  --shadow-mockup: 0 0 0 0.5px rgba(161, 178, 222, 0.16), 0 40px 80px rgba(0, 0, 0, 0.5), 0 16px 32px rgba(0, 0, 0, 0.3);
  --shadow-pill: 0 1px 6px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2);

  /* Radii */
  --radius-button: 100px;
  --radius-card: 8px;
  --radius-mockup: 16px;
  --radius-pill: 100px;

  --content-wide: 1180px;
  --content-default: 1120px;
  --content-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background:
    radial-gradient(circle at 50% -16rem, rgba(var(--color-accent-rgb), 0.13), transparent 36rem),
    var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

select {
  font: inherit;
  color: var(--color-text-secondary);
  background: var(--color-bg-primary);
}

[dir="rtl"] .section-eyebrow {
  letter-spacing: 0;
}
/* ============================================================
   Nightshale Landing — dark product page system
   ============================================================ */

/* === LAYOUT === */

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 420px),
    var(--color-bg-primary);
}

.svg-icon-asset {
  display: block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

html.home-scroll-snap {
  scroll-padding-top: 58px;
  scroll-snap-type: y mandatory;
}

html.home-scroll-snap .hero-section,
html.home-scroll-snap .section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

html.home-scroll-snap .contact-section {
  scroll-snap-align: center;
}

html.home-scroll-snap .site-footer {
  scroll-snap-align: start;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 72px);
  padding: clamp(36px, 5svh, 64px) 32px clamp(72px, 10svh, 116px);
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  html.home-scroll-snap .hero-section,
  html.home-scroll-snap .section {
    scroll-snap-stop: always;
  }
}

@media (max-width: 899px) {
  html.home-scroll-snap {
    scroll-padding-top: 58px;
  }

  html.home-scroll-snap .hero-proof-rail,
  html.home-scroll-snap .section-header,
  html.home-scroll-snap .comparison-card,
  html.home-scroll-snap .ownership-comparison,
  html.home-scroll-snap .feature-card,
  html.home-scroll-snap .step-card,
  html.home-scroll-snap .workflow-card,
  html.home-scroll-snap .download-card,
  html.home-scroll-snap .faq-item,
  html.home-scroll-snap .faq-actions,
  html.home-scroll-snap .contact-inner {
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.home-scroll-snap {
    scroll-snap-type: none;
  }
}

.section > *:not(.section-divider) {
  max-width: var(--content-default);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-divider {
  position: absolute;
  top: 0;
  inset-inline: 32px;
  height: 1px;
  background: var(--color-border);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 64px);
}

.section-eyebrow {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.section-subtext {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 14px;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.65;
}

.scroll-reveal .section-header,
.scroll-reveal .comparison-grid,
.scroll-reveal .ownership-comparison,
.scroll-reveal .features-grid,
.scroll-reveal .steps-grid,
.scroll-reveal .workflow-grid,
.scroll-reveal .download-grid,
.scroll-reveal .faq-list,
.scroll-reveal .faq-actions,
.scroll-reveal .contact-inner {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible .section-header,
.scroll-reveal.is-visible .comparison-grid,
.scroll-reveal.is-visible .ownership-comparison,
.scroll-reveal.is-visible .features-grid,
.scroll-reveal.is-visible .steps-grid,
.scroll-reveal.is-visible .workflow-grid,
.scroll-reveal.is-visible .download-grid,
.scroll-reveal.is-visible .faq-list,
.scroll-reveal.is-visible .faq-actions,
.scroll-reveal.is-visible .contact-inner {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-reveal .comparison-grid,
.scroll-reveal .features-grid,
.scroll-reveal .steps-grid,
.scroll-reveal .workflow-grid,
.scroll-reveal .download-grid,
.scroll-reveal .faq-list {
  transition-delay: 0.12s;
}

.scroll-reveal .ownership-comparison,
.scroll-reveal .faq-actions {
  transition-delay: 0.24s;
}

.scroll-reveal:not(.is-visible) .comparison-card,
.scroll-reveal:not(.is-visible) .feature-card,
.scroll-reveal:not(.is-visible) .step-card,
.scroll-reveal:not(.is-visible) .workflow-card,
.scroll-reveal:not(.is-visible) .download-card,
.scroll-reveal:not(.is-visible) .faq-item {
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal .section-header,
  .scroll-reveal .comparison-grid,
  .scroll-reveal .ownership-comparison,
  .scroll-reveal .features-grid,
  .scroll-reveal .steps-grid,
  .scroll-reveal .workflow-grid,
  .scroll-reveal .download-grid,
  .scroll-reveal .faq-list,
  .scroll-reveal .faq-actions,
  .scroll-reveal .contact-inner {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .scroll-reveal:not(.is-visible) .comparison-card,
  .scroll-reveal:not(.is-visible) .feature-card,
  .scroll-reveal:not(.is-visible) .step-card,
  .scroll-reveal:not(.is-visible) .workflow-card,
  .scroll-reveal:not(.is-visible) .download-card,
  .scroll-reveal:not(.is-visible) .faq-item {
    transform: none;
  }
}

/* === BUTTONS === */

.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cta-fill);
  color: var(--color-cta-fill-text);
  min-height: 42px;
  padding: 11px 24px;
  justify-content: center;
  border-radius: var(--radius-button);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, background 0.15s;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-cta-secondary-border);
  min-height: 42px;
  padding: 11px 24px;
  border-radius: var(--radius-button);
  font-size: 13px;
  color: var(--color-cta-secondary-text);
  text-decoration: none;
  background: var(--color-cta-secondary-fill);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

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

.button-download {
  background: var(--color-text-primary);
  color: var(--color-cta-fill-text);
}

.button-download:hover {
  background: #dbe8fb;
  opacity: 1;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* === FOCUS STYLES === */

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* === HEADER === */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: rgba(var(--color-bg-primary-rgb), 0.82);
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, -webkit-backdrop-filter 0.4s;
  will-change: backdrop-filter, -webkit-backdrop-filter;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(var(--color-bg-primary-rgb), 0.9) 0%, rgba(var(--color-bg-primary-rgb), 0.68) 100%);
  transition: opacity 0.4s ease;
}

.site-header.scrolled {
  background: rgba(var(--color-bg-primary-rgb), 0.78);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 10px 32px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--color-text-primary);
}

.header-logo img {
  width: 20px;
  height: 20px;
}

.header-separator {
  width: 1px;
  height: 20px;
  background: var(--color-border-strong);
}

.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav a {
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}

.header-nav a:hover,
.header-nav a.nav-active {
  color: var(--color-text-primary);
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-cta {
  min-height: 34px;
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 50px;
}

.header-icon-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  border-color: var(--color-border-strong);
}

/* Locale Switcher */
.locale-switcher {
  position: relative;
}

.locale-trigger {
  height: 34px;
  min-width: 34px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-strong);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.locale-trigger:hover,
.locale-trigger-open {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border-strong);
}

.locale-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-strong);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  min-width: 64px;
  max-height: 255px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 110;
  animation: dropdownIn 0.15s ease-out;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.locale-option {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  border: none;
  background: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: background 0.12s;
}

.locale-option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.locale-option-active {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
}

.mobile-menu {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 32px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-primary);
}

.mobile-menu a {
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* === HERO === */

.hero-section {
  text-align: left;
  padding: clamp(36px, 5vw, 56px) 32px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: -24% -20% auto 42%;
  height: 620px;
  background:
    radial-gradient(circle at 45% 40%, rgba(var(--color-accent-rgb), 0.22), transparent 34%),
    radial-gradient(circle at 76% 55%, rgba(var(--color-accent-end-rgb), 0.16), transparent 32%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
  min-height: clamp(470px, 66svh, 690px);
}

.hero-left {
  max-width: 520px;
  padding-bottom: clamp(8px, 4vw, 42px);
}

.hero-right {
  min-width: 0;
}

/* Announcement Pill */
.announcement-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-pill);
}

.pill-badge {
  background: var(--color-accent-bg);
  color: var(--color-accent);
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.pill-text {
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 700;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7.4vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--color-text-primary);
}

.hero-title-accent {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-end) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: -0.035em;
}

.hero-description {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--color-text-secondary);
  max-width: 470px;
  line-height: 1.58;
  text-align: left;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 26px;
  margin-top: 24px;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.hero-meta span {
  position: relative;
  padding-left: 18px;
}

.hero-meta span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-end));
}

/* Mockup wrapper for glow containment */
.hero-mockup-wrap {
  position: relative;
  width: min(760px, 62vw);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 48vw, 560px);
}

/* Hero Gradient Glow — uses multiple box-shadows for reliable cross-browser blur */
.hero-glow {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 1px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 50%;
  box-shadow:
    0 0 180px 260px rgba(var(--color-accent-rgb), 0.1),
    150px 0 210px 300px rgba(var(--color-accent-end-rgb), 0.09),
    -170px 0 210px 260px rgba(var(--color-accent-rgb), 0.075);
  pointer-events: none;
  z-index: 0;
}

/* === APP MOCKUP (Dashboard) === */

.app-mockup {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mockup-image {
  display: block;
  width: min(820px, 100%);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.46));
}

.hero-proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-border);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-proof-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 20px 22px;
  border-right: 0;
  overflow: hidden;
}

.hero-proof-item::after {
  content: '';
  position: absolute;
  inset: auto 14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-end-rgb), 0.42), transparent);
  opacity: 0.55;
}

.hero-proof-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-end);
  border-radius: 50%;
  border: 1px solid rgba(var(--color-accent-end-rgb), 0.18);
  box-shadow: 0 0 22px rgba(var(--color-accent-rgb), 0.16);
}

.hero-proof-icon svg,
.hero-proof-icon .svg-icon-asset {
  width: 26px;
  height: 26px;
}

.hero-proof-item h2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.hero-proof-item p {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--color-text-secondary);
}

@media (min-width: 1121px) {
  .hero-section {
    height: calc(100svh - 59px);
    padding: clamp(20px, 3.8svh, 56px) 32px clamp(14px, 2svh, 22px);
  }

  .hero-content {
    height: 100%;
    gap: clamp(20px, 3svh, 34px);
  }

  .hero-split {
    flex: 1 1 auto;
    min-height: 0;
  }

  .announcement-pill {
    margin-bottom: clamp(10px, 1.8svh, 18px);
  }

  .hero-title {
    font-size: clamp(52px, min(7.4vw, 11svh), 92px);
    margin-bottom: clamp(12px, 2svh, 22px);
  }

  .hero-description {
    font-size: clamp(15px, min(1.5vw, 2.4svh), 19px);
  }

  .hero-ctas {
    margin-top: clamp(14px, 2.7svh, 28px);
  }

  .hero-meta {
    gap: clamp(8px, 1.5svh, 12px) 26px;
    margin-top: clamp(12px, 2.2svh, 24px);
  }

  .hero-left {
    padding-bottom: clamp(0px, 2svh, 24px);
  }

  .hero-mockup-wrap {
    min-height: clamp(300px, min(48vw, 56svh), 560px);
  }

  .app-mockup-image {
    width: auto;
    max-width: 100%;
    max-height: min(56svh, 520px);
  }

  .hero-proof-rail {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .hero-proof-item {
    gap: clamp(10px, 1.5svh, 14px);
    padding: clamp(14px, 2svh, 20px) clamp(18px, 1.8vw, 24px);
  }

  .hero-proof-icon {
    width: clamp(36px, 5svh, 46px);
    height: clamp(36px, 5svh, 46px);
    flex-basis: clamp(36px, 5svh, 46px);
  }

  .hero-proof-icon svg,
  .hero-proof-icon .svg-icon-asset {
    width: clamp(21px, 3svh, 26px);
    height: clamp(21px, 3svh, 26px);
  }

  .hero-proof-item h2 {
    font-size: clamp(12px, 1.6svh, 14px);
  }

  .hero-proof-item p {
    font-size: clamp(11px, 1.45svh, 12px);
  }
}

@media (min-width: 1121px) and (max-height: 700px) {
  .hero-section {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .hero-content {
    gap: 8px;
  }

  .announcement-pill {
    margin-bottom: 8px;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: clamp(46px, 10svh, 72px);
    margin-bottom: 10px;
  }

  .hero-description {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-ctas {
    margin-top: 12px;
  }

  .hero-ctas .button-primary,
  .hero-ctas .button-secondary {
    min-height: 38px;
    padding: 8px 20px;
  }

  .hero-meta {
    grid-template-columns: repeat(4, minmax(0, max-content));
    gap: 10px 18px;
    margin-top: 12px;
    font-size: 11px;
  }

  .hero-left {
    padding-bottom: 0;
  }

  .hero-mockup-wrap {
    min-height: clamp(240px, min(44vw, 48svh), 420px);
  }

  .app-mockup-image {
    max-height: min(48svh, 420px);
  }

  .hero-proof-item {
    padding: 10px 14px;
  }

  .hero-proof-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-proof-icon svg,
  .hero-proof-icon .svg-icon-asset {
    width: 20px;
    height: 20px;
  }
}

/* === FEATURES === */

.features-section {
  background: var(--color-bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: var(--content-default);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
    var(--color-bg-card);
  border-radius: var(--radius-card);
  padding: 24px 22px 22px;
  border: 0.5px solid var(--color-border);
  min-height: 190px;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: -60px -60px auto auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.72;
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 1px solid rgba(var(--color-accent-end-rgb), 0.28);
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--color-accent-end);
  border: 1px solid var(--color-accent-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(var(--color-accent-rgb), 0.12);
}

.feature-icon svg,
.feature-icon .svg-icon-asset {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* === COMPARISON === */

.comparison-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(var(--color-accent-rgb), 0.08), transparent 34%),
    linear-gradient(180deg, var(--color-bg-secondary), rgba(var(--color-bg-secondary-rgb), 0.72));
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: var(--content-default);
  margin: 0 auto;
}

.comparison-card {
  position: relative;
  background:
    radial-gradient(circle at 92% 12%, rgba(var(--color-accent-end-rgb), 0.12), transparent 32%),
    rgba(var(--color-bg-elevated-rgb), 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.comparison-card::after {
  content: '';
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--color-accent-rgb), 0.1), rgba(var(--color-accent-end-rgb), 0.45), transparent);
}

.comparison-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.comparison-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-end);
  flex-shrink: 0;
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 16px 36px rgba(var(--color-accent-rgb), 0.12);
}

.comparison-icon svg,
.comparison-icon .svg-icon-asset {
  width: 28px;
  height: 28px;
}

.comparison-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--color-accent-end);
  font-weight: 700;
  margin-bottom: 6px;
}

.comparison-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-primary);
}

.comparison-body {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* === HOW IT WORKS === */

.how-section {
  background: var(--color-bg-primary);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 32px);
  max-width: var(--content-default);
  margin: 0 auto;
}

.steps-grid::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-end-rgb), 0.34), rgba(var(--color-accent-rgb), 0.28), transparent);
}

.step-card {
  position: relative;
  text-align: center;
  background: transparent;
  border-radius: var(--radius-card);
  padding: 0 8px;
  border: 0;
  min-height: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-2px);
}

.step-visual {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  border: 1px solid var(--color-border-strong);
  box-shadow:
    inset 0 0 0 10px rgba(0, 0, 0, 0.18),
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(var(--color-accent-rgb), 0.16);
}

.step-number {
  position: absolute;
  top: -8px;
  left: -4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 40px rgba(var(--color-accent-end), 0.34);
}

.step-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-end);
}

.step-icon svg,
.step-icon .svg-icon-asset {
  width: 38px;
  height: 38px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.step-card p {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* === OWNERSHIP COMPARISON === */

.ownership-comparison {
  max-width: min(1040px, var(--content-default));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(500px, 1.45fr);
  gap: clamp(22px, 3.5vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--color-border);
  border-top-color: rgba(174, 191, 223, 0.13);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--color-accent-rgb), 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(var(--color-bg-primary-rgb), 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 56px rgba(0, 0, 0, 0.28);
}

.ownership-comparison.comparison-ownership {
  margin-top: clamp(34px, 4vw, 52px);
}

.ownership-copy p {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-text-muted);
}

.ownership-copy h2 {
  max-width: 380px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.ownership-copy h2 span {
  color: var(--color-accent-end);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-end) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.ownership-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(var(--color-bg-elevated-rgb), 0.78);
}

.ownership-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.2fr) minmax(104px, 0.62fr) minmax(126px, 0.82fr);
  min-height: 40px;
  border-bottom: 1px solid var(--color-border);
}

.ownership-row:last-child {
  border-bottom: 0;
}

.ownership-row > span {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-secondary);
}

.ownership-row > span:nth-child(2),
.ownership-row > span:nth-child(3) {
  justify-content: center;
  text-align: center;
}

.ownership-head {
  min-height: 40px;
  background: rgba(255, 255, 255, 0.028);
}

.ownership-head > span {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.ownership-brand-heading {
  gap: 9px;
}

.ownership-brand-heading img {
  width: 18px;
  height: 18px;
}

.comparison-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.comparison-mark svg {
  width: 19px;
  height: 19px;
}

.comparison-mark-check {
  color: var(--color-accent-end);
  filter: drop-shadow(0 0 12px rgba(var(--color-accent-end-rgb), 0.28));
}

.comparison-mark-cross {
  color: rgba(255, 255, 255, 0.68);
}

.comparison-limited {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 800;
}

/* === WORKFLOW === */

.workflow-section {
  background:
    radial-gradient(circle at top center, rgba(var(--color-accent-end-rgb), 0.08), transparent 42%),
    linear-gradient(180deg, var(--color-bg-secondary) 0%, rgba(var(--color-bg-primary-rgb), 0.94) 100%);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: var(--content-default);
  margin: 0 auto;
}

.workflow-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    radial-gradient(circle at 50% 6%, rgba(var(--color-accent-end-rgb), 0.06), transparent 34%),
    rgba(11, 14, 18, 0.78);
  border-radius: var(--radius-card);
  border: 0.5px solid var(--color-border);
  padding: 24px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.workflow-card::after {
  content: '';
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-end-rgb), 0.42), transparent);
  opacity: 0.62;
}

.workflow-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.workflow-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.workflow-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent-end);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(var(--color-accent-rgb), 0.14);
}

.workflow-icon svg,
.workflow-icon .svg-icon-asset {
  width: 36px;
  height: 36px;
}

.workflow-stat {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(var(--color-accent-end-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-end-rgb), 0.18);
  color: var(--color-accent-end);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.workflow-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: var(--color-accent-end);
  font-weight: 800;
  margin-bottom: 10px;
}

.workflow-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.16;
  color: var(--color-text-primary);
  max-width: 360px;
}

.workflow-body {
  margin-top: 14px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  max-width: 360px;
}

.workflow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.workflow-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 700;
}

/* === DOWNLOADS === */

.download-section {
  background: var(--color-bg-secondary);
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 22px);
  max-width: var(--content-default);
  margin: 0 auto;
}

.download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 14%, rgba(var(--color-accent-rgb), 0.1), transparent 34%),
    var(--color-bg-card);
  border-radius: var(--radius-card);
  padding: 26px 18px 18px;
  border: 0.5px solid var(--color-border);
  text-align: center;
  color: var(--color-text-primary);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  min-height: 232px;
}

.download-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.download-card-disabled {
  opacity: 0.5;
}

.download-card-disabled:hover {
  border-color: var(--color-border);
  box-shadow: none;
  transform: none;
}

.download-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.download-card-icon {
  color: var(--platform-color, var(--color-accent-end));
  margin-bottom: 8px;
}

.download-card:nth-child(1) {
  --platform-color: #a87cff;
}

.download-card:nth-child(2),
.download-card:nth-child(3),
.download-card:nth-child(4) {
  --platform-color: #48bfff;
}

.download-card:nth-child(5) {
  --platform-color: #59df7a;
}

.download-card-icon svg,
.download-card-icon .svg-icon-asset {
  width: 44px;
  height: 48px;
  stroke-width: 1.55;
}

.download-card-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.download-card-label {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-text-primary);
}

.download-card-description {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 180px;
}

.download-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-border-strong);
  background: transparent;
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, background 0.15s, color 0.15s;
}

.download-action:hover {
  border-color: var(--color-accent-border);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.download-action:disabled,
.download-action-disabled {
  cursor: not-allowed;
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  box-shadow: none;
  transform: none;
}

.download-action:disabled:hover,
.download-action-disabled:hover {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  box-shadow: none;
  transform: none;
}

.download-action-primary {
  background: var(--color-text-primary);
  border-color: var(--color-text-primary);
  border-radius: var(--radius-button);
  color: var(--color-cta-fill-text);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.download-action-primary:hover {
  background: #dbe8fb;
  border-color: #dbe8fb;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.download-action-secondary {
  background: var(--color-accent-bg);
  border-color: var(--color-accent-border);
  color: var(--color-accent);
}

.download-unavailable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px dashed var(--color-border-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
}

/* === FAQ === */

.faq-section {
  background: var(--color-bg-primary);
}

.faq-list {
  max-width: var(--content-default);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 0;
  background: var(--color-bg-card);
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--color-text-primary);
  min-height: 54px;
  padding: 14px 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--color-text-muted);
  font-size: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-inline-start: 12px;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 18px 16px;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.faq-toggle-button {
  min-width: 220px;
}

/* === CONTACT === */

.contact-section {
  min-height: auto;
  justify-content: flex-start;
  margin: clamp(32px, 5vw, 64px) 32px clamp(28px, 5vw, 56px);
  padding: 0;
  background: transparent;
}

.contact-section > .section-divider {
  display: none;
}

.contact-section > .contact-inner {
  text-align: left;
  max-width: var(--content-default);
  margin: 0 auto;
  border: 1px solid rgba(3, 7, 18, 0.9);
  border-radius: 22px;
  min-height: 112px;
  padding: 24px clamp(28px, 3.6vw, 112px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 0 0 1px rgba(226, 239, 255, 0.24),
    0 18px 34px rgba(0, 0, 0, 0.28);
  background:
    radial-gradient(circle at 86% 50%, rgba(135, 112, 255, 0.48), transparent 30%),
    linear-gradient(100deg, #35c9c8 0%, #348fe1 45%, #3746d7 73%, #643df0 100%);
}

.contact-inner::after {
  content: '';
  position: absolute;
  inset: -18px -16px -18px auto;
  width: 46%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.52;
  background-image: radial-gradient(circle, rgba(232, 240, 255, 0.58) 1px, transparent 1.4px);
  background-size: 12px 12px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 14px rgba(5, 18, 42, 0.32);
}

.contact-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 424px;
  text-shadow: 0 1px 12px rgba(5, 18, 42, 0.22);
}

.contact-inner .button-primary {
  flex: 0 0 auto;
  background: #ffffff;
  color: #10135a;
  box-shadow: 0 8px 22px rgba(9, 23, 64, 0.16);
}

/* === CONTACT (Full-page split) === */

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  animation: fadeIn 0.15s ease-out;
}

.contact-split {
  display: flex;
  height: 100%;
}

.contact-form-side {
  flex: 0 0 50%;
  max-width: 50%;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
  overflow-y: auto;
}

.contact-return {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.15s;
  cursor: pointer;
}

.contact-return:hover {
  color: var(--color-text-primary);
}

.contact-form-header {
  margin-bottom: 48px;
}

.contact-form-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.contact-form-header p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 420px;
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 520px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-body .form-input,
.contact-form-body .form-textarea {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--color-text-primary);
  transition: border-color 0.15s;
}

.contact-form-body .form-input:focus,
.contact-form-body .form-textarea:focus {
  border-color: var(--color-border-strong);
  box-shadow: none;
}

.contact-form-body .form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--color-cta-fill);
  color: var(--color-cta-fill-text);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: auto;
}

.contact-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-error {
  font-size: 13px;
  color: #ef4444;
  line-height: 1.5;
}

.contact-form-footer {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
}

.contact-form-footer a {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-form-footer a:hover {
  color: var(--color-text-secondary);
}

.contact-quote-side {
  flex: 0 0 50%;
  max-width: 50%;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.contact-quote-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(var(--color-accent-rgb), 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(var(--color-accent-end-rgb), 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 500px;
  position: relative;
}

@media (max-width: 760px) {
  .contact-split {
    flex-direction: column;
  }

  .contact-form-side {
    flex: 1;
    max-width: 100%;
    padding: 24px 20px;
  }

  .contact-quote-side {
    display: none;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* === MODAL === */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.15s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal {
  background: var(--color-bg-elevated);
  border: 0.5px solid var(--color-border);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.2s ease-out;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--color-text-muted);
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-primary);
}

.modal-form {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-faint);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.16);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-send {
  width: 100%;
  justify-content: center;
  padding: 12px;
  margin-top: 4px;
}

.download-options-modal {
  max-width: 560px;
}

.download-options-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download-options-body {
  padding: 16px 24px 24px;
}

.download-options-copy {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.download-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-options-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 0.5px solid var(--color-border);
  background: var(--color-bg-card);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.download-options-item:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.download-options-item-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.download-options-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.download-options-item-note {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* Store items (App Store / Google Play) */
.download-options-store {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.download-store-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-text-primary);
}

.download-action-store-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 8px;
}

.download-action-store {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text-primary);
}

.download-action-store:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* === FOOTER === */

.site-footer {
  padding: 46px 32px 28px;
  position: relative;
  margin-top: auto;
  background: var(--color-bg-primary);
}

.footer-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-primary);
}

.footer-logo img {
  width: 20px;
  height: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-columns {
  display: flex;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}

.footer-column a {
  color: var(--color-text-secondary);
  font-size: 13px;
  margin-bottom: 7px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 11px;
  color: var(--color-text-muted);
}

.footer-version {
  font-size: 10px;
  color: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.locale-select {
  font-size: 11px;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px 8px;
  background: transparent;
}

/* === SUB-PAGES (Privacy, Terms, Docs) === */

.page-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-hero {
  text-align: center;
  padding: 64px 0 40px;
}

.page-hero .section-eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.page-hero p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.page-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.page-content {
  padding-bottom: 64px;
}

.page-updated {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.page-card {
  background: var(--color-bg-card);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 16px;
}

.page-card h2 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.page-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === LEGAL PAGES (Terms, Privacy) === */

.legal-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.legal-breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.legal-breadcrumb a:hover {
  color: var(--color-text-primary);
}

.legal-breadcrumb-sep {
  color: var(--color-text-faint);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  padding-top: 32px;
}

.legal-content {
  max-width: 680px;
}

.legal-header {
  margin-bottom: 24px;
}

.legal-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.8px;
  color: var(--color-text-primary);
}

.legal-meta {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.legal-updated {
  font-size: 13px;
  color: var(--color-text-muted);
}

.legal-prose {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.legal-intro {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.legal-prose section {
  margin-bottom: 36px;
  scroll-margin-top: 96px;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.legal-prose p {
  margin-bottom: 8px;
}

.legal-prose p:last-child {
  margin-bottom: 0;
}

.legal-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.legal-footer p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.legal-footer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer a:hover {
  color: var(--color-accent-end);
}

/* Legal sidebar TOC */
.legal-sidebar {
  position: relative;
}

.legal-toc {
  position: sticky;
  top: 80px;
}

.legal-toc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  padding: 0 8px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc li {
  line-height: 1.4;
}

.legal-toc a {
  display: block;
  padding: 6px 8px;
  border-inline-start: 2px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.legal-toc a:hover {
  color: var(--color-text-secondary);
}

.legal-toc a.legal-toc-link-active {
  background: rgba(var(--color-accent-rgb), 0.12);
  border-inline-start-color: var(--color-accent-end);
  color: var(--color-text-primary);
}

@media (max-width: 1120px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-sidebar {
    display: none;
  }
}

@media (max-width: 760px) {
  .legal-main {
    padding: 0 20px 48px;
  }

  .legal-header h1 {
    font-size: 28px;
  }

  .legal-prose h2 {
    font-size: 16px;
  }
}

/* === ENTRANCE ANIMATIONS === */

@keyframes fadeBlurIn {
  from {
    opacity: 0.18;
    filter: blur(6px);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero-title,
.hero-description,
.hero-ctas,
.announcement-pill,
.app-mockup,
.hero-glow {
  opacity: 0.18;
  animation: fadeBlurIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.announcement-pill { animation-delay: 0s; }
.hero-title { animation-delay: 0.05s; }
.hero-description { animation-delay: 0.1s; }
.hero-ctas { animation-delay: 0.15s; }
.hero-glow { animation-delay: 0.25s; }
.app-mockup { animation-delay: 0.05s; }

/* === RTL SUPPORT === */

[dir="rtl"] .section-eyebrow { letter-spacing: 0; }
[dir="rtl"] .footer-column h4 { letter-spacing: 0; }
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .header-left { flex-direction: row-reverse; }
[dir="rtl"] .header-right { flex-direction: row-reverse; }
[dir="rtl"] .steps-grid { direction: rtl; }
[dir="rtl"] .footer-top { flex-direction: row-reverse; }
[dir="rtl"] .mobile-menu a { text-align: right; }
[dir="rtl"] .hero-split { flex-direction: row-reverse; }
[dir="rtl"] .hero-description { text-align: left; }
[dir="rtl"] .hero-right { align-items: flex-start; }

/* === RESPONSIVE — TABLET === */

@media (max-width: 1120px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .steps-grid::before {
    display: none;
  }

  .ownership-comparison {
    grid-template-columns: 1fr;
  }

  .ownership-copy h2 {
    max-width: 620px;
  }

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

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

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hero-mockup-wrap {
    width: min(860px, 100%);
    min-height: auto;
    margin-inline: auto;
  }

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

  .hero-proof-item:nth-child(2n) {
    border-right: 0;
  }

  .step-card {
    text-align: center;
    min-height: auto;
  }

  .step-number {
    margin-bottom: 0;
  }

}

/* === RESPONSIVE — MOBILE === */

@media (max-width: 760px) {
  .section {
    min-height: auto;
    padding: 72px 20px;
  }

  .header-inner {
    padding: 12px 20px;
  }

  .header-nav {
    display: none;
  }

  .header-separator {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-icon-btn {
    display: none;
  }

  .locale-switcher {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    padding: 16px 20px;
  }

  .hero-section {
    padding: 42px 20px 28px;
    min-height: auto;
  }

  .hero-split {
    gap: 28px;
  }

  .hero-right {
    align-items: flex-start;
  }

  .hero-description {
    text-align: left;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -0.02em;
  }

  .section-header h2 {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-glow {
    display: none;
  }

  .hero-mockup-wrap {
    min-height: 210px;
  }

  .app-mockup,
  .app-mockup-image {
    max-height: none;
  }

  .app-mockup-image {
    width: min(132%, 660px);
    max-width: none;
    height: auto;
  }

  .hero-proof-rail {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .hero-proof-item,
  .hero-proof-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 18px;
  }

  .hero-proof-item:last-child {
    border-bottom: 0;
  }

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

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

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

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

  .ownership-comparison {
    gap: 24px;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .ownership-copy h2 {
    font-size: 28px;
  }

  .ownership-table {
    overflow-x: auto;
  }

  .ownership-row {
    grid-template-columns: minmax(170px, 1.25fr) minmax(104px, 0.65fr) minmax(126px, 0.85fr);
    min-width: 430px;
  }

  .ownership-row > span {
    padding: 9px 12px;
    font-size: 12px;
  }

  .ownership-head > span {
    font-size: 13px;
  }

  .workflow-card {
    padding: 24px 20px;
  }

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

  .download-card:nth-child(4) {
    order: 1;
  }

  .download-card:nth-child(5) {
    order: 2;
  }

  .download-card:nth-child(1) {
    order: 3;
  }

  .download-card:nth-child(2) {
    order: 4;
  }

  .download-card:nth-child(3) {
    order: 5;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin: 8px 20px 32px;
  }

  .contact-section > .contact-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 26px 22px;
  }

  .feature-card,
  .step-card {
    min-height: auto;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }

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

  .footer-meta {
    gap: 6px 12px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .page-hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
