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

:root {
  --parchment:  #F5F3EE;
  --navy:       #1A2236;
  --navy-hover: #2a3550;
  --gold:       #C9A84C;
  --gold-hover: #d9b55a;
  --mascot-gold:#CB9241;
  --white:      #FFFFFF;
  --text-soft:  #4a5468;
  --line:       rgba(26,34,54,0.08);
  --container:  1160px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ═══ NAV ═══ */
nav.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
nav.topnav.scrolled { box-shadow: 0 6px 24px rgba(26,34,54,0.08); }

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

.nav-logo img {
  width: 240px;
  display: block;
}

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

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:not(.btn-login) {
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:not(.btn-login)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:not(.btn-login):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--navy); }

.btn-login {
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-login:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201,168,76,0.35);
}

/* ═══ HERO ═══ */
.hero {
  padding: 84px 0 108px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,34,54,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  top: -10%;
  right: -4%;
  width: 58%;
  max-width: 760px;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  animation: blobBreathe 16s ease-in-out infinite;
  transform-origin: 85% 30%;
  will-change: transform;
}

@keyframes blobBreathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.035) rotate(0.6deg); }
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-text > * { opacity: 0; animation: fadeUpIn 0.7s ease forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.15s; }
.hero-text > *:nth-child(3) { animation-delay: 0.28s; }
.hero-text > *:nth-child(4) { animation-delay: 0.42s; }
.hero-card { opacity: 0; animation: fadeUpIn 0.9s 0.3s ease forwards; }

.hero-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.06;
  color: var(--navy);
  margin-bottom: 22px;
}

.hero h1 .period { color: var(--gold); }

.hero-sub {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.65;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201,168,76,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(26,34,54,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--navy); background: rgba(26,34,54,0.04); }

.hero-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: floatY 6s ease-in-out infinite;
  will-change: transform;
}

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

/* ═══ SECTIONS SHARED ═══ */
section.band { padding: 96px 0; }

.band-header { text-align: center; margin-bottom: 56px; }

.band-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.band-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 12px;
}
.band-header p { color: var(--text-soft); font-size: 17px; max-width: 480px; margin: 0 auto; }

/* ═══ HOW IT WORKS ═══ */
.hiw { background: var(--white); }

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.hiw-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 17%;
  right: 17%;
  border-top: 2px dashed rgba(201,168,76,0.45);
  z-index: 0;
}

.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.hiw-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--gold);
  box-shadow: 0 0 0 8px var(--white);
}

.hiw-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 44px; }
  .hiw-grid::before { display: none; }
}

/* ═══ FEATURES ═══ */
.features { background: var(--parchment); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26,34,54,0.09);
  border-color: rgba(201,168,76,0.45);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--parchment);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  transition: background 0.3s ease;
}

.feature-card:hover .feature-icon { background: rgba(201,168,76,0.14); }

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p { font-size: 15.5px; color: var(--text-soft); line-height: 1.65; }

/* ═══ FAN CAROUSEL ═══ */
.screens { background: var(--navy); overflow: hidden; }

.screens .band-header h2 { color: var(--white); }
.screens .band-header p { color: rgba(255,255,255,0.6); }
.screens .band-eyebrow { color: var(--gold); }

.fan-carousel {
  position: relative;
  width: 100%;
  height: 420px;
  margin: 0 auto;
  max-width: 1100px;
  cursor: grab;
  user-select: none;
}
.fan-carousel.dragging { cursor: grabbing; }

.fan-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  transform-origin: center bottom;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.5s ease,
              box-shadow 0.5s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.fan-slide.active { pointer-events: auto; z-index: 5; box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.fan-slide.adjacent { pointer-events: auto; z-index: 3; cursor: pointer; }
.fan-slide.far { z-index: 1; }

.fan-slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.16);
  border-radius: 16px;
}

.fan-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.fan-slide-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(255,255,255,0.4);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fan-slide-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.fan-slide-sublabel {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fan-caption {
  text-align: center;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  min-height: 20px;
}

.fan-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.fan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.fan-dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 720px) {
  .fan-carousel { height: 280px; }
  .fan-slide { width: 86vw; }
}

/* ═══ LEARN ═══ */
.learn { background: var(--parchment); }

.learn-video {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(26,34,54,0.14);
  background: var(--navy);
  line-height: 0;
}

.learn-video video {
  width: 100%;
  display: block;
}

