/* ── SHARED DESIGN TOKENS ────────────────────────────── */
:root {
  --bg-dark:    #052130;
  --hl-1:       #F24405;
  --hl-2:       #348888;
  --hl-3:       #22BABB;
  --hl-4:       #9EF8EE;
  --hl-5:       #FA7F08;
  --bg-light:   #E0E0E0;
  --text-dark:  #052130;
  --text-light: #E0E0E0;

  --t-xs:  8px;
  --t-sm:  13px;
  --t-md:  21px;
  --t-lg:  34px;
  --t-xl:  55px;
  --t-2xl: 89px;

  --max-w: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: var(--t-sm);
  background: #fff;
  color: var(--text-dark);
}

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

nav { background: var(--bg-dark); height: 52px; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-size: var(--t-sm); font-weight: 700; color: #fff; letter-spacing: 0.01em; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: var(--t-sm); color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--hl-4); }

.hero { background: #fff; padding: 72px 0 80px; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 61.8fr 38.2fr; gap: 48px; align-items: center; }
.hero-left h1 { font-size: clamp(34px, 4vw, 55px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--text-dark); margin-bottom: 20px; }
.hero-left p { font-size: var(--t-sm); line-height: 1.65; color: #444; }
.hero-right { display: flex; align-items: center; justify-content: flex-end; }

#hero-lottie {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
}

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--hl-5); color: #fff; font-size: var(--t-sm); font-weight: 600; padding: 10px 20px; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.btn-primary:hover { background: var(--hl-1); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-dark); font-size: var(--t-sm); font-weight: 500; padding: 9px 18px; border-radius: 4px; border: 1.5px solid #ccc; text-decoration: none; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--hl-2); color: var(--hl-2); }
.play-icon { width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 9px; border-color: transparent transparent transparent currentColor; display: inline-block; }

.section-divider { height: 1px; background: #e8e8e8; }

.features { background: #f5f5f5; padding: 64px 0 80px; }
.features .container h2 { font-size: var(--t-lg); font-weight: 700; letter-spacing: -0.02em; color: var(--text-dark); margin-bottom: 8px; }
.features-sub { font-size: var(--t-sm); color: #666; margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 28px 24px 32px; transition: box-shadow 0.2s, border-color 0.2s; }
.feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: var(--hl-2); }
.feature-icon { width: 40px; height: 40px; margin-bottom: 20px; color: var(--hl-5); }
.feature-card h3 { font-size: var(--t-sm); font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { font-size: var(--t-sm); line-height: 1.6; color: #555; }

.feat-section { background: #fff; padding: 80px 0 96px; }
.feat-header { display: grid; grid-template-columns: 61.8fr 38.2fr; gap: 48px; align-items: end; margin-bottom: 64px; padding-bottom: 40px; border-bottom: 1px solid #e8e8e8; }
.feat-eyebrow { font-size: var(--t-xs); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hl-5); margin-bottom: 12px; }
.feat-header h2 { font-size: var(--t-lg); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-dark); }
.feat-header-right p { font-size: var(--t-sm); line-height: 1.7; color: #555; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.feat-item { display: flex; align-items: flex-start; gap: 18px; padding: 28px 32px 28px 0; border-bottom: 1px solid #f0f0f0; transition: background 0.2s; }
.feat-item:nth-child(odd) { padding-right: 48px; border-right: 1px solid #f0f0f0; }
.feat-item:nth-child(even) { padding-left: 48px; padding-right: 0; }
.feat-item:nth-last-child(-n+2) { border-bottom: none; }
.feat-item:hover { background: #fafafa; }
.feat-icon-wrap { flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; background: #fff5ec; border: 1px solid #ffe0c2; display: flex; align-items: center; justify-content: center; color: var(--hl-5); margin-top: 2px; }
.feat-text h3 { font-size: var(--t-sm); font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.feat-text p { font-size: var(--t-sm); line-height: 1.65; color: #666; }

.footer { background: var(--bg-dark); color: var(--text-light); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 64px var(--gutter) 56px; display: grid; grid-template-columns: 61.8fr 19.1fr 19.1fr; gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-size: var(--t-md); font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-tagline { font-size: var(--t-sm); line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 360px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer-social a:hover { border-color: var(--hl-3); color: var(--hl-4); background: rgba(34,186,187,0.08); }
.footer-col h4 { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: var(--t-sm); color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--hl-4); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 20px var(--gutter); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: var(--t-xs); color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: var(--t-xs); color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { justify-content: flex-start; }
  #hero-lottie { max-width: 360px; }
  .feat-header { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #hero-lottie { max-width: 280px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .feat-item:nth-child(even) { padding-left: 0; }
  .nav-links { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── TEXT COLOUR UTILITIES ───────────────────────────── */
.text-orange  { color: #FA7F08; }
.text-teal    { color: #348888; }
.text-cyan    { color: #22BABB; }
.text-lcyan   { color: #9EF8EE; }
.text-red     { color: #F24405; }
.text-dark    { color: #052130; }
.text-light   { color: #E0E0E0; }