/* ============================================================
   STEADY DAD — LANDING PAGE STYLES
   Design system: dark theme, Bebas Neue / Inter / Playfair
   ============================================================ */

/* ------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  --color-bg: #0F0F0F;
  --color-surface: #1A1A1A;
  --color-surface-2: #242424;
  --color-border: #2E2E2E;
  --color-primary: #eebd8e;
  --color-primary-hover: #f2c99e;
  --color-primary-active: #dfa870;
  --color-accent: #8ebfee;
  --color-text-primary: #F0EDE8;
  --color-text-secondary: #9A9590;
  --color-text-muted: #5C5856;
  --color-error: #E05C4B;
  --color-success: #8ebfee;

  --font-headline: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-quote: 'Playfair Display', Georgia, serif;

  --header-height: 56px;
  --container-tablet: 720px;
  --container-desktop: 960px;

  --section-pad-mobile: 80px;
  --section-pad-tablet: 96px;
  --section-pad-desktop: 128px;

  --radius-card: 50px;
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Glass morphism colors */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
  --glass-button-bg: rgba(255, 255, 255, 0.08);
  --glass-button-border: rgba(255, 255, 255, 0.15);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

img,
svg {
  display: block;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .container {
    max-width: calc(var(--container-tablet) + 80px);
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: calc(var(--container-desktop) + 48px);
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Section shared */
.section {
  padding-top: var(--section-pad-mobile);
  padding-bottom: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--section-pad-tablet);
    padding-bottom: var(--section-pad-tablet);
  }
}

@media (min-width: 1200px) {
  .section {
    padding-top: var(--section-pad-desktop);
    padding-bottom: var(--section-pad-desktop);
  }
}

/* ------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
   ------------------------------------------------------------ */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: left;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.pricing-header .section-label::before {
  display: none;
}

.section-h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  color: var(--color-text-primary);
  line-height: 1.05;
  margin-bottom: 48px;
  text-align: left;
}

@media (min-width: 768px) {
  .section-h2 {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .section-h2 {
    font-size: 52px;
  }
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Primary */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-primary:active {
  background-color: var(--color-primary-active);
  border-color: var(--color-primary-active);
}

/* Ghost */
.btn-ghost {
  background-color: transparent;
  color: var(--color-text-secondary);
  border-color: var(--color-border);
  height: 52px;
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Sizes */
.btn-sm {
  height: 40px;
  padding: 0 20px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
  height: 56px;
}

/* Loading state */
.btn-primary.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ------------------------------------------------------------
   6. STICKY HEADER
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 26, 26, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.header-inner {
  max-width: calc(var(--container-desktop) + 48px);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-anchor-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(238, 189, 142, 0.25), rgba(59, 32, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-wordmark {
  font-family: var(--font-headline);
  font-size: 14px;
  color: var(--color-text-primary);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100svh;
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height, 56px) + 56px) 24px 80px;
}

/* Parallax background container */
.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.scroll-chevron {
  position: relative;
  z-index: 1;
}

/* Hero decorative glows */
.hero-glow-top {
  position: absolute;
  top: -10rem;
  right: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 191, 238, 0.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-bottom {
  position: absolute;
  bottom: 0;
  left: -5rem;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 189, 142, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Hero grid layout */
.hero-grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Copy column */
.hero-copy {
  text-align: left;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero-h1-new {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #e5e2e1;
  margin-bottom: 32px;
}

.hero-gradient-text {
  background: linear-gradient(130deg, var(--color-accent) 20%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body-lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: #c5c6cd;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 440px;
}

.hero-body-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(197, 198, 205, 0.6);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 420px;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 48px;
}

@media (min-width: 540px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 20px;
  min-height: 56px;
  max-width: 240px;
  text-decoration: none;
  transition: all 180ms ease;
  cursor: pointer;
}

.btn-appstore:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.btn-appstore-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: var(--color-text-primary);
  display: block;
}

.btn-appstore-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  line-height: 1.2;
}

.btn-appstore-main {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .btn-appstore {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn-see-how {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.btn-see-how:hover {
  color: var(--color-primary);
}

.btn-see-how .material-symbols-outlined {
  font-size: 16px;
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #353534;
  border: 2px solid var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: -8px;
  flex-shrink: 0;
}

.hero-social-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: #c5c6cd;
  margin-left: 16px;
}

.hero-social-count {
  color: var(--color-primary);
  font-weight: 600;
}

/* Phone preview column */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2.5rem;
}

.hero-phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 191, 238, 0.18) 0%, transparent 68%);
  filter: blur(48px);
  pointer-events: none;
}

/* Phone bezel */
.phone-bezel {
  width: 300px;
  height: 600px;
  border: 10px solid #1c1c1c;
  border-radius: 56px;
  box-shadow: 0 0 0 2px #2a2a2a, 0 32px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  background: #000;
  position: relative;
  flex-shrink: 0;
}

/* Dynamic Island (modern iPhone notch) */
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 21px;
  background: #000;
  border-radius: 20px;
  z-index: 30;
}

.phone-screen-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bg-ios-landscape {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
    url('../images/4.jpg');
  background-size: cover;
  background-position: center;
}

/* Phone status bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 8px;
  position: relative;
  z-index: 10;
}

.phone-time {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.phone-status-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-signal {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.phone-signal-bar {
  width: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
}

.phone-battery {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* Phone app header */
.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 12px;
  position: relative;
  z-index: 10;
}