.learn-caption {
  text-align: center;
  margin: 18px auto 48px;
  font-size: 14px;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.6;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.learn-tile {
  background: var(--white);
  border: 1px dashed rgba(26,34,54,0.2);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
}

.learn-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.learn-play svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  margin-left: 2px;
}

.learn-tile h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.learn-tile span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

@media (max-width: 720px) {
  .learn-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ═══ COMPARE ═══ */
.compare { background: var(--white); }

.compare-chart {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-row {
  display: grid;
  grid-template-columns: 170px 1fr 76px;
  align-items: center;
  gap: 18px;
}

.compare-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  text-align: right;
}

.compare-row.us .compare-name {
  color: var(--navy);
  font-weight: 700;
}

.compare-chip {
  display: inline-block;
  background: rgba(201,168,76,0.16);
  color: var(--mascot-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 1px;
}

.compare-track {
  height: 14px;
  border-radius: 7px;
  background: rgba(26,34,54,0.05);
  overflow: hidden;
}

.compare-fill {
  height: 100%;
  border-radius: 7px;
  background: rgba(26,34,54,0.22);
  width: 0;
  transition: width 1s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.compare-row.us .compare-fill {
  background: linear-gradient(90deg, var(--gold), var(--mascot-gold));
}

.compare-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.compare-row.us .compare-price { color: var(--mascot-gold); }

.compare-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .compare-row { grid-template-columns: 110px 1fr 60px; gap: 12px; }
  .compare-name { font-size: 13px; }
  .compare-chip { display: block; margin: 2px 0 0; width: fit-content; margin-left: auto; }
}

/* ═══ PRICING ═══ */
.pricing { background: var(--parchment); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(26,34,54,0.08);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: 0 12px 40px rgba(201,168,76,0.18);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-price {
  margin: 20px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

.pricing-price .amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-price .currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.pricing-price .period {
  font-size: 15px;
  color: var(--text-soft);
}

.pricing-sub {
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.5;
  min-height: 40px;
}

.pricing-divider {
  height: 1px;
  background: rgba(26,34,54,0.07);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14.5px;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pricing-features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23C9A84C' fill-opacity='0.15'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}

.pricing-cta.solid {
  background: var(--gold);
  color: var(--navy);
}
.pricing-cta.solid:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(201,168,76,0.35);
}

.pricing-cta.outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(26,34,54,0.25);
}
.pricing-cta.outline:hover { border-color: var(--navy); background: rgba(26,34,54,0.03); }

.pricing-trial {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 10px;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-soft);
}

.pricing-note a { color: var(--navy); font-weight: 500; }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

/* ═══ FAQ ═══ */
.faq { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--mascot-gold); }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
  padding: 0 44px 24px 4px;
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 640px;
}

/* ═══ CONTACT FORM ═══ */
.contact-strip {
  background: var(--parchment);
  padding: 108px 0;
}

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

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 12px 40px rgba(26,34,54,0.07);
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-field.full { grid-column: 1 / -1; }

.contact-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.contact-field label .req {
  color: var(--mascot-gold);
  margin-left: 2px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: var(--parchment);
  border: 1.5px solid rgba(26,34,54,0.15);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.contact-field input.invalid,
.contact-field select.invalid,
.contact-field textarea.invalid {
  border-color: #e05252;
}

.contact-field .field-err {
  font-size: 12px;
  color: #e05252;
  display: none;
}
.contact-field .field-err.show { display: block; }

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

.contact-field select { appearance: none; cursor: pointer; }

.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--parchment);
  border: 1.5px dashed rgba(26,34,54,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-soft);
  transition: border-color 0.2s, background 0.2s;
}
.file-label:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.file-label svg { flex-shrink: 0; width:18px; height:18px; stroke:var(--gold); fill:none; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.file-label input[type="file"] { display: none; }
.file-name { font-size: 13px; color: var(--text-soft); margin-top: 6px; min-height: 18px; }

.contact-submit {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
}
.contact-submit:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(201,168,76,0.35); }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.contact-success {
  display: none;
  text-align: center;
  padding: 32px 0 16px;
}
.contact-success.show { display: block; }
.contact-success svg { width:48px; height:48px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; margin-bottom:16px; }
.contact-success h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.contact-success p { color: var(--text-soft); font-size: 15px; }

.contact-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-soft);
}
.contact-note a { color: var(--navy); font-weight: 600; }

