/* ============================================================
   HAT'S THE SPIRIT! — Main Stylesheet
   Brand: Deep Navy + Warm Gold + Burnt Orange + Teal
   Fonts: Playfair Display (headlines) + Lora (body) + Oswald (labels)
   ============================================================ */

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

:root {
  --navy:       #1B3A6B;
  --navy-deep:  #0d2444;
  --navy-mid:   #2a5298;
  --gold:       #C9A84C;
  --gold-light: #f0c040;
  --gold-pale:  #FDF5E1;
  --orange:     #E87722;
  --orange-deep:#c94000;
  --teal:       #2E8B8A;
  --teal-light: #E0F2F1;
  --white:      #FFFFFF;
  --offwhite:   #F9F6EF;
  --lightgray:  #F2F2F0;
  --midgray:    #666666;
  --darkgray:   #222222;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-label:   'Oswald', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.22);

  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--darkgray);
  background: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(232,119,34,0.35);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,119,34,0.45);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8em 2em;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* ---- CONTAINERS & LAYOUT ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- SECTION COMMONS ---- */
.section-label {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.gold { color: var(--gold); }
.section-title.light { color: var(--white); }

.section-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--midgray);
  max-width: 680px;
  margin-bottom: 3rem;
  font-style: italic;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 36, 68, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-hat { font-size: 1.4rem; }
.logo-text { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-links .nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}
.nav-links .nav-cta:hover {
  background: var(--orange-deep);
  color: white !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #2a5298 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(232,119,34,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='40' cy='35' r='1'/%3E%3Ccircle cx='55' cy='8' r='1.2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 780px;
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,119,34,0.12);
  border: 1px solid rgba(232,119,34,0.3);
  padding: 0.4em 1.2em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  animation: heroFadeIn 1s ease 0.3s both;
}
.title-main { color: var(--white); display: block; }
.title-accent {
  color: var(--gold);
  display: block;
  font-style: italic;
  text-shadow: 0 0 40px rgba(201,168,76,0.4);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 1rem;
  animation: heroFadeIn 1s ease 0.4s both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: heroFadeIn 1s ease 0.5s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1s ease 0.6s both;
}

.hero-image-wrap {
  width: 100%;
  max-width: 900px;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(201,168,76,0.25);
  animation: heroFadeIn 1s ease 0.7s both;
  position: relative;
  z-index: 2;
}

.hero-image { width: 100%; height: auto; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  animation: heroFadeIn 1s ease 1s both;
}
.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  margin-top: 4px;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.8rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track span {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.marquee-track .dot { color: var(--orange-deep); font-size: 0.7rem; }

/* ============================================================
   THREE-HAT RULE SECTION
   ============================================================ */
.section-thr {
  padding: 6rem 0 5rem;
  background: var(--offwhite);
}

.thr-cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.thr-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.thr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.thr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.thr-work::before  { background: var(--navy); }
.thr-play::before  { background: var(--orange); }
.thr-jb::before    { background: var(--teal); }

.thr-work  { border-color: rgba(27,58,107,0.12); }
.thr-play.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(232,119,34,0.2);
  background: linear-gradient(160deg, #fff 70%, #FEF0E3 100%);
}
.thr-jb    { border-color: rgba(46,139,138,0.15); }

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--orange);
  color: white;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 50px;
}

.thr-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.08;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--darkgray);
}

.thr-hat-emoji {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  display: block;
}

.thr-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.thr-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,119,34,0.08);
  padding: 0.25em 0.8em;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.thr-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.thr-examples {
  list-style: none;
  margin-bottom: 1.5rem;
}
.thr-examples li {
  font-family: var(--font-label);
  font-size: 0.82rem;
  color: var(--navy);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(27,58,107,0.07);
  padding-left: 1.2rem;
  position: relative;
}
.thr-examples li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.thr-price {
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: var(--midgray);
  letter-spacing: 0.04em;
}
.thr-price strong {
  font-size: 1.1rem;
  color: var(--orange);
}

