/* ============================================
   Digital Våbenbog — Nordic Authority
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Palette */
  --midnight: #080c18;
  --deep: #0e1425;
  --navy: #151c32;
  --navy-mid: #1e2747;
  --brass: #b8964e;
  --brass-light: #d4b97a;
  --brass-muted: rgba(184, 150, 78, 0.15);
  --steel: #9eaabe;
  --frost: #c8d1e0;
  --white: #eef0f5;
  --pure-white: #ffffff;
  --surface: #121a2e;
  --surface-raised: #182038;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Light section */
  --light-bg: #f5f6fa;
  --light-surface: #ffffff;
  --light-border: #e2e5ed;
  --light-text: #2a2f42;
  --light-text-muted: #5c6478;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(184, 150, 78, 0.08);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  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);
  color: var(--steel);
  background: var(--midnight);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

::selection {
  background: var(--brass);
  color: var(--midnight);
}

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* --- Container --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: auto;
  color: var(--brass);
  transition: color 0.3s ease;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--frost);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

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

.nav-link {
  text-decoration: none;
  color: var(--steel);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--frost);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--frost);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-link {
  text-decoration: none;
  color: var(--steel);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--frost);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--brass);
  color: var(--midnight);
}

.btn-primary:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 150, 78, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--frost);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--pure-white);
  color: var(--midnight);
}

.btn-white:hover {
  background: var(--frost);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

.btn-dark {
  background: var(--navy);
  color: var(--frost);
  border: 1px solid var(--border-hover);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
  background: var(--midnight);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(184, 150, 78, 0.06) 0%, transparent 65%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(59, 100, 200, 0.04) 0%, transparent 60%);
  animation: glowDrift 15s ease-in-out infinite alternate-reverse;
}

.hero-macbook {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-68%, -50%);
  width: 58%;
  max-width: 880px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
  animation: macbookFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes macbookFadeIn {
  from {
    opacity: 0;
    transform: translate(-68%, -50%) translateX(-30px);
  }
  to {
    opacity: 0.35;
    transform: translate(-68%, -50%) translateX(0);
  }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

/* Hero entrance animations */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--brass-muted);
  border: 1px solid rgba(184, 150, 78, 0.2);
  border-radius: 100px;
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--pure-white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--steel);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-note {
  font-size: 0.78rem;
  color: rgba(123, 139, 164, 0.5);
  letter-spacing: 0.02em;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

/* Decorative line below hero */
.hero-line {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  margin: 0 auto;
  opacity: 0.3;
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

/* --- Social Proof --- */
.social-proof {
  padding: 48px 0;
  background: #f5f1e8;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.social-proof-label {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(20, 28, 50, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 20px;
}

.logo-marquee {
  width: 100%;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}

.logo-track[aria-hidden="true"] {
  display: none;
}

.partner-logo {
  width: 160px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(20, 28, 50, 0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .logo-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .logo-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    width: max-content;
    animation: logoMarquee 28s linear infinite;
  }

  .logo-track {
    padding-right: 36px;
  }

  .logo-track[aria-hidden="true"] {
    display: flex;
  }
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-row {
    animation: none;
  }
}

/* --- Shared Section Styles --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* Dark section defaults */
.section-title { color: var(--pure-white); }
.section-subtitle { color: var(--steel); }

/* Light section overrides */
.light .section-title { color: var(--light-text); }
.light .section-subtitle { color: var(--light-text-muted); }

/* --- Features (light section) --- */
.features {
  padding: 110px 0;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.feature-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(42, 47, 66, 0.1);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  color: var(--brass-light);
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--light-text-muted);
  line-height: 1.7;
  font-weight: 400;
}

/* --- Demo / Video (dark section) --- */
.demo {
  padding: 110px 0;
  background: var(--midnight);
  position: relative;
}

.demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.video-wrapper {
  max-width: 840px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 32px 80px -16px rgba(0, 0, 0, 0.6),
    var(--shadow-glow);
  background: var(--deep);
  position: relative;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(184, 150, 78, 0.15), transparent 40%, transparent 60%, rgba(184, 150, 78, 0.08));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
}

.video-wrapper video {
  width: 100%;
  display: block;
  position: relative;
}

/* --- How It Works (light section) --- */
.how-it-works {
  padding: 110px 0;
  background: var(--light-bg);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 0 24px;
}

.step-number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--brass-light);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 20px rgba(21, 28, 50, 0.3);
}

.step-line {
  width: 80px;
  height: 1px;
  background: var(--light-border);
  margin-top: 26px;
  flex-shrink: 0;
  position: relative;
}

.step-line::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--light-border);
}

.step-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--light-text-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* --- Clubs (dark section) --- */
.clubs {
  padding: 100px 0;
  background: var(--deep);
  position: relative;
}

.clubs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.clubs-inner {
  max-width: 600px;
  margin: 0 auto;
}

.clubs-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--brass-muted);
  border: 1px solid rgba(184, 150, 78, 0.2);
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.clubs-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--pure-white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.clubs-desc {
  font-size: 1rem;
  color: var(--steel);
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 300;
}

.clubs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clubs-list li {
  font-size: 0.95rem;
  color: var(--frost);
  padding-left: 28px;
  position: relative;
  font-weight: 400;
}

.clubs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  opacity: 0.6;
}

