:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --accent-color: #007aff;
  --accent-light: #8fc1ff;
  --accent-warm: #ffbe7a;
  --secondary-bg: #1c1c1e;
  --text-secondary: #a0a8b8;
  --text-tertiary: #6b7280;
  --text-quaternary: #4b5563;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-subtle: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-bg-elevated: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-subtle: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(255, 255, 255, 0.16);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-2xl: 60px;
  --section-padding: 80px;
  --section-padding-lg: 140px;
}

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

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: clip;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Glass-morphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* Screen-reader only (SEO keyword span) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus-visible accessibility */
:focus-visible {
  outline: 2px solid rgba(143, 193, 255, 0.7);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(143, 193, 255, 0.7);
  outline-offset: 2px;
  border-radius: 4px;
}

/* IntersectionObserver pre-animation state */
.will-animate {
  opacity: 0;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: 5rem;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}


/* Layout */
section {
  padding: var(--section-padding) 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 120px;
}

.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96%, 1080px);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: top 0.25s ease, padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
  top: 12px;
  padding: 12px 24px;
  background: rgba(11, 13, 20, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.site-nav-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  margin-right: 18px;
  flex-shrink: 0;
}

.site-nav-brand a {
  color: inherit;
  text-decoration: none;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.site-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.9;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.site-nav-link:hover {
  opacity: 1;
}

.site-nav-link.is-current {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.92);
}

.site-nav .site-nav-cta {
  padding: 8px 16px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  border: 0;
  cursor: pointer;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #c8cdd8;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.is-active {
  color: #0e1218;
  background: linear-gradient(180deg, #f7faff 0%, #d6e4ff 100%);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}


.hero-positioning {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 1.8rem;
}

.positioning-card {
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.positioning-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.positioning-text {
  font-size: 0.98rem;
  color: #d9dde7;
  line-height: 1.4;
}

.launch-status-section {
  padding-top: 40px;
}

.launch-status-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px 34px;
  border: 1px solid rgba(120, 200, 140, 0.25);
  background:
    radial-gradient(620px 180px at 50% 0%, rgba(120, 200, 140, 0.14), transparent 66%),
    linear-gradient(180deg, rgba(16, 24, 18, 0.9) 0%, rgba(10, 14, 12, 0.94) 100%);
}

.launch-status-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #78c88c;
  margin-bottom: 10px;
}


.hero-replica-container {
  width: 100%;
  max-width: 980px;
  margin-top: 56px;
  position: relative;
}

.docklet-scene {
  min-height: 350px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  will-change: transform;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: #0a0a14;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.hero-sound-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.hero-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-sound-toggle svg {
  width: 18px;
  height: 18px;
}

.hero-sound-toggle .sound-icon-on { display: none; }
.hero-sound-toggle .sound-icon-off { display: block; }
.hero-sound-toggle.is-unmuted .sound-icon-on { display: block; }
.hero-sound-toggle.is-unmuted .sound-icon-off { display: none; }

.docklet-scene::after {
  content: none;
}





/* Hero Waitlist */
.hero-waitlist {
  width: min(100%, 500px);
  margin: 0 auto 1rem;
}


.hero-secondary-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.hero-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.hero-link:hover {
  color: #fff;
}

.hero-link-divider {
  color: var(--text-quaternary);
}

/* Scroll Story */
.scroll-story-section {
  position: relative;
  max-width: 1380px;
  padding-top: 74px;
  padding-bottom: 126px;
  text-align: left;
  --story-progress: 0;
  --story-step-index: 0;
  --story-tone-rgb: 94, 171, 255;
}

.scroll-story-section::before,
.scroll-story-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.scroll-story-section::before {
  width: min(740px, 100%);
  height: 440px;
  left: -90px;
  top: 48px;
  background: radial-gradient(circle at 30% 32%, rgba(var(--story-tone-rgb), 0.22), transparent 70%);
  filter: blur(24px);
}

.scroll-story-section::after {
  width: min(620px, 100%);
  height: 400px;
  right: -80px;
  bottom: 60px;
  background: radial-gradient(circle at 72% 50%, rgba(255, 190, 120, 0.14), transparent 72%);
  filter: blur(26px);
}

.scroll-story-section[data-story-tone="music"] {
  --story-tone-rgb: 94, 171, 255;
}

.scroll-story-section[data-story-tone="actions"] {
  --story-tone-rgb: 255, 187, 110;
}

.scroll-story-section[data-story-tone="live"] {
  --story-tone-rgb: 94, 232, 186;
}

.scroll-story-section[data-story-tone="focus"] {
  --story-tone-rgb: 255, 138, 108;
}

.story-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.story-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--story-tone-rgb), 0.95);
  margin-bottom: 10px;
  font-weight: 700;
}