.thr-bundle-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: 2px solid rgba(201,168,76,0.3);
}
.bundle-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-body);
}
.bundle-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.bundle-desc { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.bundle-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}
.bundle-price em { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   MARKETS SECTION
   ============================================================ */
.section-markets {
  padding: 6rem 0;
  background: white;
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.market-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(27,58,107,0.08);
  transition: all 0.25s ease;
  cursor: default;
}
.market-card:hover {
  background: var(--navy-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.market-card:hover h4,
.market-card:hover p { color: white; }
.market-card:hover .market-icon { transform: scale(1.15) rotate(-5deg); }

.market-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform 0.25s ease;
}
.market-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.market-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--midgray);
  line-height: 1.6;
  transition: color 0.25s;
}

/* ============================================================
   AI DESIGN SECTION
   ============================================================ */
.section-ai {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1a4a7a 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.section-ai::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,119,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ai-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.ai-features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ai-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ai-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ai-features strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.ai-features span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Mock browser design */
.ai-mock {
  background: #1a1a2e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.ai-mock-header {
  background: #2a2a3e;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: block;
}
.mock-dot.red    { background: #ff5f56; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green  { background: #27c93f; }
.mock-title {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}
.ai-mock-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mock-prompt-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mock-prompt-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.mock-constraints {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.constraint {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}
.constraint.good {
  background: rgba(39,201,63,0.1);
  color: #5edd78;
  border: 1px solid rgba(39,201,63,0.2);
}
.mock-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201,168,76,0.07);
  border-radius: 8px;
  padding: 1rem;
  border: 1px dashed rgba(201,168,76,0.3);
}
.mock-hat-preview { font-size: 3rem; }
.mock-preview-label {
  font-family: var(--font-label);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.mock-btn {
  background: var(--orange);
  color: white;
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.mock-btn:hover { background: var(--orange-deep); }

/* ============================================================
   PHASES / PRODUCT ROADMAP
   ============================================================ */
.section-phases {
  padding: 6rem 0;
  background: var(--gold-pale);
}
.phases-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 3rem;
}
.phases-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--gold), var(--teal));
}
.phase-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0 2.5rem 1rem;
  position: relative;
}
.phase-dot {
  position: absolute;
  left: -3rem;
  top: 2.9rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lightgray);
  border: 3px solid var(--midgray);
  flex-shrink: 0;
}
.phase-item.active .phase-dot {
  background: var(--orange);
  border-color: var(--orange-deep);
  box-shadow: 0 0 0 6px rgba(232,119,34,0.2);
}
.phase-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,58,107,0.08);
  width: 100%;
  transition: box-shadow 0.25s;
}
.phase-content:hover { box-shadow: var(--shadow-md); }
.phase-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midgray);
  background: var(--lightgray);
  padding: 0.25em 0.9em;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.phase-tag.now {
  background: rgba(232,119,34,0.12);
  color: var(--orange-deep);
}
.phase-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 0.6rem;
}
.phase-content p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.phase-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.phase-styles span {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(27,58,107,0.06);
  border: 1px solid rgba(27,58,107,0.12);
  padding: 0.3em 0.9em;
  border-radius: 50px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  padding: 6rem 0;
  background: white;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gold-pale);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: var(--midgray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  line-height: 1.4;
}
.about-values {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}
.about-values h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.values-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.val-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.values-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.values-list div {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ============================================================
   FUN STRIP
   ============================================================ */
.fun-strip {
  background: var(--navy-deep);
  padding: 2.5rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.fun-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.fun-fact {
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.fun-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fun-label {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  font-style: italic;
}
.fun-divider {
  font-size: 2rem;
  color: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.section-contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0f2950 100%);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-opt {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.co-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.2);
}
.contact-opt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.contact-opt span {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--offwhite);
  border: 1.5px solid rgba(27,58,107,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--darkgray);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,119,34,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  padding: 2rem;
}
.success-hat { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}
.form-success p {
  font-family: var(--font-body);
  color: var(--midgray);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #060f1c;
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-copy {
  font-family: var(--font-label);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .thr-cards { grid-template-columns: 1fr 1fr; }
  .thr-jb { grid-column: 1 / -1; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .ai-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 1rem;
    border-bottom: 2px solid var(--gold);
    gap: 0.25rem;
  }
  .nav-toggle { display: block; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .thr-cards { grid-template-columns: 1fr; }
  .thr-jb { grid-column: auto; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .fun-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .fun-divider { display: none; }
  .phases-timeline { padding-left: 2rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .thr-bundle-cta { flex-direction: column; text-align: center; }
  .bundle-box { justify-content: center; }
  .about-stats { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .markets-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .section-title { font-size: 1.75rem; }
}
