/* ============================================================
   COFFEEBIT.AI — styles.css
   Premium Dark Coffee Luxury Aesthetic
   ============================================================ */

/* ========================
   CSS CUSTOM PROPERTIES
======================== */
:root {
  /* Background Scale */
  --bg-deep:    #0f0b08;
  --bg-dark:    #17120e;
  --bg-mid:     #241812;
  --bg-lift:    #2e1f14;
  --bg-raised:  #3a2518;

  /* Copper / Bronze Accent */
  --copper:     #B87333;
  --copper-lt:  #C8883A;
  --bronze:     #CD7F32;
  --espresso:   #6F4E37;
  --gold:       #D4AF37;
  --gold-lt:    #E8C84A;
  --cream:      #F5E6C8;
  --cream-dim:  #D5C4A8;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);

  /* Shadows */
  --glow-copper: 0 0 30px rgba(184, 115, 51, 0.25);
  --glow-gold:   0 0 30px rgba(212, 175, 55, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--copper); }

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

input, textarea, select, button {
  font-family: var(--font-body);
  font-size: inherit;
}

ul { list-style: none; }

/* ========================
   SCROLLBAR
======================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

/* ========================
   LAYOUT UTILITIES
======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* ========================
   REVEAL ANIMATIONS
======================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ========================
   TYPOGRAPHY SYSTEM
======================== */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 620px;
  line-height: 1.8;
  opacity: 0.85;
}

.section-header { margin-bottom: 70px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

.sub-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}

/* ========================
   GLASS CARD
======================== */
.glass-card {
  background: rgba(36, 24, 18, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(184, 115, 51, 0.18);
  border-radius: var(--r-lg);
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  color: var(--bg-deep);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(184, 115, 51, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--copper-lt), var(--gold));
  box-shadow: 0 8px 30px rgba(184, 115, 51, 0.55);
  transform: translateY(-2px);
  color: var(--bg-deep);
}

.btn-ghost {
  background: rgba(184, 115, 51, 0.1);
  color: var(--copper);
  border: 1px solid rgba(184, 115, 51, 0.3);
}
.btn-ghost:hover {
  background: rgba(184, 115, 51, 0.2);
  border-color: var(--copper);
  color: var(--copper);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 230, 200, 0.3);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245, 230, 200, 0.05);
  color: var(--cream);
}

.btn.full { width: 100%; justify-content: center; }

.btn.small {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-icon { font-size: 0.85em; }

/* ========================
   NAVIGATION
======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(15, 11, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184, 115, 51, 0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

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

.logo-mark {
  font-size: 1.5rem;
  color: var(--copper);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.logo-dot { color: var(--copper); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links li a {
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(245, 230, 200, 0.65);
  transition: color 0.25s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.3s var(--ease);
}

.nav-links li a:hover {
  color: var(--cream);
}

.nav-links li a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  color: var(--bg-deep);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--copper-lt), var(--gold));
  color: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}

.nav-mobile {
  display: none;
  background: rgba(15, 11, 8, 0.98);
  border-top: 1px solid rgba(184, 115, 51, 0.15);
  padding: 24px 32px;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile li a {
  font-size: 1rem;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}

.mobile-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  color: var(--bg-deep) !important;
  font-weight: 600;
  border-radius: var(--r-sm);
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 32px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184, 115, 51, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.12), transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent);
  bottom: 100px;
  left: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--copper);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.8; transform: translateY(-20px) scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper));
}

.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--copper), transparent);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-headline .line-1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  background: linear-gradient(135deg, var(--copper), var(--gold), var(--copper-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -0.02em;
}

.hero-headline .line-2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--cream);
  display: block;
  letter-spacing: -0.01em;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--cream-dim);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 36px 48px;
  background: rgba(36, 24, 18, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--r-lg);
  max-width: 720px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-family: var(--font-mono);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(184, 115, 51, 0.2);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184, 115, 51, 0.5);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(184, 115, 51, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6) translateY(12px); }
}

/* ========================
   STORY SECTION
======================== */
.story {
  background: var(--bg-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
}

.story-img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-raised));
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(184, 115, 51, 0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.placeholder-icon { font-size: 3rem; }

.story-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  border-radius: var(--r-md);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.badge-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-deep);
  line-height: 1;
}