.story-heading {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 13px;
}

.story-subtitle {
  color: #a5b0c4;
  max-width: 680px;
  font-size: 1.04rem;
  line-height: 1.6;
}

.story-horizontal-shell {
  position: relative;
  height: 260vh;
}

.story-horizontal-sticky {
  position: sticky;
  top: 102px;
  height: min(80vh, 720px);
  overflow: hidden;
  border-radius: 30px;
  padding: 22px 22px 62px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(500px 220px at 14% 0%, rgba(var(--story-tone-rgb), 0.22), transparent 68%),
    linear-gradient(170deg, rgba(20, 22, 34, 0.96) 0%, rgba(8, 11, 18, 0.98) 100%);
  box-shadow:
    0 40px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.story-horizontal-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  opacity: 0.15;
  pointer-events: none;
}

.story-horizontal-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 22px;
  height: 100%;
  will-change: transform;
}

.story-panel {
  --panel-rgb: 94, 171, 255;
  --panel-rgb-alt: 159, 140, 255;
  flex: 0 0 min(88vw, 1100px);
  min-width: min(88vw, 1100px);
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(560px 240px at 10% 0%, rgba(var(--panel-rgb), 0.23), transparent 66%),
    linear-gradient(165deg, rgba(29, 33, 45, 0.96) 0%, rgba(11, 14, 21, 0.97) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 30px 54px rgba(0, 0, 0, 0.34);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  padding: 22px;
  opacity: 0.48;
  transform: scale(0.975);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.story-panel.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(var(--panel-rgb), 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 44px 70px rgba(0, 0, 0, 0.45);
}

.panel-music {
  --panel-rgb: 94, 171, 255;
  --panel-rgb-alt: 159, 140, 255;
}

.panel-actions {
  --panel-rgb: 255, 187, 110;
  --panel-rgb-alt: 255, 141, 97;
}

.panel-live {
  --panel-rgb: 94, 232, 186;
  --panel-rgb-alt: 83, 204, 255;
}

.panel-focus {
  --panel-rgb: 255, 138, 108;
  --panel-rgb-alt: 255, 189, 120;
}

.story-panel-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(480px 220px at 20% 10%, rgba(var(--panel-rgb), 0.36), transparent 70%),
    linear-gradient(160deg, rgba(19, 22, 33, 0.9) 0%, rgba(7, 10, 16, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 20px 34px rgba(0, 0, 0, 0.28);
  padding: 18px;
  display: flex;
  align-items: flex-end;
  min-height: 360px;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.04) 68%);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.visual-orb.orb-a {
  width: 180px;
  height: 180px;
  left: -38px;
  top: -38px;
  opacity: 0.52;
  transform:
    translate3d(
      calc((var(--story-progress) - 0.5) * -32px + (var(--story-step-index) - 1.5) * -6px),
      calc((var(--story-progress) - 0.5) * -12px),
      0
    );
}

.visual-orb.orb-b {
  width: 240px;
  height: 240px;
  right: -82px;
  bottom: -116px;
  opacity: 0.34;
  transform:
    translate3d(
      calc((var(--story-progress) - 0.5) * 34px + (var(--story-step-index) - 1.5) * 7px),
      calc((var(--story-progress) - 0.5) * 18px),
      0
    );
}

.visual-frame {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 58px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(0, 0, 0, 0.26) 100%);
  overflow: hidden;
}

.visual-frame-top {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.visual-shot-image {
  display: block;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.03);
}

.visual-shot-image.is-missing {
  opacity: 0.28;
  filter: grayscale(1) contrast(0.85);
}

.visual-shot-fallback {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  bottom: 0;
  width: 100%;
  height: calc(100% - 34px);
}

.visual-shot-fallback.is-visible {
  display: block;
}

.visual-shot-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  bottom: 0;
  width: 100%;
  height: calc(100% - 34px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.03);
  background: #080d16;
}

.visual-shot-video.is-missing {
  display: none;
}

.panel-actions .visual-shot-video,
.panel-actions .visual-shot-fallback {
  object-fit: contain;
  object-position: center center;
  background: radial-gradient(circle at 50% 12%, rgba(255, 194, 122, 0.12), #080d16 62%);
}

.visual-frame-gloss {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  bottom: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 12, 21, 0.12) 0%, rgba(8, 12, 21, 0.22) 46%, rgba(8, 12, 21, 0.4) 100%);
}

