/* ==========================================================================
   Kelsus Watch Co. - 2026 Refresh
   Precision engineering meets collector-grade presentation.
   ========================================================================== */

:root {
  --bg-main: #f6f2ea;
  --bg-soft: #ece4d6;
  --bg-ink: #12151c;
  --bg-panel: rgba(255, 255, 255, 0.76);
  --bg-panel-strong: rgba(255, 255, 255, 0.9);

  --text-primary: #131720;
  --text-secondary: #303746;
  --text-muted: #5c6474;
  --text-on-dark: #f3f5f7;

  --accent: #bd6b34;
  --accent-strong: #9f5121;
  --accent-cool: #145f8f;
  --accent-cool-soft: rgba(20, 95, 143, 0.14);

  --line: rgba(19, 23, 32, 0.13);
  --line-strong: rgba(19, 23, 32, 0.22);
  --shadow-soft: 0 22px 48px rgba(16, 18, 24, 0.1);
  --shadow-card: 0 24px 44px rgba(22, 25, 33, 0.14);

  --font-display: 'Syne', 'Avenir Next', 'Trebuchet MS', sans-serif;
  --font-body: 'Sora', 'Avenir Next', 'Trebuchet MS', sans-serif;
  --font-editorial: 'Cormorant Garamond', 'Garamond', serif;

  --nav-height: 74px;
  --content-width: 1180px;
  --content-narrow: 780px;
  --section-padding: 110px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 12% 18%, rgba(189, 107, 52, 0.16), transparent 35%),
    radial-gradient(circle at 90% 8%, rgba(20, 95, 143, 0.14), transparent 32%),
    linear-gradient(160deg, #f6f2ea 0%, #f4eee4 55%, #ece4d6 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav-scrolled {
  background: rgba(246, 242, 234, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101;
}

.nav-logo-mark {
  width: 28px;
  height: 32px;
  color: var(--accent);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link-active::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(189, 107, 52, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--accent);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--text-on-dark);
}

.nav-hamburger {
  width: 34px;
  height: 34px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 101;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-open span:nth-child(2) {
  opacity: 0;
}

.hamburger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(19, 23, 32, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.mobile-menu-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}

.mobile-cta {
  color: #ffb37f;
}

#hero,
#watch-hero,
#about-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 95, 143, 0.14), transparent 42%),
    radial-gradient(circle at 80% 68%, rgba(189, 107, 52, 0.14), transparent 40%),
    linear-gradient(rgba(19, 23, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 23, 32, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 42px) 36px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner-about {
  min-height: auto;
  padding-bottom: 84px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-headline-line {
  display: block;
}

.hero-headline-accent {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-cool) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.76;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--text-on-dark);
  box-shadow: 0 12px 26px rgba(159, 81, 33, 0.35);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.82);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cool);
  border: 1px solid rgba(20, 95, 143, 0.22);
  background: var(--bg-panel);
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-watch {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-watch-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background:
    radial-gradient(circle at 32% 32%, rgba(20, 95, 143, 0.24), transparent 60%),
    radial-gradient(circle at 68% 65%, rgba(189, 107, 52, 0.28), transparent 62%);
  filter: blur(30px);
}

.hero-watch-img {
  width: min(100%, 540px);
  filter: drop-shadow(0 30px 48px rgba(13, 18, 30, 0.25));
  animation: watch-float 9s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes watch-float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(19, 23, 32, 0.6);
}

.scroll-indicator-text {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-indicator-arrow {
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  50% { transform: translateY(6px); }
}

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-padding) 36px;
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 52px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(159, 81, 33, 0.35);
}

.section-divider {
  display: none;
}

#story,
#watch-story,
#origin {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.62), rgba(250, 246, 239, 0.72));
}

#campaign {
  background:
    radial-gradient(circle at 14% 20%, rgba(70, 119, 166, 0.2), transparent 36%),
    radial-gradient(circle at 88% 76%, rgba(188, 120, 71, 0.22), transparent 38%),
    linear-gradient(170deg, #1a2232 0%, #222d3f 60%, #18202e 100%);
}

