/* BookingGood — Modern SaaS design system */

:root {
  /* Colors — clean, vivid, modern SaaS */
  --bg: #ffffff;
  --bg-soft: #f8faf9;
  --bg-tint: #f1f5f3;
  --surface: #ffffff;

  --ink: #0a1612;
  --ink-2: #1a2823;
  --ink-3: #4a5953;
  --ink-mute: #6b7570;
  --ink-light: #9aa39e;

  --line: #e8eae9;
  --line-2: #d8dcda;

  --green: #00c389;
  --green-2: #00a574;
  --green-deep: #0a4d36;
  --green-tint: #ecf8f3;

  --gold: #f59e0b;
  --gold-deep: #b45309;
  --gold-tint: #fef3c7;

  --black: #0a1612;
  --dark: #0a1612;
  --dark-2: #0d1b16;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing */
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --content-w: 1200px;
  --reading-w: 720px;

  /* Radius */
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 18, 0.04), 0 1px 3px rgba(10, 22, 18, 0.06);
  --shadow: 0 4px 12px rgba(10, 22, 18, 0.04), 0 12px 24px rgba(10, 22, 18, 0.06);
  --shadow-lg: 0 12px 32px rgba(10, 22, 18, 0.08), 0 32px 64px rgba(10, 22, 18, 0.10);

  /* Easing */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss02";
  letter-spacing: -0.005em;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.15s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--green); color: white; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0; }
p { color: var(--ink-3); font-size: 1.0625rem; line-height: 1.65; }
.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3125rem);
  line-height: 1.5;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--green-tint);
  color: var(--green-deep);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.eyebrow.gold { background: var(--gold-tint); color: var(--gold-deep); }
.eyebrow.dark { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.95); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

/* === LAYOUT === */
.wrap { max-width: var(--content-w); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--reading-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section.tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-dark {
  background: var(--dark);
  background-image: radial-gradient(ellipse at top, #0d2418 0%, var(--dark) 50%);
  color: white;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: white; }
.bg-dark p, .bg-dark .lede { color: rgba(255, 255, 255, 0.7); }
.bg-green {
  background: var(--green-deep);
  background-image: linear-gradient(135deg, #0a4d36 0%, #06291d 100%);
  color: white;
}
.bg-green h1, .bg-green h2 { color: white; }
.bg-green p { color: rgba(255, 255, 255, 0.78); }

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, var(--green) 50%);
  opacity: 0.9;
}
.brand-mark span { position: relative; z-index: 1; }
.brand small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-top: -1px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-3);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
}
.menu a:hover { color: var(--ink); background: var(--bg-soft); }
.menu a.active { color: var(--ink); background: var(--bg-tint); }

.lang {
  display: flex;
  gap: 1px;
  background: var(--bg-tint);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang a {
  padding: 5px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-mute);
  border-radius: var(--r-pill);
  letter-spacing: 0;
  transition: all 0.15s var(--ease);
}
.lang a.active { background: white; color: var(--ink); box-shadow: var(--shadow-sm); }
.lang a:hover:not(.active) { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.18s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 195, 137, 0.2);
}
.btn-green {
  background: var(--green);
  color: white;
}
.btn-green:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 195, 137, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink-3);
}
.btn-light {
  background: white;
  color: var(--ink);
}
.btn-light:hover { background: var(--bg-soft); }
.btn-dark-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.15);
}
.btn-dark-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}
.btn-lg { padding: 0.95rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.875rem; }
.btn-arrow::after {
  content: '→';
  font-size: 1.05em;
  transition: transform 0.18s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* === HERO === */
.hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(ellipse 70% 50% at 70% 0%, rgba(0, 195, 137, 0.10), transparent),
    radial-gradient(ellipse 80% 60% at 0% 60%, rgba(245, 158, 11, 0.06), transparent),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  margin: 1.25rem 0 1.5rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { max-width: 38ch; margin-bottom: 2.25rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-mute);
}
.hero-trust strong {
  display: block;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-trust .accent { color: var(--green); }

/* === HERO PRODUCT MOCKUP === */
.mockup {
  position: relative;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 14px 14px 0;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}
.mockup-bar {
  display: flex;
  gap: 5px;
  padding: 6px 8px;
}
.mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mockup-bar span:first-child { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.mockup-screen {
  background: white;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem;
  min-height: 360px;
}
.mock-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.mock-h-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.mock-h-pill {
  font-size: 0.7rem;
  padding: 3px 9px;
  background: var(--green-tint);
  color: var(--green-deep);
  border-radius: var(--r-pill);
  font-weight: 600;
}
.mock-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1rem;
}
.mock-day {
  aspect-ratio: 1;
  background: var(--bg-tint);
  border-radius: 4px;
  font-size: 0.65rem;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
}
.mock-day.has { background: var(--green-tint); color: var(--green-deep); font-weight: 600; }
.mock-day.sel { background: var(--ink); color: white; font-weight: 700; }
.mock-slots { display: grid; gap: 6px; }
.mock-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: var(--bg-soft);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}
.mock-slot .time { color: var(--ink-mute); }
.mock-slot.book {
  background: var(--ink);
  color: white;
}
.mock-slot.book .time { color: rgba(255,255,255,0.6); }