.visual-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(11, 15, 24, 0.56);
  color: #eef3ff;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.story-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4px;
}

.story-panel-index {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(var(--panel-rgb), 0.98);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.story-panel-mode {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--panel-rgb), 0.95);
  margin-bottom: 14px;
  font-weight: 700;
}

.story-panel-copy h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.34rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.story-panel-copy p {
  color: #b6bfd0;
  line-height: 1.7;
}

.story-panel-copy p[data-story-panel-body] {
  font-size: 1rem;
  max-width: 44ch;
}

.story-panel-tags {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.story-panel-tags span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  font-size: 0.74rem;
  color: #e1e8f6;
  background: rgba(255, 255, 255, 0.06);
}

.story-horizontal-hint {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 32px;
  color: #96a3bc;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.story-horizontal-progress {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 16px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.story-horizontal-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--story-tone-rgb), 0.96), rgba(255, 255, 255, 0.9));
  transition: width 0.14s linear;
}

.scroll-story-section.is-horizontal .story-panel {
  cursor: ew-resize;
}

@media (max-width: 900px) {
  .scroll-story-section {
    max-width: none;
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .story-intro {
    margin-bottom: 18px;
  }

  .story-subtitle {
    font-size: 0.98rem;
  }

  .story-horizontal-shell {
    height: auto !important;
  }

  .story-horizontal-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .story-horizontal-sticky::before {
    content: none;
  }

  .story-horizontal-track {
    display: grid;
    gap: 16px;
    transform: none !important;
  }

  .story-panel {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
    opacity: 1;
    transform: none;
    cursor: pointer;
  }

  .story-panel-visual {
    min-height: 250px;
  }

  .panel-music .visual-shot-video,
  .panel-music .visual-shot-image {
    object-position: center 8%;
  }

  .story-panel-copy h3 {
    font-size: 1.4rem;
  }

  .story-panel-copy p[data-story-panel-body] {
    font-size: 0.95rem;
  }

  .story-horizontal-hint {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .story-horizontal-progress {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-panel,
  .visual-orb {
    transform: none !important;
    transition: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.12);
}

/* Download button */
.download-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.download-note {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 12px;
}

/* Features Section */
#features {
  padding-top: var(--section-padding-lg);
  position: relative;
}

#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 400px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.features-grid .feature-card:first-child {
  grid-column: span 2;
}

.features-grid .feature-card:last-child {
  grid-column: span 2;
}

.feature-card {
  padding: 32px;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--accent-light);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* SDK Showcase */
.sdk-showcase-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 52px;
  text-align: left;
}

.sdk-showcase-grid>* {
  min-width: 0;
}

.sdk-showcase-panel,
.sdk-preview {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(24, 26, 35, 0.9) 0%, rgba(12, 13, 19, 0.94) 100%);
}

.sdk-panel-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ea8ce;
  margin-bottom: 14px;
}

.sdk-scenario-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sdk-scenario-chip {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ced6e7;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.sdk-scenario-chip:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.sdk-scenario-chip.is-active {
  color: #fff;
  border-color: rgba(94, 171, 255, 0.78);
  background: rgba(38, 120, 245, 0.34);
}

.sdk-panel-note {
  margin-top: 14px;
  color: #97a0af;
  font-size: 0.88rem;
  line-height: 1.5;
}

.sdk-live-status {
  margin-top: 10px;
  color: #97a0af;
  font-size: 0.76rem;
  line-height: 1.45;
}

.sdk-live-status.is-on {
  color: #95f0b8;
}

.sdk-live-status.is-error {
  color: #ffb3b3;
}

#sdkLiveToggle.is-on {
  border-color: rgba(52, 199, 89, 0.48);
  background: rgba(52, 199, 89, 0.24);
}

