/* ============================================================
   First Then Board — ChipTech LLC
   Main Stylesheet
   ============================================================ */

:root {
  --navy:       #141831;
  --navy-mid:   #1e2454;
  --navy-dark:  #0d1124;
  --gold:       #C9A227;
  --gold-light: #e0b83a;
  --gold-dim:   rgba(201, 162, 39, 0.1);
  --gold-glow:  rgba(201, 162, 39, 0.22);
  --silver:     #B4B8C5;
  --white:      #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --radius:     14px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lift: 0 20px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.18);
  --ease: 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(201,162,39,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--white); }

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center .eyebrow { display: flex; justify-content: center; }

/* ── GOLD BAR ── */
.gold-bar {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.15));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.gold-bar.centered {
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  margin-left: auto;
  margin-right: auto;
}

/* ── LOGO ── */
.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  border-color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(201,162,39,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,162,39,0.5);
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.btn-dark:hover {
  background: #0a0e1e;
  border-color: rgba(201,162,39,0.3);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.78rem; border-radius: 6px; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 17, 36, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.18);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--white) !important;
}
.brand-first { color: var(--white); }
.brand-then { color: var(--gold); }
.brand-board { color: var(--silver); font-weight: 600; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold); }

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

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; }

.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.chevron { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 12px;
  min-width: 230px;
  padding: 0.5rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.6);
  z-index: 200;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--white) !important;
  transition: background var(--ease);
}
.dropdown-menu li a:hover { background: rgba(201,162,39,0.08); }

.drop-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.drop-sub {
  font-size: 0.75rem;
  color: var(--silver);
  opacity: 0.8;
  margin-top: 2px;
}

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(-4px); }
  50%       { transform: translateY(6px); }
}

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

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 1.5rem 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner { flex: 1; max-width: 560px; }

/* Hero entrance animations */
.hero .eyebrow {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.1s;
}
.hero h1 {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.2s;
}
.hero-sub {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.3s;
}
.hero-body {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.4s;
}
.hero-buttons {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.5s;
}
.coming-soon {
  animation: fadeInUp 0.55s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.6s;
}
.hero-art {
  animation: fadeInUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.3s;
}

.hero h1 { margin-bottom: 0.5rem; }
.hero-sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 1.25rem;
}
.hero-body { font-size: 1.05rem; margin-bottom: 2rem; color: var(--silver); line-height: 1.8; }

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.coming-soon {
  font-size: 0.75rem;
  color: var(--silver);
  opacity: 0.5;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Hero emblem (company homepage) */
.hero-emblem {
  width: 340px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 80px rgba(201,162,39,0.25));
}

/* Hero board preview */
.hero-art {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Warm ambient glow behind board */
.hero-art::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.14) 0%, transparent 68%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