.phone-app-title {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.phone-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(142, 191, 238, 0.9);
  cursor: pointer;
  border: none;
}

/* Glass card inside phone */
.phone-card-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 24px;
  position: relative;
  z-index: 10;
}

.phone-card {
  width: 100%;
  border-radius: 40px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.phone-card-gloss {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 40px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 0, 0, 0) 51%,
    rgba(0, 0, 0, 0.04) 100%);
}

.phone-card-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 32px;
}

.phone-card-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.phone-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.phone-card-label {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.phone-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(142, 191, 238, 0.3);
}

/* Floating like/share buttons */
.phone-btn-like {
  position: absolute;
  bottom: 32px;
  left: 20px;
  z-index: 20;
}

.phone-btn-share {
  position: absolute;
  bottom: 32px;
  right: 20px;
  z-index: 20;
}

/* Glass utilities */
.ios-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}

.ios-glass-button {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ios-gloss-overlay {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 0, 0, 0) 51%,
    rgba(0, 0, 0, 0.04) 100%);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.animate-float {
  animation: float 7s ease-in-out infinite;
}

.animate-float2 {
  animation: float2 9s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Scroll chevron */
.scroll-chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: chevron-pulse 2s ease-in-out infinite;
  transition: opacity 300ms ease;
}

.scroll-chevron.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes chevron-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(4px); }
}

/* ------------------------------------------------------------
   8. PROBLEM SECTION
   ------------------------------------------------------------ */
.problem-section {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: var(--section-pad-mobile);
  padding-bottom: var(--section-pad-mobile);
}

@media (min-width: 768px) {
  .problem-section {
    padding-top: var(--section-pad-tablet);
    padding-bottom: var(--section-pad-tablet);
  }
}

@media (min-width: 1200px) {
  .problem-section {
    padding-top: var(--section-pad-desktop);
    padding-bottom: var(--section-pad-desktop);
  }
}

.problem-section .parallax-bg {
  opacity: 1;
}

.problem-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
}

.social-proof-section .parallax-bg {
  opacity: 1;
}

.social-proof-section .container {
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Glass morphism cards */
.card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

/* Card parallax background layer */
.card-parallax-bg {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  will-change: transform;
}

@media (max-width: 480px) {
  .watch-frame {
    width: 240px;
    height: 290px;
  }
}

@media (max-width: 360px) {
  .watch-frame {
    width: 200px;
    height: 245px;
  }
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(200, 121, 58, 0.06) 0%, rgba(200, 121, 58, 0.02) 50%, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(40px)) {
  .card {
    background-color: rgba(36, 36, 36, 0.95);
  }
}

.card-icon {
  margin-bottom: 20px;
  flex-shrink: 0;
  color: var(--color-primary); /* SVGs inside use currentColor */
}

.card-h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   11. EMAIL CAPTURE SECTION
   ------------------------------------------------------------ */
.capture-section {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  scroll-margin-top: var(--header-height);
}

@media (min-width: 768px) {
  .capture-section {
    scroll-margin-top: 72px;
  }
}

.capture-section .container {
  text-align: left;
}

.capture-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: 16px;
  margin-bottom: 40px;
}