@media (max-width: 640px) {
  .contact-form-wrap { padding: 32px 24px; }
  .contact-row { grid-template-columns: 1fr; }
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--navy);
  padding: 44px 0;
}

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

footer img {
  width: 190px;
}

footer p { font-size: 14px; color: rgba(255,255,255,0.45); }

footer nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}
footer nav a:hover { color: rgba(255,255,255,0.85); }

/* ═══ SECTION HIGHLIGHT (chat wayfinding) ═══ */
section { scroll-margin-top: 104px; }

@keyframes spotPulse {
  0%   { box-shadow: inset 0 0 0 3px rgba(201,168,76,0), 0 0 0 0 rgba(201,168,76,0); }
  15%  { box-shadow: inset 0 0 0 3px rgba(201,168,76,0.85), 0 0 0 14px rgba(201,168,76,0.15); }
  100% { box-shadow: inset 0 0 0 3px rgba(201,168,76,0), 0 0 0 0 rgba(201,168,76,0); }
}
.spot-highlight { animation: spotPulse 2.6s ease 1; }

/* ═══ CHAT WIDGET ═══ */
.chat-fab, .chat-avatar { --mp: 50% 12%; --mz: 1.4; }

.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26,34,54,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-fab:hover { transform: scale(1.07); box-shadow: 0 14px 36px rgba(26,34,54,0.34); }

.chat-fab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mp);
  transform: scale(var(--mz));
  display: block;
  pointer-events: none;
}

@keyframes fabDot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.chat-fab .dot {
  position: absolute;
  top: 3px;
  right: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mascot-gold);
  border: 2px solid var(--white);
  animation: fabDot 2s ease-in-out infinite;
}

.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 300;
  width: 372px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 130px);
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(26,34,54,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }

.chat-head {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--white);
  flex-shrink: 0;
}
.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--mp);
  transform: scale(var(--mz));
  display: block;
}

.chat-head-text { flex: 1; min-width: 0; }
.chat-head-text h5 { font-size: 15px; font-weight: 600; line-height: 1.2; }
.chat-head-text small { font-size: 11.5px; color: rgba(255,255,255,0.55); }

.chat-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  transition: color 0.15s;
}
.chat-close:hover { color: var(--white); }

.chat-welcome {
  flex-shrink: 0;
  height: 190px;
  overflow: hidden;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
.chat-welcome img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: 50% calc(5% - 10px);
  display: block;
}
.chat-panel.started .chat-welcome { display: none; }

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--parchment);
}

.msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.msg.bot {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--navy);
}
.msg.user {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg a { color: var(--mascot-gold); font-weight: 600; }

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  max-width: 95%;
}
.chat-chip {
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,0.6);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 16px;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.chat-chip:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }

@keyframes typingBlink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }
.msg.typing { display: flex; gap: 5px; align-items: center; padding: 14px; }
.msg.typing span {
  width: 6px;
  height: 6px;
  background: rgba(26,34,54,0.4);
  border-radius: 50%;
  animation: typingBlink 1.2s infinite;
}
.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }

.chat-inputbar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}
.chat-inputbar input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s;
}
.chat-inputbar input:focus { border-color: var(--gold); }

.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--gold-hover); transform: translateY(-1px); }
.chat-send svg { width: 18px; height: 18px; fill: var(--navy); }

@media (max-width: 480px) {
  .chat-panel { right: 16px; left: 16px; width: auto; bottom: 94px; height: 66vh; }
  .chat-fab { bottom: 20px; right: 20px; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-blob, .hero-card img { animation: none; }
  .hero-text > *, .hero-card { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fan-slide { transition: none; }
  .compare-fill { transition: none; }
  .chat-fab .dot { animation: none; }
  .spot-highlight { animation: none; box-shadow: inset 0 0 0 3px rgba(201,168,76,0.7); }
  .chat-panel { transition: none; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { max-width: 380px; margin: 0 auto; }
  .hero-blob {
    width: 55%;
    top: 0;
    right: -6%;
    opacity: 0.7;
  }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; height: 72px; }
  .nav-logo img { width: 180px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn-login) { display: none; }
  .container, .hero-grid, .footer-inner { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 48px 0 48px; }
  .hero-blob { display: none; }
  .hero-card { max-width: 260px; }
  section.band { padding: 64px 0; }
  .contact-strip { padding: 64px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  footer nav a:first-child { margin-left: 0; }
}