.board-preview {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.board-card {
  background: var(--navy-mid);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  width: 148px;
  border: 1.5px solid rgba(201,162,39,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.first-card {
  animation: float 4.5s ease-in-out infinite;
  border-color: rgba(201,162,39,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 24px rgba(201,162,39,0.12);
}

.then-card {
  animation: floatB 4.5s ease-in-out infinite;
  border-color: rgba(110,181,255,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 24px rgba(110,181,255,0.08);
}

.board-card-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 0.85rem;
}

.first-card .board-card-label { color: var(--gold); }
.then-card .board-card-label { color: #6eb5ff; }

.board-card-icon { font-size: 2.75rem; margin-bottom: 0.6rem; }

.board-card-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.board-arrow {
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 800;
  opacity: 0.8;
  flex-shrink: 0;
}

/* ── STORY ── */
.story {
  background: var(--navy-mid);
  padding: 100px 1.5rem;
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
  position: relative;
  overflow: hidden;
}

/* Subtle corner accent */
.story::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.story-inner {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.story-text { flex: 1; }

.story-quote {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
}

blockquote {
  position: relative;
  background: rgba(201,162,39,0.05);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  font-style: normal;
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  pointer-events: none;
}

blockquote p,
blockquote > :not(cite) {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* If blockquote has no <p> wrapper */
blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}

/* ── FEATURES ── */
.features { padding: 100px 1.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(201,162,39,0.1);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.feature-card:hover {
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,162,39,0.15);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px;
}

.feature-body { display: flex; flex-direction: column; }
.feature-card h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.1rem; }
.feature-card p { font-size: 0.93rem; color: var(--silver); margin: 0; line-height: 1.7; }

/* ── SCREENSHOTS ── */
.screenshots {
  background: var(--navy-mid);
  padding: 100px 1.5rem;
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
}

.screenshot-grid {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-placeholder {
  width: 100%;
  height: 300px;
  border: 2px dashed rgba(201,162,39,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* ── CTA ── */
.cta {
  background: var(--gold);
  padding: 100px 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial vignette on gold */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta > * { position: relative; z-index: 1; }
.cta h2 { color: var(--navy); }
.cta p { color: var(--navy); opacity: 0.8; font-size: 1.05rem; margin-bottom: 2rem; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-note {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin: 0 0 1rem;
}

.cta-legal {
  font-size: 0.8rem;
  color: var(--navy);
  opacity: 0.5;
  margin-top: 0.5rem;
}
.cta-legal a { color: var(--navy); text-decoration: underline; }
.cta-legal a:hover { opacity: 1; color: var(--navy); }

/* ── PRICING ── */
.pricing {
  padding: 100px 1.5rem;
  background: var(--navy-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-premium {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,162,39,0.2), 0 24px 64px rgba(201,162,39,0.1);
}

.pricing-card-premium:hover {
  box-shadow: 0 0 0 1px rgba(201,162,39,0.3), 0 32px 80px rgba(201,162,39,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-header h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.pricing-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-list li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-list .pricing-note::before { content: ''; }
.pricing-list .pricing-note {
  padding-left: 0;
  color: var(--silver);
  opacity: 0.45;
  font-style: italic;
  font-size: 0.83rem;
  border-bottom: none;
}

.pricing-card .btn { width: 100%; text-align: center; justify-content: center; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  border-top: 2px solid rgba(201,162,39,0.3);
  padding: 60px 1.5rem 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--silver);
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--silver); font-size: 0.9rem; transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--silver); opacity: 0.45; margin: 0; }
.footer-bottom a { color: var(--silver); opacity: 0.6; }
.footer-bottom a:hover { color: var(--gold); opacity: 1; }

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 120px 1.5rem 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page .legal-meta {
  font-size: 0.85rem;
  color: var(--silver);
  opacity: 0.55;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,162,39,0.18);
}

.legal-page h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 1.25rem;
}

.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: 0.4rem; }
.legal-page a { color: var(--gold); }
.legal-page a:hover { color: var(--white); }

/* ── ABOUT SECTION ── */
.about {
  background: var(--navy-mid);
  padding: 100px 1.5rem;
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text a { color: var(--gold); }
.about-text a:hover { color: var(--white); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-card {
  background: var(--navy);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color var(--ease), transform var(--ease);
}
.value-card:hover {
  border-color: rgba(201,162,39,0.35);
  transform: translateX(4px);
}

.value-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.07);
  border-radius: 10px;
}
.value-body { display: flex; flex-direction: column; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--white); }
.value-card p { font-size: 0.9rem; color: var(--silver); margin: 0; }

/* ── PRODUCTS SECTION ── */
.products { padding: 100px 1.5rem; }

.section-sub {
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  margin-top: -0.25rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.product-card:hover {
  border-color: rgba(201,162,39,0.38);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.product-card-future { border-style: dashed; opacity: 0.75; }
.product-card-future:hover { opacity: 1; }

.product-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,162,39,0.2);
}

.badge-future { background: rgba(180,184,197,0.08); color: var(--silver); border-color: rgba(180,184,197,0.15); }

.product-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* Mini First/Then board (product card preview) */
.mini-board {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mini-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  border: 1.5px solid rgba(201,162,39,0.18);
  min-width: 60px;
}

.mini-first .mini-label { color: var(--gold); }
.mini-then .mini-label { color: #6eb5ff; }

.mini-label {
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.mini-emoji { font-size: 1.25rem; }

.mini-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 800;
}

.product-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; color: var(--white); }
.product-tagline {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.product-desc { font-size: 0.95rem; color: var(--silver); margin-bottom: 1.5rem; line-height: 1.75; }

.product-platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.platform-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(201,162,39,0.18);
}
.platform-coming { background: rgba(180,184,197,0.08); color: var(--silver); border-color: rgba(180,184,197,0.12); }

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--navy-mid);
  padding: 100px 1.5rem;
  border-top: 1px solid rgba(201,162,39,0.12);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold) !important;
  border: 1.5px solid rgba(201,162,39,0.4);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  transition: all var(--ease);
}
.contact-email-link:hover {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}

.contact-links h3 {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.contact-links ul { list-style: none; }
.contact-links li { margin-bottom: 0.75rem; }
.contact-links a {
  font-size: 1rem;
  color: var(--silver) !important;
  font-weight: 500;
  transition: color var(--ease);
}
.contact-links a:hover { color: var(--gold) !important; }

/* ── HERO COMPANY (index.html) ── */
.hero-company { justify-content: space-between; }

/* ── FOOTER 4-col ── */
.footer-inner.four-col { grid-template-columns: 2fr 1fr 1fr 1fr; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-emblem { width: 200px; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-buttons { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art::before { display: none; }
  .text-center .eyebrow,
  .hero .eyebrow { justify-content: center; }

  .story-inner { flex-direction: column; gap: 2.5rem; }
  .story-quote { flex: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 2px solid rgba(201,162,39,0.3);
  }
  .nav-toggle { display: block; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .board-card { width: 120px; padding: 1.25rem; }
  .board-card-icon { font-size: 2.25rem; }
}