.form-container {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 480px;
  width: 100%;
}

@media (min-width: 768px) {
  .form-container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Field group */
.field-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.field-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field-input {
  height: 52px;
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.field-input::placeholder {
  color: var(--color-text-muted);
}

.field-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(142, 191, 238, 0.2);
}

.field-input.has-error {
  border-color: var(--color-error);
}

.field-input.has-error:focus {
  box-shadow: 0 0 0 3px rgba(224, 92, 75, 0.2);
}

.field-error {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-error);
  margin-top: 6px;
  min-height: 18px;
  display: block;
}

/* Submit button spacing */
.js-submit-btn {
  margin-bottom: 0;
}

/* Divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: var(--color-border);
  display: block;
}

.divider-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* Privacy note */
.privacy-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
}

.privacy-link {
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}

.privacy-link:hover {
  color: var(--color-text-primary);
}

/* ------------------------------------------------------------
   12. SUCCESS STATE
   ------------------------------------------------------------ */
.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0;
  animation: success-fade-in 300ms ease-out forwards;
}

.success-state[hidden] {
  display: none;
}

@keyframes success-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  margin-bottom: 20px;
  color: var(--color-success); /* SVG uses currentColor */
}

.success-heading {
  font-family: var(--font-headline);
  font-size: 36px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.success-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 360px;
}

/* ------------------------------------------------------------
   13. MODAL
   ------------------------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-fade-in 150ms ease-out forwards;
}

.modal-overlay[hidden] {
  display: none;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 48px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: modal-slide-in 150ms ease-out forwards;
}

@keyframes modal-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-title {
  font-family: var(--font-headline);
  font-size: 32px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.modal-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ------------------------------------------------------------
   15. FOCUS VISIBLE GLOBAL
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
   16. SKIP LINK (accessibility)
   ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 24px;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0ms;
}

.skip-link:focus {
  top: 12px;
}

/* ------------------------------------------------------------
   17. WATCH SECTION (Companion App)
   ------------------------------------------------------------ */
/* ── Features Section (replaces watch-section) ── */
.features-section {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .features-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .features-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.features-section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 191, 238, 0.04) 0%, transparent 58%);
  pointer-events: none;
}

.features-inner {
  max-width: calc(var(--container-desktop) + 48px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: left;
  margin-bottom: 64px;
}

.features-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Watch column */
.features-watch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.features-watch-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.features-watch-glow-blob {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 189, 142, 0.16) 0%, transparent 68%);
  filter: blur(56px);
}

/* Feature list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.feature-item:hover .feature-icon {
  background: rgba(255, 255, 255, 0.07);
}

.feature-text {
  flex: 1;
}

.feature-h3 {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.feature-badge {
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(59, 32, 0, 0.9);
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.icon-free { color: var(--color-primary); }
.icon-premium { color: var(--color-accent); }

.watch-frame {
  width: 280px;
  height: 340px;
  border: 10px solid #1a1a1a;
  border-radius: 48px;
  box-shadow:
    0 0 0 3px #2a2a2a,
    0 20px 40px -12px rgba(0, 0, 0, 0.8),
    inset 0 0 16px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  background: #000;
}

.watch-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
}

.watch-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: grayscale(0.2) contrast(1.25);
}

.watch-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

.watch-glass-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--glass-shadow);
}

.watch-affirmation {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.watch-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.watch-brand-line {
  width: 20px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.6;
}

.watch-brand-text {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.watch-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-button-bg);
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid var(--glass-button-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: transform 200ms ease;
}

.watch-action-btn:active {
  transform: scale(0.9);
}

.watch-action-btn svg {
  width: 20px;
  height: 20px;
}

/* ------------------------------------------------------------
   19. PRICING SECTION
   ------------------------------------------------------------ */