.badge-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(15, 11, 8, 0.7);
}

.story-content { padding-left: 20px; }

.story-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(245, 230, 200, 0.75);
}

.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--r-sm);
  font-size: 0.83rem;
  color: var(--cream-dim);
  transition: border-color 0.3s;
}

.pillar:hover { border-color: rgba(184, 115, 51, 0.35); }

.pillar-icon {
  color: var(--copper);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ========================
   TOWER SECTION
======================== */
.tower {
  background: var(--bg-deep);
  position: relative;
}

.tower-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184, 115, 51, 0.05) 0%, transparent 70%);
}

.tower-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* CSS Tower Building */
.tower-visual {
  display: flex;
  justify-content: center;
}

.tower-building {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tower-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tower-floor {
  width: var(--w);
  height: var(--h);
  background: linear-gradient(180deg, rgba(184, 115, 51, 0.15), rgba(184, 115, 51, 0.06));
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tower-floor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.tower-floor:hover::before { opacity: 1; }
.tower-floor:hover { background: linear-gradient(180deg, rgba(184, 115, 51, 0.25), rgba(184, 115, 51, 0.1)); }

.floor-label {
  font-size: 0.75rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.floor-floors {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--copper);
  letter-spacing: 0.08em;
}

.tower-base {
  width: 220px;
  height: 24px;
  background: linear-gradient(180deg, rgba(184, 115, 51, 0.3), rgba(184, 115, 51, 0.05));
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: 0 0 4px 4px;
}

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

.tower-feature-card {
  padding: 24px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--r-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.tower-feature-card:hover {
  border-color: rgba(184, 115, 51, 0.3);
  transform: translateY(-2px);
}

.tfc-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }

.tfc-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}

.tfc-content p {
  font-size: 0.82rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.65;
}

/* ========================
   MACHINES SECTION
======================== */
.machines {
  background: var(--bg-dark);
}

/* Flow diagram */
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
  position: relative;
}

.flow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 115, 51, 0.3), transparent);
  display: none;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-align: center;
  max-width: 160px;
}

.flow-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(36, 24, 18, 0.8);
  border: 1px solid rgba(184, 115, 51, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.flow-icon:hover {
  border-color: var(--copper);
  box-shadow: var(--glow-copper);
}

.flow-icon.glow-copper { border-color: var(--copper); box-shadow: var(--glow-copper); }
.flow-icon.glow-gold   { border-color: var(--gold);   box-shadow: var(--glow-gold); }

.flow-icon-inner { font-size: 2rem; }

.flow-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}

.flow-sub {
  font-size: 0.75rem;
  color: rgba(245, 230, 200, 0.5);
  line-height: 1.5;
  max-width: 120px;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--copper);
  opacity: 0.5;
  padding: 0 12px;
  margin-top: -30px;
  flex-shrink: 0;
}

/* Machine cards */
.machines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.machine-card {
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}

.machine-card:hover {
  border-color: rgba(184, 115, 51, 0.35);
  transform: translateY(-4px);
}

.machine-card.featured {
  border-color: rgba(184, 115, 51, 0.4);
  box-shadow: var(--glow-copper);
}

.machine-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  color: var(--bg-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  z-index: 2;
}

.machine-img-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-raised));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(184, 115, 51, 0.3);
  font-size: 0.78rem;
  text-align: center;
  padding: 20px;
}

.mip-icon { font-size: 2.5rem; }

.machine-info { padding: 28px; }

.machine-tier {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 8px;
}

.machine-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.machine-info p {
  font-size: 0.87rem;
  color: rgba(245, 230, 200, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.machine-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.machine-specs span {
  padding: 4px 12px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: 99px;
  font-size: 0.72rem;
  color: var(--copper);
  font-family: var(--font-mono);
}

/* ========================
   TOKEN SECTION
======================== */
.token {
  background: var(--bg-deep);
  position: relative;
}

.token-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(184, 115, 51, 0.04) 0%, transparent 70%);
}

.token-dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.dashboard-card {
  padding: 28px;
  background: rgba(36, 24, 18, 0.6);
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--r-md);
  backdrop-filter: blur(12px);
}

