/* ============================================================
   TangoPenguin — Parent Brand Homepage
   Design tokens mirrored from TangoPenguin GO visual system
   ============================================================ */

:root {
  --ink:   #0c1622;
  --navy:  #2d4158;
  --amber: #f5a040;
  --amber2:#e8922e;
  --amber-bg:#fdf0e0;
  --fog:   #f8f7f4;
  --white: #ffffff;
  --muted: #5a6e83;
  --border:#dde3ea;
  --r:12px;
  --max:1280px;
  --pad:clamp(24px,5vw,80px);

  /* Parent-site aliases retained so the existing section CSS still works. */
  --navy-deep:    var(--ink);
  --navy-mid:     var(--navy);
  --navy-card:    #253d52;
  --navy-border:  rgba(255,255,255,.12);
  --orange:       var(--amber);
  --orange-dim:   rgba(245,160,64,.12);
  --orange-glow:  rgba(245,160,64,.06);
  --white-dim:    rgba(255,255,255,.55);
  --white-faint:  rgba(255,255,255,.12);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --max-w: var(--max);
  --radius: var(--r);
  --radius-sm: 8px;
  --transition: 0.15s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--fog);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,
.hero-eyebrow,
.product-label,
.btn-primary,
.btn-outline,
.nav-links a,
.nav-cta,
.card-go-badge,
.card-title,
.chip {
  font-family: var(--font-head);
}

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

a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.wrap,
.tp-wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── Focus states ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   HEADER — mirrors TangoPenguin GO
   ============================================================ */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:68px;
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 0 rgba(0,0,0,.04);
}
.nav-inner{max-width:var(--max);height:100%;margin:0 auto;padding:0 var(--pad);display:flex;align-items:center;justify-content:space-between}
.nav-logo{display:block;text-decoration:none;height:24px}
.nav-logo img{height:100%;width:auto;display:block}
.nav-links{display:flex;align-items:center;gap:32px}
.nav-links a{text-decoration:none;color:var(--muted);font-family:var(--font-head);font-size:14px;font-weight:500;transition:color .15s}
.nav-links a:hover{color:var(--ink)}
.nav-cta{
  background:var(--amber);color:var(--ink);
  border:none;border-radius:8px;
  padding:10px 22px;font-family:var(--font-head);font-size:14px;font-weight:700;
  cursor:pointer;text-decoration:none;
  transition:background .15s,transform .15s,box-shadow .15s;
  display:inline-block;
}
.nav-cta:hover{background:var(--amber2);transform:translateY(-1px);box-shadow:0 6px 20px rgba(245,160,64,.4)}
@media(max-width:780px){.nav-links{display:none}}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* Subtle radial glow behind mascot */
.hero::before {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,165,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Background bow-tie motif */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 380px; height: 380px;
  background: var(--white-faint);
  clip-path: polygon(0% 0%, 45% 50%, 0% 100%, 50% 75%, 100% 100%, 55% 50%, 100% 0%, 50% 25%);
  opacity: 0.04;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-copy { max-width: 520px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px,5vw,72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-body {
  font-size: clamp(16px,1.8vw,20px);
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 44px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: var(--amber);
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .15s,transform .15s,box-shadow .15s;
}
.btn-primary:hover {
  background: var(--amber2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,160,64,.45);
}

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

.mascot-wrap {
  position: relative;
  width: min(440px, 100%);
}
.mascot-wrap img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  /* subtle drop shadow with navy-orange warmth */
  filter: drop-shadow(0 32px 48px rgba(24, 37, 52, 0.6));
}

/* Glow disc behind mascot */
.mascot-glow {
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(circle, rgba(245,165,60,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   GO PRODUCT SECTION
   ============================================================ */
.product-section {
  background: var(--navy);
  padding: 100px 0;
}

.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.product-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.product-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white-dim);
  margin-bottom: 32px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.chip {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--navy-border);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white-faint);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.18);
  padding: 15px 28px;
  border-radius: 10px;
  transition: border-color .15s,color .15s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

/* Product card */
.product-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #f9b85a);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-go-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(245,165,60,0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.card-live-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.card-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}

.card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 28px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white-dim);
}

.feature-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FUTURE SECTION
   ============================================================ */
.future-section {
  background: var(--navy-deep);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Bow-tie accent */
.future-bowtie {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.future-bowtie-img {
  width: 56px;
  height: auto;

}

.future-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER — mirrors TangoPenguin GO
   ============================================================ */
footer{
  background:var(--ink);
  padding:0;
}
.footer-inner{
  padding-top:40px;
  padding-bottom:40px;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px;
}
.footer-brand{display:flex;align-items:center;gap:10px}
.footer-brand .wordmark-text{font-size:16px}
footer p{font-size:13px;color:rgba(255,255,255,.25)}
.footer-links{display:flex;gap:24px}
.footer-links a{font-size:13px;color:rgba(255,255,255,.3);text-decoration:none;transition:color .15s}
.footer-links a:hover{color:rgba(255,255,255,.7)}

/* ─── COOKIE CONSENT ─── */
.cookie-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:500;
  max-width:980px;
  margin:0 auto;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 24px 80px rgba(0,0,0,.24);
  padding:20px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}

.cookie-banner[hidden],
.cookie-panel[hidden]{
  display:none;
}

.cookie-banner__copy strong{
  font-family:var(--font-head);
  font-size:15px;
  color:var(--ink);
}

.cookie-banner__copy p{
  margin-top:6px;
  font-size:13px;
  line-height:1.55;
  color:var(--muted);
  max-width:680px;
}

.cookie-banner__actions,
.cookie-panel__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cookie-btn{
  border:0;
  border-radius:9px;
  padding:10px 14px;
  font-family:var(--font-head);
  font-size:12px;
  font-weight:700;
  cursor:pointer;
}

.cookie-btn--primary{
  background:var(--amber);
  color:var(--ink);
}

.cookie-btn--ghost{
  background:var(--fog);
  color:var(--ink);
  border:1px solid var(--border);
}

.cookie-panel{
  position:fixed;
  inset:0;
  z-index:520;
  background:rgba(12,22,34,.58);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.cookie-panel__box{
  width:min(480px,100%);
  background:var(--white);
  border-radius:18px;
  padding:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.3);
}

.cookie-panel__box h3{
  font-size:20px;
  margin-bottom:10px;
  color:var(--ink);
}

.cookie-panel__box p{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:18px;
}

.cookie-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--fog);
  margin-bottom:18px;
}

.cookie-toggle span{
  display:flex;
  flex-direction:column;
  gap:4px;
  color:var(--ink);
}

.cookie-toggle small{
  color:var(--muted);
  font-size:12px;
}

.cookie-toggle input{
  width:22px;
  height:22px;
  accent-color:var(--amber);
}

@media(max-width:760px){
  .cookie-banner{
    grid-template-columns:1fr;
    left:14px;
    right:14px;
    bottom:14px;
  }

  .cookie-banner__actions,
  .cookie-panel__actions{
    justify-content:flex-start;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-copy { max-width: 100%; }
  .hero-headline { font-size: clamp(32px, 7vw, 48px); }
  .hero-eyebrow { margin: 0 auto 24px; }
  .hero-body { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 0; }
  .mascot-wrap { width: min(280px, 70%); margin: 0 auto; }
  .hero::before { display: none; }

  .product-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .wrap,
  .tp-wrap { padding-left: 20px; padding-right: 20px; }

  .nav-cta { font-size: 12px; padding: 9px 16px; }

  .hero-headline { font-size: clamp(28px, 8vw, 40px); }

  .product-card { padding: 28px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
