/* ============================================================
   Joyz — global styles
   Palette: navy #002b50, deep navy #001a33, accent cyan #15c8d1,
            soft bg #f5f8fb, ink #0f1b2d, muted #5a6a7e
============================================================ */

:root {
  --navy: #002b50;
  --navy-deep: #001a33;
  --accent: #15c8d1;
  --accent-2: #0fb3bb;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --bg-soft-2: #eaf1f7;
  --ink: #0f1b2d;
  --muted: #5a6a7e;
  --line: #e2e8f0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(0, 43, 80, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 43, 80, 0.16);
  --container: 1200px;
  --header-h: 76px;
  --font: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }

p { margin: 0 0 1em; color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.78); }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(21, 200, 209, 0.35);
}
.btn-primary:hover { background: var(--accent-2); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .95rem;
  position: relative;
}
.nav-links a:hover { color: var(--accent-2); }
.nav-links a.active { color: var(--accent-2); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 12vw, 140px) 0 clamp(64px, 10vw, 120px);
  background:
    radial-gradient(ellipse at 80% -10%, rgba(21, 200, 209, 0.18), transparent 55%),
    radial-gradient(ellipse at -10% 110%, rgba(0, 43, 80, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-art .blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #003a6e 60%, var(--accent-2) 100%);
  border-radius: 38% 62% 60% 40% / 50% 40% 60% 50%;
  filter: blur(.5px);
  box-shadow: var(--shadow-lg);
}
.hero-art .ring {
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(21, 200, 209, .35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-art .pad {
  position: absolute; inset: 18%;
  display: grid;
  place-items: center;
}
.hero-art .pad svg { width: 70%; height: 70%; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Trust strip ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.metric .num {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800; color: var(--navy);
}
.metric .label { font-size: .9rem; color: var(--muted); margin-top: 4px; }

/* ---------- Pillars / Cards ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 200, 209, .35);
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(21,200,209,.18), rgba(0,43,80,.08));
  color: var(--navy);
  margin-bottom: 18px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card ul {
  margin: 14px 0 0; padding: 0; list-style: none;
}
.card ul li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: .96rem;
  color: var(--ink);
}
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ---------- Productions ---------- */
.productions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prod {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.prod .visual {
  height: 200px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), #003a6e) center/cover no-repeat;
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.prod .visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 26, 51, 0.15) 0%, rgba(0, 26, 51, 0.6) 100%);
  z-index: 1;
}
.prod .visual::after {
  content: "";
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(21,200,209,.25), transparent 55%);
  z-index: 1;
}
.prod .visual svg { width: 64px; height: 64px; color: #fff; position: relative; z-index: 2; opacity: .95; }
.prod:hover .visual { transform: none; }
.prod .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero illustration */
.hero-art .scene {
  width: 100%;
  display: block;
}
.hero-art .scene svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 43, 80, 0.18));
}
@keyframes joyz-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes joyz-bounce-1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes joyz-bounce-2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes joyz-bounce-3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes joyz-bounce-4 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(9px); } }
.hero-art .scene .bounce-1 { transform-box: fill-box; transform-origin: center; animation: joyz-bounce-1 5s ease-in-out infinite; }
.hero-art .scene .bounce-2 { transform-box: fill-box; transform-origin: center; animation: joyz-bounce-2 6s ease-in-out infinite; animation-delay: .4s; }
.hero-art .scene .bounce-3 { transform-box: fill-box; transform-origin: center; animation: joyz-bounce-3 4.6s ease-in-out infinite; animation-delay: .9s; }
.hero-art .scene .bounce-4 { transform-box: fill-box; transform-origin: center; animation: joyz-bounce-4 5.4s ease-in-out infinite; animation-delay: 1.3s; }
@keyframes joyz-float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes joyz-float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes joyz-pulse  { 0%,100% { opacity: .35; } 50% { opacity: .65; } }
.hero-art .scene .float-a { animation: joyz-float-a 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.hero-art .scene .float-b { animation: joyz-float-b 6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.hero-art .scene .pulse   { animation: joyz-pulse 4s ease-in-out infinite; }
.hero-art .scene .spin {
  animation: joyz-spin 6s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Showcase strip */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.showcase .shot {
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.showcase .shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.showcase .shot:hover img { transform: scale(1.05); }
.showcase .shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,26,51,.7) 100%);
}
.showcase .shot span {
  position: absolute;
  left: 18px; bottom: 14px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}

/* About image block */
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.prod h3 { margin-bottom: 6px; }
.prod p { flex: 1; font-size: .96rem; }
.prod-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.prod-link {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 600;
}
.prod-link:hover { border-color: var(--accent); color: var(--accent-2); }

/* Google Play store button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  align-self: flex-start;
  margin-top: 18px;
}
.btn-play:hover {
  background: #003a6e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 43, 80, 0.18);
}
.btn-play svg { width: 26px; height: 26px; flex: 0 0 auto; }
.btn-play-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-play-small { font-size: .65rem; opacity: .8; letter-spacing: .08em; }
.btn-play-big { font-size: 1.05rem; font-weight: 700; }

/* ---------- Process / Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .92rem; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(21,200,209,.35), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.78); margin: 0; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Page hero (smaller for inner pages) ---------- */
.page-hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(40px, 5vw, 60px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(21, 200, 209, 0.16), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.page-hero .container { max-width: 880px; text-align: center; }
.page-hero p { font-size: 1.08rem; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.contact-info h3 { color: #fff; }
.contact-info p { color: rgba(255,255,255,.8); }
.contact-info .info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-info .info-item:first-of-type { border-top: 0; padding-top: 0; }
.contact-info .info-item svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.contact-info .info-item a { color: #fff; font-weight: 600; }
.contact-info .info-item a:hover { color: var(--accent); }
.contact-info .label { font-size: .82rem; color: rgba(255,255,255,.6); display:block; }

form.joyz-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(21, 200, 209, .18);
}
.field.is-error input, .field.is-error select, .field.is-error textarea {
  border-color: #d64545;
  background: #fff7f7;
}
.field.is-error input:focus, .field.is-error select:focus, .field.is-error textarea:focus {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, .15);
}
.field.is-error label { color: #b03030; }
.field-error {
  margin-top: 6px;
  font-size: .85rem;
  color: #b03030;
  font-weight: 500;
  line-height: 1.3;
}
.form-status {
  margin-top: 14px;
  font-size: .95rem;
  font-weight: 600;
  min-height: 1.4em;
}
.form-status.success { color: #128a4a; }
.form-status.error { color: #c0392b; }

/* ---------- Long-form legal pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 { margin-top: 2.2em; }
.legal h3 { margin-top: 1.6em; }
.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 22px; }
.legal small { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid h4 {
  color: #fff; font-size: 1rem; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: .08em;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { padding: 6px 0; font-size: .95rem; }
.footer-grid ul a { color: rgba(255,255,255,.78); }
.footer-grid ul a:hover { color: var(--accent); }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .95rem; max-width: 320px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { margin: 0 auto; max-width: 380px; }
  .pillars, .productions { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .cta-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .showcase { grid-template-columns: 1fr; }

  /* Force any inline 2-col grids on this site to stack on tablet/phone. */
  .container[style*="grid-template-columns:1fr 1fr"],
  .container[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .menu-toggle { display: block !important; }
  /* Hide the "Get in touch" pill on mobile — Contact lives in the menu drawer */
  .nav-cta .btn-primary { display: none !important; }

  /* Mobile menu: completely hidden by default, shown only when toggled. */
  .nav-links {
    display: none !important;
    position: fixed;
    left: 0; right: 0;
    top: var(--header-h);
    flex-direction: column;
    background: #fff;
    padding: 16px 24px 24px;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 60;
    gap: 0;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex !important; }
  .nav-links li { width: 100%; border-top: 1px solid var(--line); }
  .nav-links li:first-child { border-top: 0; }
  .nav-links a { display: block; padding: 14px 0; font-size: 1.05rem; }

  /* Hero on mobile: tighten and center */
  .hero { padding: 56px 0 48px; }
  .hero-grid { text-align: center; }
  .hero-grid > .reveal:first-child { display: flex; flex-direction: column; align-items: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 340px; margin: 0 auto; }
  .metrics { margin-top: -32px; }

  /* Tighten padding for inline styled sections on mobile */
  .cta-banner .cta-actions a { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; padding: 20px; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero p.lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .container { padding: 0 18px; }
  .nav-cta { gap: 6px; }
  .brand img { height: 32px; }
}