.token-price-card { grid-column: span 1; }

.dc-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 115, 51, 0.7);
  margin-bottom: 8px;
}

.dc-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.dc-change {
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-mono);
}

.dc-change.up { color: #4ade80; }
.dc-change.down { color: #f87171; }

.dc-sub {
  font-size: 0.78rem;
  color: rgba(245, 230, 200, 0.45);
  font-family: var(--font-mono);
}

.dc-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.mini-chart {
  margin-top: 12px;
  height: 60px;
}

.mini-chart svg { width: 100%; height: 100%; }

/* Token Buy Section */
.token-buy {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.buy-card {
  width: 100%;
  max-width: 560px;
  padding: 48px;
  text-align: center;
}

.buy-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.buy-card p {
  font-size: 0.9rem;
  color: rgba(245, 230, 200, 0.65);
  margin-bottom: 28px;
}

.buy-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(36, 24, 18, 0.8);
  border: 1px solid rgba(184, 115, 51, 0.25);
  border-radius: var(--r-sm);
  padding: 16px 20px;
}

.buy-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
}

.buy-input::placeholder { color: rgba(245, 230, 200, 0.3); }

.buy-equals {
  color: rgba(184, 115, 51, 0.5);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.buy-output {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--copper);
  flex-shrink: 0;
}

.buy-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(245, 230, 200, 0.4);
  font-family: var(--font-mono);
}

/* Token Utility Grid */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.utility-card {
  padding: 32px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--r-md);
  transition: border-color 0.3s, transform 0.3s;
}

.utility-card:hover {
  border-color: rgba(184, 115, 51, 0.35);
  transform: translateY(-3px);
}

.uc-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.utility-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.utility-card p {
  font-size: 0.85rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.7;
}

/* ========================
   ECOSYSTEM MAP
======================== */
.ecosystem {
  background: var(--bg-dark);
}

.eco-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.eco-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.eco-node.central .eco-icon {
  width: 90px;
  height: 90px;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  box-shadow: var(--glow-copper);
  border: none;
}

.eco-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(36, 24, 18, 0.8);
  border: 1px solid rgba(184, 115, 51, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.eco-node:hover .eco-icon {
  border-color: var(--copper);
  box-shadow: var(--glow-copper);
}

.eco-node span {
  font-size: 0.8rem;
  color: var(--cream-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.eco-spokes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.eco-flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--r-lg);
  gap: 4px;
}

.eco-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  text-align: center;
}

.es-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
}

.es-label {
  font-size: 0.75rem;
  color: rgba(245, 230, 200, 0.6);
  letter-spacing: 0.05em;
  max-width: 100px;
  line-height: 1.4;
  text-align: center;
}

.eco-arrow {
  color: var(--copper);
  opacity: 0.4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ========================
   CAFES SECTION
======================== */
.cafes {
  background: var(--bg-deep);
}

.cafes-feature { margin-bottom: 64px; }

.cafe-hero-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.img-placeholder.large {
  min-height: 460px;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-raised));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(184, 115, 51, 0.35);
  font-size: 0.9rem;
  border: 1px solid rgba(184, 115, 51, 0.12);
}

.img-placeholder.large .placeholder-icon { font-size: 4rem; }

.cafe-overlay-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.coc-stat { text-align: center; }

.coc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.coc-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}

.coc-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 115, 51, 0.25);
}

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

.cafe-feature {
  padding: 28px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.1);
  border-radius: var(--r-md);
  transition: border-color 0.3s;
}

.cafe-feature:hover { border-color: rgba(184, 115, 51, 0.3); }

.cf-icon {
  font-size: 1.6rem;
  color: var(--copper);
  margin-bottom: 14px;
  display: block;
}

.cafe-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.cafe-feature p {
  font-size: 0.83rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.7;
}

/* ========================
   HOTELS SECTION
======================== */
.hotels {
  background: var(--bg-dark);
  position: relative;
}

.hotels-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.04), transparent);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.hotel-card {
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.hotel-card:hover {
  border-color: rgba(184, 115, 51, 0.4);
  transform: translateY(-4px);
}

.hotel-img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-raised));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(212, 175, 55, 0.3);
  font-size: 0.78rem;
  text-align: center;
  padding: 20px;
}