.mockup-pills {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.mockup-pills.tl { top: 12%; left: -36px; }
.mockup-pills.br { bottom: 18%; right: -28px; align-items: flex-end; }
.float-pill {
  background: white;
  border: 1px solid var(--line);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.float-pill svg { width: 14px; height: 14px; color: var(--green); }
.float-pill .num { color: var(--green); font-weight: 700; }

/* === SECTION HEADERS === */
.s-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.s-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.s-head h2 { margin-top: 1rem; }
.s-head .lede { margin-top: 1rem; max-width: 56ch; }
.s-head.center .lede { margin-left: auto; margin-right: auto; }

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.feature:hover {
  border-color: var(--ink-3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-tint);
  color: var(--green-deep);
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { margin-bottom: 0.5rem; font-size: 1.1875rem; }
.feature p { font-size: 0.9375rem; line-height: 1.55; }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--green-deep);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}
.feature:hover .feature-link { gap: 0.625rem; }

.feature.dark {
  background: var(--dark);
  border-color: rgba(255,255,255,0.08);
  color: white;
}
.feature.dark h3 { color: white; }
.feature.dark p { color: rgba(255,255,255,0.7); }
.feature.dark .feature-icon { background: rgba(0,195,137,0.15); color: var(--green); }

/* === STATS BAND === */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  text-align: left;
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-num.green { color: var(--green); }
.bg-dark .stat-num { color: white; }
.bg-green .stat-num { color: white; }
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.bg-dark .stat-label { color: rgba(255,255,255,0.6); }
.bg-green .stat-label { color: rgba(255,255,255,0.7); }

/* === SPLIT === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split.right { grid-template-columns: 1fr 1.1fr; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  padding: 0.625rem 0;
  align-items: start;
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6L5 8.5L10 3.5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

/* === CARD === */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.card.dark {
  background: var(--dark-2);
  border-color: rgba(255,255,255,0.08);
  color: white;
}

/* === PRICE BREAKDOWN === */
.alloc {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1.25rem 0;
}
.alloc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border-radius: var(--r);
}
.alloc-row.green { background: var(--green-tint); }
.alloc-row.gold { background: var(--gold-tint); }
.alloc-row strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.alloc-row .pct { font-size: 0.78rem; color: var(--ink-mute); font-weight: 500; }
.alloc-row .amt {
  font-weight: 800;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.alloc-row.green .amt { color: var(--green-deep); }
.alloc-row.gold .amt { color: var(--gold-deep); }

/* === PAGE HERO === */
.page-hero {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 60%; height: 280px;
  background: radial-gradient(ellipse at top, rgba(0, 195, 137, 0.08), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero.dark { background: var(--dark); border-bottom-color: rgba(255,255,255,0.06); }
.page-hero.dark::before { background: radial-gradient(ellipse at top, rgba(0, 195, 137, 0.15), transparent 70%); }
.page-hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); max-width: 18ch; margin: 1.25rem 0 1rem; }
.page-hero .lede { max-width: 56ch; }
.page-hero-content { position: relative; }

/* === ARTICLE === */
.article { padding: clamp(3rem, 6vw, 5rem) 0; }
.article h2 { margin: 3rem 0 1.25rem; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 2rem 0 0.75rem; font-size: 1.375rem; }
.article p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.25rem; }
.article ul, .article ol { padding-left: 1.5rem; margin: 1rem 0 1.5rem; color: var(--ink-3); }
.article li { margin-bottom: 0.55rem; line-height: 1.55; }
.article li strong { color: var(--ink); font-weight: 600; }
.article a:not(.btn) {
  color: var(--green-deep);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

/* === DL GRID === */
.dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem 2rem;
  font-size: 0.9375rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dl dt { color: var(--ink-mute); font-weight: 500; }
.dl dd { color: var(--ink); margin: 0; font-weight: 500; }

/* === PRICING / CTA BANNER === */
.cta-banner {
  background: var(--ink);
  background-image: linear-gradient(135deg, var(--ink) 0%, var(--green-deep) 100%);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  border-radius: var(--r-xl);
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 56ch; margin-left: auto; margin-right: auto; margin-bottom: 2rem; }

/* === LOGO ROW === */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
  opacity: 0.55;
}
.logo-row span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
}