#campaign .section-label {
  color: #f0f5fc;
}

#campaign .section-label::before,
#campaign .section-label::after {
  background: rgba(227, 236, 250, 0.52);
}

.campaign-intro {
  max-width: 880px;
  margin: 0 auto 26px;
  color: rgba(234, 241, 252, 0.9);
  text-align: center;
  font-size: 15px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.campaign-card {
  border-radius: 18px;
  border: 1px solid rgba(227, 236, 250, 0.24);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(10, 14, 23, 0.34);
  transform-style: preserve-3d;
}

.campaign-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.campaign-card-copy {
  padding: 14px 14px 16px;
}

.campaign-card-copy h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  color: #f7fbff;
  margin-bottom: 6px;
}

.campaign-card-copy p {
  color: rgba(227, 236, 250, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: start;
}

.story-content {
  max-width: var(--content-narrow);
}

.story-paragraph {
  font-family: var(--font-editorial);
  font-size: clamp(1.3rem, 2.3vw, 1.55rem);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.story-closing {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-bottom: 0;
}

.story-highlight {
  background: var(--bg-panel-strong);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.story-highlight-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.story-stat-grid {
  display: grid;
  gap: 12px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--accent-cool);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

#approach,
#team,
#watch-specs {
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.approach-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(189, 107, 52, 0.12), transparent 45%),
    radial-gradient(circle at 86% 76%, rgba(20, 95, 143, 0.12), transparent 46%);
  pointer-events: none;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approach-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-panel-strong);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-card:hover {
  box-shadow: var(--shadow-card);
}

.approach-title {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.approach-rule {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-cool) 100%);
  margin-bottom: 14px;
}

.approach-desc {
  color: var(--text-secondary);
  font-size: 15px;
}

.mode-lab {
  margin-top: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 30px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.mode-header {
  margin-bottom: 20px;
}

.mode-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 6px;
}

.mode-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.mode-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.mode-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.5);
}

.mode-btn.mode-active,
.mode-btn:hover {
  border-color: rgba(20, 95, 143, 0.45);
  color: var(--accent-cool);
  background: var(--accent-cool-soft);
}

.mode-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.mode-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 8px;
}

.mode-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.mode-lead {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.mode-specs {
  list-style: none;
  display: grid;
  gap: 9px;
}

.mode-specs li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14px;
}

.mode-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

#collection {
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.8) 0%, rgba(255, 255, 255, 0.55) 100%);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--bg-panel-strong);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.collection-card:hover {
  box-shadow: var(--shadow-card);
}

.collection-card-image {
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(20, 95, 143, 0.08), rgba(189, 107, 52, 0.11));
  padding: 14px;
}

.collection-card-image img {
  filter: drop-shadow(0 18px 26px rgba(16, 20, 28, 0.25));
}

.collection-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.collection-card-badge {
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid rgba(20, 95, 143, 0.25);
  background: rgba(20, 95, 143, 0.08);
  color: var(--accent-cool);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-card-name {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.collection-card-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 72px;
}

.collection-card-cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
}

.watch-intent-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.watch-intent-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.watch-intent-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 6px;
}

.watch-intent-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

.watch-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 38px;
}

.watch-image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  --glow-x: 50%;
  --glow-y: 50%;
}

.watch-image-container::after {
  content: '';
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(20, 95, 143, 0.25), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
}

.watch-image-ring {
  position: absolute;
  width: 130%;
  height: 130%;
  border: 1px solid rgba(20, 95, 143, 0.2);
  border-radius: 50%;
  animation: ring-spin 48s linear infinite;
}

.watch-image-ring::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.watch-showcase-img {
  max-width: 480px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 36px rgba(16, 20, 28, 0.24));
}

.watch-caseback-img {
  display: none;
}