.hip-icon { font-size: 2.5rem; }

.hotel-content { padding: 28px; }

.hotel-tier {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.hotel-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.hotel-content p {
  font-size: 0.84rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-features span {
  padding: 4px 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 99px;
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-mono);
}

/* Hotel Perks */
.hotel-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.perk {
  padding: 32px 24px;
  background: rgba(36, 24, 18, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--r-md);
  text-align: center;
  transition: border-color 0.3s;
}

.perk:hover { border-color: rgba(212, 175, 55, 0.3); }

.perk-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.perk h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.perk p {
  font-size: 0.82rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.7;
}

/* ========================
   STUDIOS SECTION
======================== */
.studios {
  background: var(--bg-deep);
}

.studios-episodes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.episode-card {
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.episode-card:hover {
  border-color: rgba(184, 115, 51, 0.4);
  transform: translateY(-4px);
}

.ep-img-placeholder {
  aspect-ratio: 2/3;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-raised) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(184, 115, 51, 0.3);
  font-size: 0.72rem;
  text-align: center;
  padding: 20px;
  position: relative;
}

.ep-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184, 115, 51, 0.2);
  line-height: 1;
}

.ep-info { padding: 20px; }

.ep-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 6px;
}

.ep-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.ep-info p {
  font-size: 0.78rem;
  color: rgba(245, 230, 200, 0.55);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ep-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.2);
  color: var(--copper);
}

.ep-status.coming {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.studios-cta {
  text-align: center;
  padding: 48px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.15);
  border-radius: var(--r-lg);
}

.studios-cta p {
  font-size: 0.97rem;
  color: rgba(245, 230, 200, 0.7);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* ========================
   INVESTORS SECTION
======================== */
.investors {
  background: var(--bg-dark);
  position: relative;
}

.investors-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 175, 55, 0.04), transparent);
}

/* Tokenomics */
.tokenomics {
  margin-bottom: 80px;
}

.tokenomics-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tk-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tk-bar {
  width: calc(var(--fill) * 3.5);
  min-width: 40px;
  height: 40px;
  background: var(--color);
  opacity: 0.8;
  border-radius: 4px;
  flex-shrink: 0;
  transition: opacity 0.3s;
  position: relative;
  overflow: hidden;
}

.tk-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.tk-item:hover .tk-bar { opacity: 1; }

.tk-details {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.tk-pct {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  min-width: 52px;
}

.tk-name {
  font-size: 0.9rem;
  color: var(--cream-dim);
  flex: 1;
}

.tk-amount {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(245, 230, 200, 0.4);
}

/* Roadmap */
.roadmap {
  margin-bottom: 80px;
}

.roadmap-track {
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}

.roadmap-line {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), rgba(184, 115, 51, 0.15));
}

.roadmap-phases {
  display: flex;
  gap: 0;
  min-width: 900px;
}

.phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-top: 8px;
}

.phase-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid rgba(184, 115, 51, 0.25);
  z-index: 1;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.phase.done .phase-dot {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: var(--glow-copper);
}

.phase.active .phase-dot {
  background: transparent;
  border-color: var(--gold);
  border-width: 3px;
  box-shadow: var(--glow-gold);
  animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.6); }
}

.phase-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phase-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.phase-content h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}

.phase-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(245, 230, 200, 0.4);
}

/* Team */
.team { margin-bottom: 80px; }

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

.team-card {
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
  border-color: rgba(184, 115, 51, 0.35);
  transform: translateY(-3px);
}

.team-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-raised));
  border: 2px solid rgba(184, 115, 51, 0.2);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tpp-icon { font-size: 2.5rem; }

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}

.team-card p {
  font-size: 0.82rem;
  color: rgba(245, 230, 200, 0.55);
  line-height: 1.65;
}

/* Partners */
.partners { margin-bottom: 80px; }

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.partner-logo {
  padding: 16px 32px;
  background: rgba(36, 24, 18, 0.5);
  border: 1px solid rgba(184, 115, 51, 0.12);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(245, 230, 200, 0.4);
  transition: border-color 0.3s, color 0.3s;
  /* REPLACE: Replace text with actual partner logo images */
}