.pricing-section {
  background-color: var(--color-surface);
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .pricing-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.pricing-glow {
  position: absolute;
  top: 0;
  right: 25%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 191, 238, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-inner {
  max-width: calc(var(--container-desktop) + 48px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-h2 span {
  color: var(--color-text-secondary);
  font-weight: 300;
}

.pricing-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.plan-card {
  border-radius: 16px;
  padding: 36px;
  position: relative;
  text-align: left;
}

.plan-card--free { background: var(--color-surface); }

.plan-card--premium {
  background: linear-gradient(145deg, #1d2d3e 0%, #152839 55%, #1c1b1b 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.plan-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0d1117;
  background: var(--color-primary);
  padding: 6px 12px;
  border-radius: 20px;
}

.plan-tier {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.plan-tier--premium { color: rgba(142, 191, 238, 0.5); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.plan-price-number {
  font-family: var(--font-headline);
  font-size: 56px;
  color: var(--color-text-primary);
  line-height: 1;
}

.plan-period {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
}

.plan-save {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plan-feature-item .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  font-variation-settings: 'FILL' 1;
}

.plan-feature-item--free .material-symbols-outlined { color: var(--color-accent); }
.plan-feature-item--premium .material-symbols-outlined { color: var(--color-primary); }

.plan-feature-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
}

.plan-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 0 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
}

/* Free tier CTA — ghost style, 52px height (intentionally 4px shorter than premium) */
.plan-cta--free {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background-color: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  transition: background-color 150ms ease, color 150ms ease 40ms, border-color 150ms ease 40ms;
}

.plan-cta--free:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Premium tier CTA — solid amber, 56px height */
.plan-cta--premium {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary-hover), 0 8px 24px rgba(238, 189, 142, 0.20);
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.plan-cta--premium:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .plan-cta--premium {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

.plan-footnote {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(197, 198, 205, 0.4);
  text-align: center;
  margin-top: 12px;
}

.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.final-cta-h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-text-primary);
  max-width: 480px;
  line-height: 1.3;
}

.final-cta-h3 span { color: var(--color-primary); }

.final-cta-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  max-width: 320px;
  line-height: 1.7;
}

.btn-appstore-final {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 20px;
  min-height: 56px;
  box-shadow: 0 0 40px rgba(238, 189, 142, 0.12);
  text-decoration: none;
  transition: all 180ms ease;
}

.btn-appstore-final:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.btn-appstore-final svg {
  width: 28px;
  height: 28px;
  fill: var(--color-text-primary);
  flex-shrink: 0;
}

.btn-appstore-final-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.btn-appstore-final-main {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
}

@media (max-width: 767px) {
  .btn-appstore-final {
    width: 100%;
    justify-content: center;
  }
}

.final-cta-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 200ms ease;
}

.final-cta-link:hover { color: var(--color-primary); }

/* ------------------------------------------------------------
   20. NEW FOOTER
   ------------------------------------------------------------ */
.site-footer-new {
  background-color: var(--color-bg);
  padding-top: var(--section-pad-mobile);
  padding-bottom: var(--section-pad-mobile);
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .site-footer-new {
    padding-top: var(--section-pad-tablet);
    padding-bottom: var(--section-pad-tablet);
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .site-footer-new {
    padding-top: var(--section-pad-desktop);
    padding-bottom: var(--section-pad-desktop);
    padding-left: 24px;
    padding-right: 24px;
  }
}

.footer-divider-top {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 198, 205, 0.06), transparent);
  margin-bottom: 48px;
}

.footer-inner-new {
  max-width: calc(var(--container-desktop) + 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner-new {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

.footer-anchor-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(238, 189, 142, 0.2), rgba(59, 32, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-wordmark-new {
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.footer-links-new {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-link-new {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-link-new:hover { color: var(--color-accent); }

.footer-copy-new {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(197, 198, 205, 0.35);
}

/* ------------------------------------------------------------
   21. PRINT
   ------------------------------------------------------------ */
@media print {
  .site-header,
  .scroll-chevron,
  .modal-overlay {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-float2 {
    animation: none;
  }

  .parallax-bg,
  .card-parallax-bg {
    transform: none !important;
  }

  .scroll-chevron {
    animation: none;
  }
}

/* ------------------------------------------------------------
   COOKIE CONSENT BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cookie-btn {
  flex-shrink: 0;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bg);
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-btn:hover {
  background-color: var(--color-primary-hover);
}

.cookie-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}