.watch-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.watch-thumbnail {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid rgba(20, 95, 143, 0.2);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.watch-thumbnail.active,
.watch-thumbnail:hover {
  opacity: 1;
  border-color: var(--accent-cool);
}

.watch-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.1vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.watch-desc {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

.watch-features {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.watch-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--text-secondary);
  font-size: 13px;
}

.feature-marker {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-cool));
  flex-shrink: 0;
}

.watch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(189, 107, 52, 0.3);
  background: rgba(189, 107, 52, 0.08);
}

.badge-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
}

.badge-divider {
  width: 1px;
  height: 14px;
  background: rgba(159, 81, 33, 0.24);
}

.badge-text {
  font-size: 12px;
  color: var(--text-secondary);
}

#waitlist {
  background: linear-gradient(170deg, rgba(18, 21, 28, 0.98) 0%, rgba(25, 29, 37, 0.98) 100%);
  color: var(--text-on-dark);
  position: relative;
}

.waitlist-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 145, 74, 0.25), transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(67, 149, 201, 0.26), transparent 40%);
  pointer-events: none;
}

.waitlist-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.waitlist-sub {
  color: rgba(243, 245, 247, 0.86);
  margin-bottom: 24px;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-group {
  text-align: left;
}

.form-field {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(243, 245, 247, 0.72);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(243, 245, 247, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  padding: 13px 14px;
  font-size: 15px;
  outline: none;
  font-family: var(--font-body);
}

.form-select {
  appearance: none;
}

.form-input::placeholder {
  color: rgba(243, 245, 247, 0.5);
}

.form-input:focus,
.form-select:focus {
  border-color: rgba(255, 179, 127, 0.8);
  background: rgba(255, 255, 255, 0.13);
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.submit-arrow {
  transition: transform 0.25s ease;
}

.form-submit:hover .submit-arrow {
  transform: translateX(3px);
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffcfad;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.success-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.waitlist-success p {
  color: var(--text-on-dark);
  font-size: 17px;
}

.waitlist-note {
  font-size: 12px;
  color: rgba(243, 245, 247, 0.68);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  text-align: center;
  padding: 22px;
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid rgba(20, 95, 143, 0.24);
}

.team-name {
  font-family: var(--font-display);
  font-size: 19px;
}

.team-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cool);
}

#footer {
  background: #0f1217;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 34px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 20px;
  height: 24px;
  color: var(--accent);
}

.footer-brand-name,
.footer-link,
.footer-copyright {
  color: rgba(243, 245, 247, 0.72);
  font-size: 12px;
}

.footer-brand-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-link:hover {
  color: #ffd2ad;
}

@media (max-width: 1100px) {
  :root {
    --section-padding: 92px;
  }

  .hero-inner {
    gap: 34px;
  }

  .collection-card-tagline {
    min-height: 0;
  }

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

@media (max-width: 860px) {
  :root {
    --nav-height: 66px;
    --section-padding: 80px;
  }

  .nav-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-height) + 34px);
    padding-bottom: 58px;
    min-height: auto;
  }

  .hero-sub,
  .hero-cta-row {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-watch-img {
    max-width: 380px;
    animation: none;
  }

  .scroll-indicator {
    display: none;
  }

  .story-grid,
  .watch-showcase,
  .collection-grid,
  .approach-grid,
  .watch-intent-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .watch-showcase {
    gap: 30px;
  }

  .watch-image-ring {
    display: none;
  }

  .watch-showcase-img {
    max-width: 360px;
  }

  .mode-lab {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero-headline {
    font-size: 2.1rem;
  }

  .story-paragraph {
    font-size: 1.2rem;
  }

  .story-closing {
    font-size: 1.1rem;
  }

  .watch-feature {
    border-radius: 12px;
    align-items: flex-start;
  }

  .watch-badge {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 14px;
  }

  .badge-divider {
    width: 28px;
    height: 1px;
  }
}

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

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