.partner-logo:hover {
  border-color: rgba(184, 115, 51, 0.3);
  color: var(--cream-dim);
}

/* Investor CTA */
.investor-cta-card {
  padding: 60px;
  text-align: center;
}

.investor-cta-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.investor-cta-card p {
  font-size: 0.97rem;
  color: rgba(245, 230, 200, 0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.icta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.icta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(184, 115, 51, 0.12);
}

.icta-stat { text-align: center; }

.icta-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.icta-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ========================
   CONTACT SECTION
======================== */
.contact {
  background: var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.contact-item:first-child { padding-top: 0; }

.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.ci-text h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.ci-text p, .ci-text a {
  font-size: 0.87rem;
  color: rgba(245, 230, 200, 0.6);
  line-height: 1.6;
}

.ci-text a:hover { color: var(--copper); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 32px;
}

.social-link {
  padding: 8px 18px;
  background: rgba(36, 24, 18, 0.6);
  border: 1px solid rgba(184, 115, 51, 0.18);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 230, 200, 0.55);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(184, 115, 51, 0.08);
}

/* Contact Form */
.contact-form {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(36, 24, 18, 0.6);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 230, 200, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
}

.form-group select option {
  background: var(--bg-mid);
  color: var(--cream);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(245, 230, 200, 0.35);
  text-align: center;
  margin-top: -8px;
}

/* ========================
   FOOTER
======================== */
.footer-top {
  background: var(--bg-mid);
  border-top: 1px solid rgba(184, 115, 51, 0.12);
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 230, 200, 0.5);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(36, 24, 18, 0.8);
  border: 1px solid rgba(184, 115, 51, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(245, 230, 200, 0.4);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.footer-col h6 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 0.85rem;
  color: rgba(245, 230, 200, 0.45);
  transition: color 0.25s;
}

.footer-col li a:hover { color: var(--cream-dim); }

.footer-bottom {
  background: var(--bg-deep);
  border-top: 1px solid rgba(184, 115, 51, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 230, 200, 0.25);
  text-align: center;
  line-height: 1.6;
}

/* ========================
   BACK TO TOP
======================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  color: var(--bg-deep);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-3px); }

/* ========================
   RESPONSIVE — TABLET
======================== */
@media (max-width: 1100px) {
  .token-dashboard { grid-template-columns: 1fr 1fr 1fr; }
  .token-price-card { grid-column: span 3; }
  .studios-episodes { grid-template-columns: repeat(3, 1fr); }
  .cafe-features-grid { grid-template-columns: 1fr 1fr; }
  .hotel-perks { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 80px 0; }
  .container { padding: 0 24px; }

  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-content { padding-left: 0; }
  .story-img-badge { right: 0; bottom: -16px; }

  .tower-layout { grid-template-columns: 1fr; gap: 48px; }
  .tower-visual { order: -1; }
  .tower-features { grid-template-columns: 1fr 1fr; }

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

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

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

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

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 680px) {
  section { padding: 60px 0; }

  .hero-stats { flex-direction: column; gap: 0; padding: 24px 32px; }
  .stat-divider { width: 40px; height: 1px; }
  .stat { padding: 16px 0; }

  .flow { flex-direction: column; align-items: center; }
  .flow-arrow { transform: none; padding: 8px 0; margin-top: 0; }

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

  .token-dashboard { grid-template-columns: 1fr 1fr; }
  .token-price-card { grid-column: span 2; }

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

  .cafe-features-grid { grid-template-columns: 1fr; }

  .hotel-perks { grid-template-columns: 1fr; }

  .studios-episodes { grid-template-columns: 1fr 1fr; }

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

  .eco-flow-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .eco-arrow { transform: rotate(90deg); align-self: center; }

  .tokenomics-grid { gap: 12px; }
  .tk-bar { min-width: 20px; width: calc(var(--fill) * 1.8); }

  .roadmap-phases { min-width: 700px; }

  .investor-cta-card { padding: 36px 24px; }
  .buy-card { padding: 32px 24px; }
  .contact-form { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .tower-features { grid-template-columns: 1fr; }

  .studios-episodes { grid-template-columns: 1fr; }
}

/* ========================
   REDUCED MOTION
======================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