.sdk-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.sdk-endpoint-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.18);
  border: 1px solid rgba(52, 199, 89, 0.35);
  color: #8ef0b1;
  font-size: 0.72rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.sdk-connection {
  color: #8f9bb3;
  font-size: 0.76rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.sdk-card-preview {
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(420px 120px at 10% 0%, rgba(96, 163, 255, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(35, 38, 52, 0.88) 0%, rgba(17, 18, 25, 0.94) 100%);
}

.sdk-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.sdk-card-type {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9dc4ff;
}

.sdk-card-status {
  font-size: 0.72rem;
  text-transform: lowercase;
  color: #95f0b8;
}

.sdk-card-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.sdk-card-subtitle {
  margin-top: 4px;
  color: #c7d0e0;
  font-size: 0.86rem;
  line-height: 1.3;
}

.sdk-card-meta {
  margin-top: 6px;
  color: #919db1;
  font-size: 0.8rem;
}

.sdk-card-progress-track {
  margin-top: 11px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.sdk-card-progress-track span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #54b2ff 0%, #9bd6ff 100%);
  transition: width 0.35s ease;
}

.sdk-card-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sdk-action-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 10px;
  cursor: pointer;
  transition: var(--transition);
}

.sdk-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sdk-action-primary {
  border-color: rgba(77, 160, 255, 0.6);
  background: rgba(48, 125, 238, 0.34);
}

.sdk-action-danger {
  border-color: rgba(255, 107, 107, 0.45);
  color: #ffb0b0;
}

.sdk-action-feedback {
  margin-top: 10px;
  color: #95a4bc;
  font-size: 0.76rem;
  min-height: 1.2em;
}

.sdk-payload {
  margin-top: 14px;
  max-height: 280px;
  overflow: auto;
}

.sdk-payload code {
  display: block;
  background: transparent;
  padding: 0;
  color: #cbd5e7;
  font-size: 0.82rem;
  line-height: 1.45;
}

/* SDK Teaser Card (index.html) */
.sdk-teaser-section {
  max-width: 900px;
}

.sdk-teaser-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(500px 150px at 10% 0%, rgba(96, 163, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(24, 26, 35, 0.9) 0%, rgba(12, 13, 19, 0.94) 100%);
}

.sdk-teaser-badge {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8ea8ce;
  margin-bottom: 10px;
  display: block;
}

.sdk-teaser-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sdk-teaser-card p {
  color: #a0a8b8;
  line-height: 1.6;
}

.sdk-teaser-preview {
  display: flex;
  align-items: center;
}

.sdk-teaser-code {
  margin: 0;
  font-size: 0.8rem;
  border-radius: 12px;
  width: 100%;
}

.sdk-teaser-code code {
  font-size: 0.8rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .sdk-teaser-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Pricing Section */
#pricing {
  padding-bottom: var(--section-padding-lg);
  position: relative;
}

#pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 400px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.pricing-card {
  padding: 40px;
  border-radius: 20px;
  width: 320px;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.pricing-card:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}

.pricing-card-featured {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features {
  list-style: none;
  padding: 0;
  color: var(--text-secondary);
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--glass-border-subtle);
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.pricing-features .highlight {
  color: #fff;
}

.pricing-features .highlight::before {
  background: var(--accent-light);
}

/* FAQ */
.faq-item {
  text-align: left;
  margin-bottom: 8px;
  background: var(--glass-bg-subtle);
  border: 1px solid var(--glass-border-subtle);
  border-radius: 14px;
  padding: 18px 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.faq-item h3 {
  margin-bottom: 0;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Roadmap Section */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 20px;
  margin-top: 40px;
}

.roadmap-card {
  padding: 30px;
  text-align: left;
  border: 1px dashed var(--glass-border);
  position: relative;
}

.roadmap-card .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

/* Documentation Styles */
.doc-container {
  max-width: 800px;
  margin: 150px auto 100px;
  padding: 0 20px;
  text-align: left;
}

.doc-section {
  margin-bottom: 60px;
}

code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
}

pre {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  border: 1px solid var(--glass-border);
  margin: 20px 0;
  max-width: 100%;
}

pre code {
  background: transparent;
  padding: 0;
}

.step-number {
  color: var(--accent-color);
  font-weight: 700;
  margin-right: 10px;
}

/* API Tables & Badges */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px;
  background: var(--glass-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.doc-table th,
.doc-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.doc-table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: #888;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.endpoint-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 10px;
}

.method-post {
  background: rgba(52, 199, 89, 0.2);
  color: #34c759;
}

.method-get {
  background: rgba(0, 122, 255, 0.2);
  color: #007aff;
}

.param-name {
  color: var(--accent-color);
  font-family: ui-monospace, monospace;
}


/* Section headings (extracted from inline styles) */
.section-heading {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-heading-xl {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-heading-lg {
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* Pricing card classes (extracted from inline styles) */
.pricing-card-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card-price-detail {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-card-trial-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-card-cta {
  display: block;
  text-align: center;
  margin-top: 30px;
}

.pricing-card-cta-secondary {
  display: block;
  text-align: center;
  margin-top: 10px;
}

/* FAQ section */
.faq-section {
  max-width: 700px;
  padding-top: 60px;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 400px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-hover), transparent);
}

/* Footer */
.site-footer {
  padding: 60px 20px 30px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--glass-border-subtle);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-tertiary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-col-title {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-quaternary);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.88rem;
}

.footer-link:hover {
  color: var(--text-secondary);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--glass-border-subtle);
  color: var(--text-quaternary);
  font-size: 0.82rem;
}

.footer-links {
  margin-top: 12px;
}

/* SDK teaser button spacing */
.sdk-teaser-cta-btn {
  margin-top: 16px;
}

/* Final CTA section */
.final-cta-section {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  max-width: none;
  padding: 150px 20px;
}

/* Pro pricing badge */
.pricing-pro-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(143, 193, 255, 0.2), rgba(94, 171, 255, 0.1));
  border: 1px solid rgba(143, 193, 255, 0.3);
  color: #8fc1ff;
  margin-bottom: 12px;
}

