/* ===========================
   CASTED — Landing Page Theme
   Fraunces (display) + DM Sans
   Navy / Amber / Off-white
   =========================== */

:root {
  --navy:      #0f1e38;
  --navy-mid:  #162a4a;
  --navy-deep: #0a1528;
  --amber:     #e8a427;
  --amber-dim: #c8891f;
  --cream:     #f9f7f3;
  --cream-mid: #f0ece3;
  --ink:       #1a1a1a;
  --ink-muted: #555555;
  --rule:      rgba(232,164,39,0.2);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,30,56,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: rgba(249,247,243,0.45);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(232,164,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 20%, rgba(232,164,39,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-deep) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.9;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero-lede {
  font-size: 1.05rem;
  color: rgba(249,247,243,0.7);
  line-height: 1.7;
  max-width: 38ch;
}
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hero-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  min-width: 56px;
  padding-top: 0.1rem;
}
.hero-card-value {
  font-size: 0.85rem;
  color: rgba(249,247,243,0.8);
  line-height: 1.4;
}

/* ===== HERO VISUAL (tackle grid) ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.tackle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}
.tackle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rule);
  border-radius: 10px;
  text-align: center;
}
.tackle-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(249,247,243,0.55);
  text-transform: uppercase;
}
.tackle-shape {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.85;
}
.lure-shape   { border-radius: 40% 60% 50% 50%; transform: rotate(-20deg); }
.reel-shape   { border-radius: 8px; }
.rod-shape    { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
.braid-shape  { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.terminal-shape { clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%); }
.apparel-shape  { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.hero-visual-caption {
  font-size: 0.78rem;
  color: rgba(249,247,243,0.4);
  text-align: center;
  max-width: 28ch;
  line-height: 1.5;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.manifesto-ornament {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  opacity: 0.5;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  letter-spacing: -0.01em;
  border: none;
}
.manifesto-body {
  font-size: 0.95rem;
  color: rgba(249,247,243,0.6);
  max-width: 54ch;
  line-height: 1.75;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--cream);
  padding: 5rem 2rem;
}
.how-inner {
  max-width: 860px;
  margin: 0 auto;
}
.how-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
}
.how-divider {
  width: 1px;
  height: 0;
  background: var(--rule);
  margin-left: 80px;
}
.how-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.2rem;
}
.how-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.how-step-body p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 52ch;
}

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--navy);
  padding: 5rem 2rem;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.outcome-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.outcome-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}
.outcome-card p {
  font-size: 0.88rem;
  color: rgba(249,247,243,0.6);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--navy-deep);
  padding: 6rem 2rem;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 0.95rem;
  color: rgba(249,247,243,0.55);
  max-width: 52ch;
  line-height: 1.75;
}
.closing-signal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(232,164,39,0.1);
  border: 1px solid rgba(232,164,39,0.25);
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
}
.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.signal-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--amber);
}
.footer-motto {
  font-size: 0.8rem;
  color: rgba(249,247,243,0.35);
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(249,247,243,0.25);
  text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { order: -1; }
  .tackle-grid { grid-template-columns: repeat(3, 1fr); }
  .how-step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .how-step-num { font-size: 1.8rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .tackle-item { padding: 0.75rem 0.5rem; }
  .tackle-shape { width: 32px; height: 32px; }
}