/* --- Pricing (light section) --- */
.pricing {
  padding: 110px 0;
  background: var(--light-bg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--navy);
  border: 1px solid var(--navy-mid);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(184, 150, 78, 0.15), transparent 50%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* --- Pro card — elevated hero treatment --- */
.pricing-card-pro {
  border-color: rgba(184, 150, 78, 0.25);
  box-shadow:
    0 0 0 1px rgba(184, 150, 78, 0.08),
    0 16px 48px -8px rgba(0, 0, 0, 0.25),
    0 0 80px -20px rgba(184, 150, 78, 0.12);
}

.pricing-card-pro::before {
  background: linear-gradient(160deg, rgba(184, 150, 78, 0.35), rgba(184, 150, 78, 0.06) 40%, transparent 70%);
}

.pricing-card-pro::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(184, 150, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-pro:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(184, 150, 78, 0.12),
    0 24px 64px -8px rgba(0, 0, 0, 0.3),
    0 0 100px -20px rgba(184, 150, 78, 0.18);
}

/* --- Lite card — clean & understated --- */
.pricing-card-lite:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.2);
}

/* --- Badge --- */
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-light) 100%);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 99px;
  box-shadow: 0 2px 12px rgba(184, 150, 78, 0.3);
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--pure-white);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 400;
}

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

.price-amount {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--brass-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-details {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brass-light);
}

.price-period {
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 400;
}

.pricing-vat {
  font-size: 0.78rem;
  color: rgba(123, 139, 164, 0.5);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--frost);
  font-weight: 400;
}

.pricing-features li svg {
  color: var(--brass);
  flex-shrink: 0;
}

/* --- Addons — full-width below cards --- */
.pricing-addons {
  grid-column: 1 / -1;
  padding: 36px;
  background: var(--light-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
}

.addons-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.addon {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-border);
}

.addon:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.addon:first-of-type {
  padding-top: 0;
}

.addon-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 3px;
}

.addon-desc {
  font-size: 0.8rem;
  color: var(--light-text-muted);
  font-weight: 400;
}

.addon-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-text);
  white-space: nowrap;
  margin-left: 16px;
}

/* --- About Section (dark) --- */
.about {
  padding: 110px 0;
  background: var(--midnight);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.about-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--frost);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.75;
  font-weight: 300;
}

/* --- Benefits Section (light) --- */
.benefits {
  padding: 100px 0;
  background: var(--light-bg);
}

.benefits-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--light-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  color: var(--brass-light);
  flex-shrink: 0;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.65;
  font-weight: 500;
}

/* --- CTA (dark section) --- */
.cta {
  padding: 110px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 150, 78, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta > .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--pure-white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--steel);
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.cta-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brass-muted);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.cta-step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--brass);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.cta-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pure-white);
  margin-bottom: 6px;
}

.cta-step-desc {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.cta-step-arrow {
  color: var(--brass-muted);
  padding-top: 18px;
  flex-shrink: 0;
}

/* Light variant overrides */
.cta.light {
  background: var(--light-bg);
}

.cta.light::before {
  display: none;
}

.cta.light .cta-title {
  color: var(--light-text);
}

.cta.light .cta-subtitle {
  color: var(--light-text-muted);
}

.cta.light .cta-step-title {
  color: var(--light-text);
}

.cta.light .cta-step-desc {
  color: var(--light-text-muted);
}

.cta.light .cta-step-arrow {
  color: var(--brass);
}

@media (max-width: 640px) {
  .cta-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .cta-step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* --- FAQ --- */
.faq {
  padding: 110px 0;
  background: var(--midnight);
  position: relative;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

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

.faq-item[open] {
  border-color: var(--brass-muted);
  background: var(--surface-raised);
}

.faq-question {
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--frost);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

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

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item[open] .faq-question {
  color: var(--pure-white);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--steel);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--brass-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--brass);
}

@media (max-width: 640px) {
  .faq {
    padding: 72px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.93rem;
  }
}

/* --- Partner logos noscript fallback --- */
.partner-list-fallback {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 0;
  color: var(--steel);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Footer --- */
.footer {
  padding: 48px 0;
  background: var(--midnight);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-logo {
  width: 26px;
  height: auto;
  color: var(--brass);
}

.footer-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--frost);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--steel);
  transition: color 0.2s ease;
  font-weight: 400;
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(123, 139, 164, 0.4);
}

/* --- Keyframe Animations --- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, -20px) scale(1.05);
  }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger feature cards */
.feature-card.reveal:nth-child(2) { transition-delay: 0.07s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.14s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.21s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.28s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.35s; }
.feature-card.reveal:nth-child(7) { transition-delay: 0.42s; }
.feature-card.reveal:nth-child(8) { transition-delay: 0.49s; }

/* Stagger pricing cards */
.pricing-card-pro.reveal { transition-delay: 0.1s; }
.pricing-addons.reveal { transition-delay: 0.2s; }

/* Stagger about cards */
.about-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.about-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.about-card.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Stagger benefit items */
.benefit-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.benefit-item.reveal:nth-child(3) { transition-delay: 0.16s; }

/* Stagger steps */
.step.reveal:nth-child(1) { transition-delay: 0s; }
.step.reveal:nth-child(3) { transition-delay: 0.12s; }
.step.reveal:nth-child(5) { transition-delay: 0.24s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu:not(.open) {
    display: none;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-macbook {
    display: none;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-line {
    height: 50px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .features, .demo, .how-it-works, .pricing, .cta, .about, .benefits {
    padding: 80px 0;
  }

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

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

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step-line {
    width: 1px;
    height: 28px;
    margin: 0;
  }

  .step-line::after {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 32px 28px;
  }

  .cta-title {
    font-size: 1.85rem;
  }

  .logo-track {
    gap: 28px;
    padding-right: 28px;
  }

  .partner-logo {
    width: 110px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 130px 0 70px;
  }

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

  .section-title {
    font-size: 1.6rem;
  }

  .price-amount {
    font-size: 2.75rem;
  }

  .container {
    padding: 0 16px;
  }

  .clubs-inner {
    padding: 0 4px;
  }
}