/* === FORM === */
.form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 0.45rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  font-size: 0.9375rem;
  background: var(--bg);
  transition: all 0.15s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 195, 137, 0.15);
}

/* === ALERT === */
.alert {
  padding: 1.125rem 1.375rem;
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.alert::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  background-position: center;
  background-repeat: no-repeat;
}
.alert.info {
  background: var(--green-tint);
  color: var(--green-deep);
}
.alert.info::before {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='white'%3E%3Cpath d='M7 0a7 7 0 100 14A7 7 0 007 0zm-.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0zM6 6.5a1 1 0 011-1h.5a.5.5 0 01.5.5v3.5h.5a.5.5 0 010 1h-2a.5.5 0 010-1H6V6.5z'/%3E%3C/svg%3E");
}
.alert.warn {
  background: var(--gold-tint);
  color: var(--gold-deep);
}
.alert.warn::before {
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='white'%3E%3Cpath d='M7 0a7 7 0 100 14A7 7 0 007 0zm-.5 3.5h1v4.5h-1V3.5zm0 6h1v1h-1v-1z'/%3E%3C/svg%3E");
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  background-image: linear-gradient(180deg, var(--dark) 0%, #050a08 100%);
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
  margin-top: clamp(4rem, 8vw, 7rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-grid h4 {
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.625rem; }
.footer-grid a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color 0.15s var(--ease);
}
.footer-grid a:hover { color: var(--green); }
.footer-grid p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; line-height: 1.6; }
.footer-brand .brand { color: white; }
.footer-brand .brand-mark { background: white; color: var(--ink); }
.footer-brand .brand-mark::after { background: linear-gradient(135deg, transparent 50%, var(--green) 50%); }
.footer-brand .brand small { color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* === VIDEO EMBED === */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}
.video-poster:hover { transform: scale(1.02); }
.video-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,18,0.0) 0%, rgba(10,22,18,0.5) 100%);
}
.video-play {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: all 0.2s var(--ease);
}
.video-poster:hover .video-play { background: var(--green); transform: scale(1.08); }
.video-play svg { width: 28px; height: 28px; color: var(--ink); margin-left: 4px; transition: color 0.2s; }
.video-poster:hover .video-play svg { color: white; }
.video-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* === PLACEHOLDER === */
.ph {
  display: inline-block;
  padding: 1px 8px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  border: 1px dashed var(--gold);
  border-radius: 4px;
  font-size: 0.84em;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* === UTIL === */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-mute { color: var(--ink-mute); }
.gap-sm { gap: 0.75rem; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .split, .split.right { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .dl { grid-template-columns: 1fr; gap: 0.5rem 0; }
  .dl dt { color: var(--ink); font-weight: 600; padding-top: 0.75rem; }
  .mockup { transform: none; max-width: 480px; margin: 0 auto; }
  .mockup-pills { display: none; }
}
@media (max-width: 720px) {
  .menu { display: none; }
  .nav-actions .lang { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* === MOTION === */
@media (prefers-reduced-motion: no-preference) {
  .hero h1, .hero .lede, .hero .eyebrow, .hero-cta, .mockup {
    animation: rise 0.7s var(--ease) backwards;
  }
  .hero .eyebrow { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.12s; }
  .hero .lede { animation-delay: 0.22s; }
  .hero-cta { animation-delay: 0.32s; }
  .mockup { animation-delay: 0.4s; animation-duration: 0.9s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