/* Enhanced featured pricing card */
.pricing-card-featured {
  border-color: rgba(143, 193, 255, 0.25);
  background:
    radial-gradient(500px 120px at 50% 0%, rgba(143, 193, 255, 0.08), transparent 60%),
    var(--glass-bg);
}

/* FAQ Accordion */
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}

.faq-toggle .faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  color: #666;
  transition: transform 0.25s ease;
}

.faq-toggle[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-answer.is-open {
  max-height: 300px;
  padding-top: 10px;
}

/* Mobile hamburger menu */
.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.site-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.site-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Brew Install */
.brew-install-inner {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 4px 4px 4px 16px;
  gap: 8px;
  max-width: 100%;
}

.brew-install-code {
  font-size: 0.85rem;
  color: #888;
  font-family: "SF Mono", ui-monospace, monospace;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.brew-install-copy {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #888;
  font-size: 0.75rem;
  font-family: inherit;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.brew-install-copy:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #bbb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .brew-install-inner {
    display: flex;
    width: 100%;
    overflow: hidden;
  }

  .brew-install {
    display: none;
  }

  .brew-install-code {
    overflow-x: auto;
    text-overflow: unset;
    white-space: nowrap;
    font-size: 0.78rem;
    flex: 1;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav {
    width: calc(100% - 16px);
    top: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    flex-wrap: wrap;
  }

  .site-nav.is-scrolled {
    top: 8px;
    padding: 10px 12px;
  }

  .site-nav-toggle {
    display: flex;
  }

  .site-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
  }

  .site-nav-links.is-open {
    display: flex;
  }

  .language-toggle {
    width: 100%;
    justify-content: center;
    padding: 4px;
    margin-top: 2px;
  }

  .lang-btn {
    min-width: 64px;
  }

  .site-nav-link,
  .site-nav-cta {
    font-size: 0.78rem;
    padding: 6px 9px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    opacity: 1;
    line-height: 1.2;
    text-align: center;
  }

  .site-nav-cta.btn-primary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-heading-xl {
    font-size: 2.4rem;
  }

  .section-heading-lg {
    font-size: 1.8rem;
  }

  .hero {
    min-height: auto;
    padding-top: 206px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }


  .hero-positioning {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    margin-bottom: 1.2rem;
  }

  .positioning-card {
    text-align: center;
  }

  .launch-status-card {
    padding: 30px 18px;
    border-radius: 16px;
  }

  .launch-status-card h2 {
    font-size: 2rem !important;
  }

  .hero-replica-container {
    display: none;
  }

  .docklet-scene {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    aspect-ratio: 1 / 0.55;
  }

  .hero-video {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-sound-toggle {
    bottom: 12px;
    right: 12px;
  }


  .sdk-showcase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .sdk-showcase-panel,
  .sdk-preview {
    padding: 16px;
    border-radius: 16px;
  }

  .sdk-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sdk-card-title {
    font-size: 0.94rem;
  }

  .sdk-card-subtitle {
    font-size: 0.8rem;
  }

  .sdk-action-btn {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .sdk-payload {
    max-height: 230px;
  }

  .sdk-payload code {
    white-space: pre-wrap;
    word-break: break-word;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

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

  .features-grid .feature-card:first-child,
  .features-grid .feature-card:last-child {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doc-container {
    margin-top: 190px;
  }

  .doc-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .doc-table th,
  .doc-table td {
    white-space: nowrap;
  }

  .scroll-story-section {
    max-width: none;
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .story-intro {
    margin-bottom: 24px;
  }

  .story-subtitle {
    font-size: 1rem;
  }

  .story-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .story-panel-visual {
    min-height: 220px;
  }

  .story-panel-copy h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .story-panel-copy p[data-story-panel-body] {
    font-size: 0.9rem;
  }

  .story-panel-tags {
    margin-top: 14px;
    gap: 6px;
  }

  .story-panel-tags span {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 222px;
  }
}



/* =============================================
   Comparison Page Styles (vs/notchnook.html)
   ============================================= */

.compare-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 120px;
}

.compare-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fc1ff;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Verdict Cards */
.verdict-grid {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 2rem auto 0;
}

.verdict-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
}

.verdict-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.verdict-card p {
  font-size: 0.92rem;
  color: #a0a8b8;
  line-height: 1.4;
}

.verdict-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #8fc1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  line-height: 1.1;
}

/* Comparison Table */
.compare-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  min-width: 600px;
}

.compare-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table thead th.col-docklet {
  color: #8fc1ff;
}

.compare-table thead th.col-competitor {
  color: #888;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
  color: #ccc;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .category-row td {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8fc1ff;
  background: rgba(143, 193, 255, 0.06);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table tbody tr:not(.category-row):hover {
  background: rgba(255, 255, 255, 0.04);
}

.cmp-yes {
  color: #34c759;
  font-weight: 700;
  font-size: 1rem;
}

.cmp-no {
  color: #555;
  font-weight: 700;
  font-size: 1rem;
}

.cmp-partial {
  color: #ff9f0a;
  font-weight: 700;
  font-size: 1rem;
}

.cmp-note {
  font-size: 0.76rem;
  color: #888;
  margin-left: 4px;
}

.cmp-stat-good {
  color: #34c759;
  font-weight: 600;
  font-size: 0.92rem;
}

.cmp-stat-bad {
  color: #ff6b6b;
  font-weight: 600;
  font-size: 0.92rem;
}

.cmp-stat-unknown {
  color: #666;
  font-style: italic;
  font-size: 0.88rem;
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  padding: 24px;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin-bottom: 16px;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.stat-value.stat-good {
  color: #34c759;
}

.stat-value.stat-bad {
  color: #ff6b6b;
}

.stat-value.stat-unknown {
  color: #555;
}

.stat-app {
  font-size: 0.72rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Pricing Compare Grid */
.pricing-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 40px auto 0;
}

.pricing-compare-card {
  padding: 32px;
  text-align: left;
  position: relative;
}

.pricing-compare-featured {
  border: 1px solid rgba(143, 193, 255, 0.3);
  background:
    radial-gradient(400px 120px at 50% 0%, rgba(143, 193, 255, 0.1), transparent 60%),
    var(--glass-bg);
}

.pricing-compare-badge {
  position: absolute;
  top: -11px;
  left: 24px;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a8bff 0%, #8fc1ff 100%);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-compare-options {
  margin-top: 16px;
}

.pricing-compare-tier {
  padding: 16px 0;
}

.pricing-compare-price {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.pricing-compare-label {
  display: block;
  font-size: 0.88rem;
  color: #888;
  margin-top: 4px;
}

.pricing-compare-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  color: #aaa;
  line-height: 2;
  font-size: 0.92rem;
}

.pricing-compare-list .highlight {
  color: #fff;
}

.pricing-compare-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

.pricing-compare-math {
  margin-top: 10px;
  color: #ff6b6b;
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-compare-verdict {
  margin-top: 20px;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pricing-math-card {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 30px;
  border: 1px solid rgba(255, 179, 102, 0.2);
  background:
    radial-gradient(400px 100px at 50% 0%, rgba(255, 179, 102, 0.08), transparent 60%),
    var(--glass-bg);
}

/* Honest Section */
.honest-list {
  text-align: left;
}

.honest-item {
  margin-bottom: 28px;
}

.honest-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.honest-item p {
  color: #888;
  line-height: 1.7;
}

.honest-item em {
  color: #aaa;
}

/* Compare Detail Card */
.compare-detail p strong {
  color: #fff;
}

/* Comparison Page Responsive */
@media (max-width: 768px) {
  .compare-hero {
    min-height: auto;
    padding-top: 200px;
  }

  .verdict-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
  }

  .verdict-card {
    padding: 20px 16px;
  }

  .verdict-number {
    font-size: 2rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .pricing-compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-compare-card {
    padding: 24px;
  }

  .pricing-compare-price {
    font-size: 1.8rem;
  }

  .compare-table-wrap {
    border-radius: 14px;
  }
}
