/* Daikode site styles — warm light theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-900: #0f1a26;
  --navy-800: #1a2838;
  --navy: #243447;
  --slate: #47607A;
  --slate-soft: #A9BBD0;
  --mist: #E7ECF2;
  --cream: #F6F1E6;
  --cream-2: #EFE8D8;
  --cream-3: #E8DFCB;
  --paper: #FBF8F1;
  --orange: #FFB770;
  --orange-deep: #F59A3E;
  --orange-ink: #7A4A10;
  --green: #7DB08D;
  --ink: #141a20;
}

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

html[lang="en"] [lang="pt"],
html[lang="pt"] [lang="en"] { display: none; }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(36,52,71,0.18);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.06em;
  transition: border-color .2s, background .2s;
}
.lang-toggle:hover { border-color: rgba(36,52,71,0.4); background: rgba(36,52,71,0.03); }
.lang-toggle .l { opacity: 0.38; transition: opacity .2s, color .2s; }
.lang-toggle .sep { opacity: 0.3; }
html[lang="en"] .lang-toggle .l-en,
html[lang="pt"] .lang-toggle .l-pt { opacity: 1; color: var(--orange-deep); }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography scale */
.h1 { font-size: clamp(48px, 7vw, 96px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; color: var(--navy); }
.h2 { font-size: clamp(36px, 4.5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; color: var(--navy); }
.h3 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 600; line-height: 1.15; letter-spacing: -0.015em; color: var(--navy); }
.h4 { font-size: 20px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; color: var(--navy); }
.eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--orange-deep);
}
.body-lg { font-size: 18px; line-height: 1.65; color: var(--slate); }
.body { font-size: 16px; line-height: 1.65; color: var(--slate); }
.caption { font-size: 12px; line-height: 1.4; color: var(--slate); }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 10px 24px rgba(36,52,71,.2);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-800); box-shadow: 0 14px 32px rgba(36,52,71,.3); }
.btn-accent {
  background: var(--orange); color: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 10px 24px rgba(255,183,112,.3);
}
.btn-accent:hover { transform: translateY(-2px); background: #FFC488; }
.btn-secondary {
  border: 1.5px solid rgba(36,52,71,.25); color: var(--navy);
}
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-2px); background: rgba(36,52,71,.04); }
.btn-ghost { color: var(--navy); padding: 14px 10px; }
.btn-ghost:hover { color: var(--orange-deep); }
.on-dark .btn-secondary { border-color: rgba(231,236,242,.25); color: var(--cream); }
.on-dark .btn-secondary:hover { border-color: var(--cream); background: rgba(255,255,255,.04); }
.on-dark .btn-ghost { color: var(--cream); }

/* Sections */
section { position: relative; }
.section-pad { padding: 140px 0; }
.hr { height: 1px; background: rgba(36,52,71,.08); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 241, 230, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(36,52,71,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--navy); }
.nav-brand .dog-mark { width: 40px; height: 40px; object-fit: contain; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 500;
  color: var(--slate); transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--navy); background: rgba(36,52,71,.06); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  .section-pad { padding: 96px 0; }
}

/* HERO shared */
.hero { position: relative; overflow: hidden; isolation: isolate; padding-top: 140px; background: var(--cream); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(255,183,112,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(125,176,141,.15), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-grid-dots {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(36,52,71,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
}

/* Hero A: editorial warm */
.heroA .hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
  padding-block: 80px 120px;
}
.heroA .tag {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,183,112,.2); border: 1px solid rgba(245,154,62,.35);
  color: var(--orange-ink); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 28px;
}
.heroA .tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-deep); box-shadow: 0 0 0 0 rgba(245,154,62,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(245,154,62,.6);} 70%{box-shadow:0 0 0 12px rgba(245,154,62,0);} 100%{box-shadow:0 0 0 0 rgba(245,154,62,0);} }
.heroA h1 .accent { color: var(--orange-deep); }
.heroA h1 .underline { position: relative; white-space: nowrap; }
.heroA h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 10px;
  background: var(--orange); opacity: .55; border-radius: 4px;
}
.heroA .lede { margin-top: 28px; max-width: 520px; font-size: 19px; line-height: 1.6; color: var(--slate); }
.heroA .hero-cta { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.heroA .hero-stats {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid rgba(36,52,71,.12); max-width: 520px;
}
.heroA .stat .k { font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.heroA .stat .l { font-size: 12px; color: var(--slate); margin-top: 2px; text-transform: uppercase; letter-spacing: .12em; }

/* Hero phone + MASCOT wrapper */
.hero-phone-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 680px;
}
.hero-phone-shape {
  position: absolute; z-index: 0;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--slate-soft) 0%, #C5D1E0 65%, transparent 100%);
  opacity: .6;
}
.hero-phone-ring {
  position: absolute; z-index: 0;
  width: 580px; height: 580px; border-radius: 50%;
  border: 1.5px dashed rgba(36,52,71,.22);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Big hero mascot */
.hero-mascot {
  position: absolute; z-index: 3;
  width: 180px; height: 180px;
  top: 20px; left: -110px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(36,52,71,.25));
  animation: mascot-bob 5s ease-in-out infinite;
}
@media (max-width: 980px) {
  .hero-mascot { width: 130px; height: 130px; top: -10px; left: -20px; }
}
@keyframes mascot-bob { 0%,100%{transform: translateY(0) rotate(-3deg);} 50%{transform: translateY(-8px) rotate(2deg);} }

.floating-chip {
  position: absolute; z-index: 2;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(36,52,71,.1);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--navy); font-weight: 500;
  box-shadow: 0 20px 40px rgba(36,52,71,.15);
  animation: floaty 6s ease-in-out infinite;
}
.floating-chip .icon {
  width: 26px; height: 26px; border-radius: 8px; background: var(--orange);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.floating-chip.c2 { top: 62%; right: -4%; animation-delay: 1.2s; }
.floating-chip.c3 { bottom: 8%; left: 6%; animation-delay: 2.4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* iPhone mockup */
.iphone {
  width: 320px; aspect-ratio: 320/650;
  background: #0B1218; border-radius: 48px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1b2835,
    0 0 0 4px #0B1218,
    0 60px 120px -20px rgba(36,52,71,.45),
    0 30px 60px -20px rgba(36,52,71,.5);
  position: relative; z-index: 2;
}
.iphone-screen { width: 100%; height: 100%; border-radius: 38px; overflow: hidden; position: relative; background: var(--mist); }
.iphone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #0B1218; border-radius: 20px; z-index: 4; }

/* App screen: BrewCraft — Live recipe preview */
.app-brew {
  height: 100%;
  background: linear-gradient(165deg, #1E1410 0%, #2A1C14 52%, #3A2618 100%);
  color: #FAF7F2;
  padding: 54px 22px 22px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.app-brew .brew-topline {
  position: absolute; top: 50px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, rgba(232,160,48,0) 0%, rgba(232,160,48,0.45) 50%, rgba(232,160,48,0) 100%);
}
.app-brew .brew-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: .02em;
}
.brew-preview-row {
  display: flex; align-items: center; gap: 7px;
  margin-top: 18px;
}
.brew-preview-badge {
  display: inline-flex; align-items: center; gap: 7px;
}
.brew-preview-badge .dot-wrap {
  width: 14px; height: 14px; border-radius: 999px;
  background: rgba(232,160,48,0.18); border: 1px solid rgba(232,160,48,0.4);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brew-preview-badge .dot { width: 5px; height: 5px; border-radius: 999px; background: #E8A030; display: block; }
.brew-preview-badge .label {
  font-size: 8px; font-weight: 600; letter-spacing: 0.18em;
  color: #E8A030; text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.brew-preview-meta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 8px; font-weight: 500; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.48); text-transform: uppercase;
}
.brew-preview-meta .sep {
  width: 1px; height: 9px; background: rgba(232,160,48,0.3);
}
.brew-eta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.brew-title-block { margin-top: 10px; }
.brew-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; font-weight: 400; letter-spacing: -0.01em; line-height: 1.1;
  color: #FAF7F2;
  text-shadow: 0 2px 14px rgba(30,20,16,0.5);
}
.brew-meta {
  margin-top: 4px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.brew-glass-wrap {
  position: relative;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  margin: 4px 0;
  min-height: 130px;
}
.brew-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,160,48,0.35) 0%, rgba(212,136,42,0.18) 35%, rgba(42,28,20,0) 72%);
  border-radius: 50%;
  pointer-events: none;
  animation: brew-glow-pulse 5.5s ease-in-out infinite;
}
@keyframes brew-glow-pulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}
.brew-glass {
  position: relative;
  width: 96px; height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  animation: brew-glass-sway 6s ease-in-out infinite;
  transform-origin: 50% 95%;
}
@keyframes brew-glass-sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-1.5px) rotate(0.5deg); }
  75%      { transform: translateY(-1px) rotate(-0.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .brew-glow, .brew-glass { animation: none; }
}
.brew-srm-legend {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.brew-srm-legend span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8px; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.brew-srm-legend .cur {
  color: #E8A030; font-weight: 600; letter-spacing: 0.04em;
}
.brew-srm-bar {
  position: relative;
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #E9D48A 0%, #E8B85B 12%, #E8A046 25%, #D88838 37%, #C4752B 50%, #A5571C 62%, #7C3E15 75%, #4E2610 87%, #2A160B 100%);
  cursor: ew-resize;
}
.brew-srm-bar .thumb {
  position: absolute; top: 50%; left: 27%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 999px;
  background: #E8A030; border: 2px solid #FAF7F2;
  box-shadow: 0 0 0 1px rgba(44,24,16,0.5), 0 0 10px rgba(232,160,48,0.7);
  display: flex; align-items: center; justify-content: center;
  animation: brew-pulse 2.4s ease-in-out infinite;
}
.brew-srm-bar .thumb .grip {
  width: 4px; height: 6px;
  background:
    linear-gradient(#2C1810, #2C1810) left/1px 100% no-repeat,
    linear-gradient(#2C1810, #2C1810) center/1px 100% no-repeat,
    linear-gradient(#2C1810, #2C1810) right/1px 100% no-repeat;
  opacity: 0.55;
}
@keyframes brew-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(44,24,16,0.5), 0 0 10px rgba(232,160,48,0.7), 0 0 0 0 rgba(232,160,48,0.55); }
  50%      { box-shadow: 0 0 0 1px rgba(44,24,16,0.5), 0 0 10px rgba(232,160,48,0.7), 0 0 0 8px rgba(232,160,48,0); }
}

/* Ingredient sliders — the draggable controls */
.brew-ingredients {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 9px;
}
.brew-ingredients-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2px;
}
.eyebrow-amber {
  font-size: 8px; font-weight: 600; letter-spacing: 0.2em;
  color: rgba(232,160,48,0.75); text-transform: uppercase;
}
.drag-hint {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 8px; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.drag-hint svg { opacity: 0.6; transform: rotate(90deg); }
.brew-ing-row {
  position: relative;
  display: grid;
  grid-template-columns: 10px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 7px; row-gap: 5px;
  align-items: center;
}
.ing-dot {
  grid-row: 1; grid-column: 1;
  width: 6px; height: 6px; border-radius: 999px;
}
.ing-dot.g { background: #E8A030; box-shadow: 0 0 6px rgba(232,160,48,0.5); }
.ing-dot.h { background: #7BA05B; box-shadow: 0 0 6px rgba(123,160,91,0.5); }
.ing-dot.y { background: #D4AA52; box-shadow: 0 0 6px rgba(212,170,82,0.5); }
.ing-label {
  grid-row: 1; grid-column: 2;
  font-size: 10px; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.88);
}
.ing-val {
  grid-row: 1; grid-column: 3;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
  color: #FAF7F2;
}
.ing-val em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-left: 1px;
}
.ing-track {
  grid-row: 2; grid-column: 1 / -1;
  position: relative;
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.07);
  cursor: ew-resize;
  overflow: visible;
}
.ing-track .fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(232,160,48,0.6), #E8A030);
}
.ing-track .fill.h { background: linear-gradient(90deg, rgba(123,160,91,0.55), #7BA05B); }
.ing-track .fill.y { background: linear-gradient(90deg, rgba(212,170,82,0.55), #D4AA52); }
.ing-track .thumb {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 999px;
  background: #E8A030; border: 1.5px solid #FAF7F2;
  box-shadow: 0 0 0 1px rgba(44,24,16,0.5), 0 0 6px rgba(232,160,48,0.7);
}
.ing-track .thumb.h {
  background: #7BA05B;
  box-shadow: 0 0 0 1px rgba(44,24,16,0.5), 0 0 6px rgba(123,160,91,0.7);
}
.ing-track .thumb.y {
  background: #D4AA52;
  box-shadow: 0 0 0 1px rgba(44,24,16,0.5), 0 0 6px rgba(212,170,82,0.7);
}
.brew-notes {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid rgba(232,160,48,0.12);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.brew-notes-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-weight: 400;
  font-size: 11.5px; line-height: 1.35;
  color: rgba(255,255,255,0.8);
  text-align: center; max-width: 260px;
}
.brew-pills {
  display: flex; flex-wrap: wrap; gap: 5px; justify-content: center;
  margin-top: 2px;
}
.brew-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: 999px;
  font-size: 9px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  border: 1px solid transparent;
}
.brew-pill .d { width: 4px; height: 4px; border-radius: 999px; flex-shrink: 0; }
.brew-pill.p-citrus   { background: rgba(232,160,48,0.12); border-color: rgba(232,160,48,0.28); }
.brew-pill.p-citrus   .d { background: #E8A030; }
.brew-pill.p-pine     { background: rgba(123,160,91,0.12); border-color: rgba(123,160,91,0.32); }
.brew-pill.p-pine     .d { background: #7BA05B; }
.brew-pill.p-tropical { background: rgba(240,168,104,0.12); border-color: rgba(240,168,104,0.32); }
.brew-pill.p-tropical .d { background: #F0A868; }
.brew-pill.p-biscuit  { background: rgba(212,170,82,0.12); border-color: rgba(212,170,82,0.32); }
.brew-pill.p-biscuit  .d { background: #D4AA52; }

/* App screen: Vem Car */
/* App screen: Vem Car — Searching driver */
.app-vem {
  height: 100%;
  background: #0D0D0F;
  color: #FAFAFA;
  padding: 0;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.vem-statusbar {
  position: absolute; top: 16px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 600; color: #FAFAFA;
  z-index: 5; letter-spacing: .02em;
}
.vem-map {
  position: absolute; inset: 0;
  background: #141418;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: -1px -1px;
}
.vem-map::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 32%, rgba(255,212,0,0.04) 0%, transparent 70%);
}
.vem-pulse {
  position: absolute;
  top: 180px; left: 50%;
  width: 140px; height: 140px;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.vem-pulse .ring {
  position: absolute; border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.vem-pulse .ring.r1 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,212,0,0.22) 0%, rgba(255,183,0,0.08) 40%, transparent 70%);
  animation: vem-pulse-fade 2.4s ease-out infinite;
}
.vem-pulse .ring.r2 {
  width: 100px; height: 100px;
  border: 1.2px solid rgba(255,212,0,0.5);
  animation: vem-pulse-grow 2.4s ease-out .3s infinite;
}
.vem-pulse .ring.r3 {
  width: 62px; height: 62px;
  border: 1.2px solid rgba(255,212,0,0.7);
  animation: vem-pulse-grow 2.4s ease-out .6s infinite;
}
@keyframes vem-pulse-fade {
  0% { opacity: 0.95; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes vem-pulse-grow {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.85); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}
.vem-pulse .car-pod {
  position: relative; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD400 0%, #F59A3E 100%);
  color: #141418;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 28px rgba(255,212,0,0.55), inset 0 -4px 8px rgba(0,0,0,0.15);
}
.vem-flow-status {
  position: absolute; bottom: 292px;
  left: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(24,24,28,0.92);
  border: 1px solid rgba(255,212,0,0.22);
  color: #FFD400;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vem-flow-status .vem-flow-copy { color: #FAFAFA; min-width: 0; }
.vem-flow-status .vem-flow-copy .t {
  font-size: 11px; font-weight: 600; line-height: 1.3;
  color: #FAFAFA;
}
.vem-flow-status .vem-flow-copy .s {
  font-size: 9.5px; color: #A0A0A8; font-weight: 400;
  margin-top: 2px; line-height: 1.3;
}
.vem-sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #18181C;
  border-radius: 20px 20px 0 0;
  padding: 18px 16px 20px;
  border-top: 1px solid #2A2A2E;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.5);
  z-index: 3;
}
.vem-route { display: flex; align-items: flex-start; gap: 10px; }
.vem-route-rail {
  display: flex; flex-direction: column; align-items: center; padding-top: 4px;
}
.vem-route-rail .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.vem-route-rail .dot.green { background: #34D399; box-shadow: 0 0 0 3px rgba(52,211,153,0.15); }
.vem-route-rail .dot.orange { background: #FF5F00; box-shadow: 0 0 0 3px rgba(255,95,0,0.15); }
.vem-route-rail .rail-dots {
  display: flex; flex-direction: column; gap: 3px; padding: 5px 0;
}
.vem-route-rail .rail-dots i {
  width: 2px; height: 2px; border-radius: 50%; background: #4A4A52;
}
.vem-route-text { flex: 1; padding-top: 0; }
.vem-route-text .addr {
  font-size: 12px; color: #FAFAFA; line-height: 1.3; font-weight: 500;
}
.vem-route-text .sep { height: 12px; }
.vem-searching {
  margin-top: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: 11px;
  background: rgba(255,212,0,0.06);
  border: 1px solid rgba(255,212,0,0.22);
}
.vem-searching .spinner {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 2px solid rgba(255,212,0,0.25);
  border-top-color: #FFD400;
  animation: vem-spin 1s linear infinite;
  flex-shrink: 0;
}
@keyframes vem-spin { to { transform: rotate(360deg); } }
.vem-searching .t { font-size: 11.5px; font-weight: 600; color: #FAFAFA; line-height: 1.3; }
.vem-searching .s { font-size: 9.5px; color: #A0A0A8; margin-top: 2px; line-height: 1.3; }
.vem-cancel {
  margin-top: 12px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255,107,107,0.4);
  background: transparent;
  color: #FF6B6B;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .01em;
}
.vem-cancel:hover { background: rgba(255,107,107,0.05); border-color: rgba(255,107,107,0.55); }

/* App screen: Bloom */
.app-bloom {
  height: 100%;
  background:
    radial-gradient(ellipse at 100% 0%, #FFE1DE 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, #FFD9D3 0%, transparent 55%),
    linear-gradient(170deg, #FFEFEA 0%, #FFF5F1 60%, #FFEFE8 100%);
  color: #3D2B2B;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 42px 10px 8px;
  display: flex; flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.app-bloom::before {
  content: '';
  position: absolute;
  top: -20px; right: -10px;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(245,166,160,0.22), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.bloom-petal {
  position: absolute;
  pointer-events: none;
  opacity: 0.32;
  filter: blur(0.3px);
}
.bloom-petal.p1 {
  top: 52px; right: -22px;
  width: 58px; height: 70px;
  background: radial-gradient(ellipse 60% 100% at 50% 10%, #F6B8B3 0%, #F6B8B3 40%, transparent 70%);
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  transform: rotate(25deg);
}
.bloom-petal.p2 {
  bottom: 58px; left: -16px;
  width: 44px; height: 52px;
  background: radial-gradient(ellipse 60% 100% at 50% 10%, #F8C9B8 0%, #F8C9B8 40%, transparent 70%);
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  transform: rotate(-40deg);
}

.bloom-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 600; color: #3D2B2B;
  padding: 0 8px;
}

.bloom-greet {
  display: flex; align-items: center; gap: 8px;
  padding: 0 8px;
  margin-top: 2px;
}
.bloom-greet .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(245,166,160,0.35);
  border: 1.5px solid #FFFFFF;
  display: inline-block;
}
.bloom-greet .avatar svg { display: block; width: 100%; height: 100%; }
.bloom-greet-copy { flex: 1; line-height: 1.1; }
.bloom-greet-copy .hi { font-size: 9px; color: #8A6B6B; font-weight: 500; }
.bloom-greet-copy .name {
  font-size: 12px; font-weight: 700; color: #3D2B2B;
  margin-top: 1px;
  display: flex; align-items: center; gap: 3px;
}
.bloom-greet-copy .name .heart { color: #E67B7A; font-size: 10px; }
.bloom-greet .bell {
  width: 22px; height: 22px; border-radius: 50%;
  background: #FFFFFF;
  display: grid; place-items: center;
  color: #8A6B6B;
  position: relative;
  box-shadow: 0 1px 3px rgba(166,107,107,0.15);
}
.bloom-greet .bell .dot {
  position: absolute; top: 3px; right: 3px;
  width: 5px; height: 5px; border-radius: 50%;
  background: #E67B7A;
  border: 1px solid #FFFFFF;
}

.bloom-hero {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF5F1 100%);
  border-radius: 16px;
  padding: 11px 12px;
  display: flex;
  gap: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(166,107,107,0.08);
  border: 1px solid rgba(255,255,255,0.8);
}
.bloom-hero-copy { flex: 1; min-width: 0; }
.bloom-hero .eyebrow {
  font-size: 8px; color: #A67B7B;
  font-weight: 500; letter-spacing: 0.01em;
  background: rgba(245,166,160,0.12);
  display: inline-block;
  padding: 2px 6px; border-radius: 4px;
}
.bloom-hero .week {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; line-height: 1;
  color: #3D2B2B;
  margin-top: 5px;
  letter-spacing: -0.01em;
}
.bloom-hero .trim {
  font-size: 9px; color: #A67B7B;
  font-weight: 500;
  margin-top: 2px;
}
.bloom-progress {
  height: 3px; background: rgba(245,166,160,0.18);
  border-radius: 99px;
  margin-top: 8px;
  overflow: hidden;
  position: relative;
}
.bloom-progress .fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, #F5A6A0 0%, #F8B7B9 100%);
  border-radius: 99px;
}
.bloom-hero .remain {
  font-size: 8px; color: #8A6B6B; font-weight: 500;
  margin-top: 4px;
}
.bloom-mom {
  width: 56px; height: 68px; flex-shrink: 0;
  margin-top: 2px;
}
.bloom-mom svg { width: 100%; height: 100%; }

.bloom-glance {
  background: rgba(255,255,255,0.72);
  border-radius: 14px;
  padding: 9px 10px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 8px rgba(166,107,107,0.06);
}
.bloom-glance-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.bloom-glance-head .ttl {
  font-size: 9px; font-weight: 700;
  color: #3D2B2B; letter-spacing: 0.01em;
}
.bloom-glance-head .more {
  font-size: 8px; color: #E67B7A;
  font-weight: 600;
}
.bloom-glance-body {
  display: flex; align-items: center; gap: 10px;
}
.bloom-glance .fruit {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, #FFF5EC 0%, #FFE9D4 100%);
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 3px;
}
.bloom-glance .fruit svg { width: 100%; height: 100%; }
.bloom-glance .fruit-copy { flex: 1; min-width: 0; line-height: 1.15; }
.bloom-glance .label {
  font-size: 8px; color: #A67B7B;
  font-weight: 500;
}
.bloom-glance .name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px; color: #3D2B2B;
  margin-top: 1px;
}
.bloom-glance .meta {
  font-size: 8px; color: #8A6B6B;
  font-weight: 500;
  margin-top: 1px;
}

.bloom-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.bloom-stat {
  background: rgba(255,255,255,0.78);
  border-radius: 12px;
  padding: 8px 6px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 6px rgba(166,107,107,0.05);
}
.bloom-stat .ic {
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
}
.bloom-stat .ic.heart { background: #FFE5E5; color: #E67B7A; }
.bloom-stat .ic.drop  { background: #E0F0FA; color: #7AB0D4; }
.bloom-stat .ic.moon  { background: #EDE4F6; color: #9B7ABF; }
.bloom-stat .k {
  font-size: 10px; font-weight: 700;
  color: #3D2B2B;
  margin-top: 1px;
}
.bloom-stat .l {
  font-size: 7px; color: #A67B7B;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}

.bloom-quick {
  background: rgba(255,255,255,0.72);
  border-radius: 14px;
  padding: 8px 9px 9px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 6px rgba(166,107,107,0.05);
}
.bloom-quick-head {
  font-size: 9px; font-weight: 700;
  color: #3D2B2B; letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.bloom-quick-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.bqa {
  all: unset;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 2px 4px;
  background: linear-gradient(165deg, #FFF5F1 0%, #FFE9E3 100%);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
}
.bqa .ic {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #FFFFFF;
  color: #E67B7A;
  box-shadow: 0 1px 3px rgba(166,107,107,0.12);
}
.bqa .ic.b { color: #C89080; }
.bqa .ic.c { color: #A67AC5; }
.bqa .ic.d { color: #7AB0D4; }
.bqa .ttl {
  font-size: 7px; color: #3D2B2B;
  font-weight: 600;
  text-align: center;
}

.bloom-nav {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.88);
  padding: 6px 4px 4px;
  border-radius: 14px 14px 0 0;
  border-top: 1px solid rgba(245,166,160,0.15);
  backdrop-filter: blur(10px);
}
.bloom-nav .bn {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  font-size: 7px; font-weight: 500;
  color: #B09696;
}
.bloom-nav .bn.active { color: #E67B7A; font-weight: 600; }
.bloom-nav .bn svg { opacity: 0.85; }

/* Hero app tabs (BrewCraft / Vem Car / Bloom switcher) */
.hero-phone-col {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  position: relative;
}
.hero-app-tabs {
  display: flex; gap: 6px;
  background: rgba(36,52,71,.05);
  border: 1px solid rgba(36,52,71,.1);
  border-radius: 999px; padding: 5px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(36,52,71,.08);
  position: relative; z-index: 4;
}
.hero-app-tab {
  padding: 9px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--slate);
  letter-spacing: -.01em; transition: color .2s ease, background .2s ease;
}
.hero-app-tab:not(.active):hover { color: var(--navy); }
.hero-app-tab.active { background: var(--navy); color: var(--cream); font-weight: 600; }

.hero-iphone { display: none; }
.hero-iphone.active { display: block; animation: phone-fade .45s cubic-bezier(.2,.7,.2,1); }
@keyframes phone-fade { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

/* Services — dark navy inversion for rhythm */
.services { background: var(--navy); color: var(--cream); }
.services .eyebrow { color: var(--orange); }
.services .h2 { color: var(--cream); }
.services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 72px; }
.services-head .lede { color: var(--slate-soft); max-width: 440px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: rgba(231,236,242,.04); border-radius: 24px; padding: 36px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  border: 1px solid rgba(231,236,242,.08); position: relative; overflow: hidden;
  min-height: 340px; display: flex; flex-direction: column; justify-content: space-between;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,183,112,.4); box-shadow: 0 30px 60px -20px rgba(0,0,0,.4); }
.service-card .num { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: .14em; text-transform: uppercase; }
.service-card h3 { margin-top: 24px; font-size: 26px; font-weight: 700; color: var(--cream); letter-spacing: -.015em; }
.service-card p { margin-top: 12px; color: var(--slate-soft); font-size: 15px; line-height: 1.6; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.service-card .tags span { font-size: 11px; color: var(--slate-soft); border: 1px solid rgba(231,236,242,.18); padding: 4px 10px; border-radius: 999px; }
.service-card .corner {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 14px;
  background: var(--orange); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700;
}
.service-card.accent { background: linear-gradient(180deg, rgba(255,183,112,.18), rgba(255,183,112,.04)); border-color: rgba(255,183,112,.3); }

/* Values ticker */
.ticker-wrap {
  overflow: hidden; padding: 36px 0;
  border-top: 1px solid rgba(36,52,71,.12); border-bottom: 1px solid rgba(36,52,71,.12);
  background: var(--cream-2);
}
.ticker { display: flex; gap: 64px; white-space: nowrap; width: max-content; animation: ticker-slide 38s linear infinite; }
.ticker:hover { animation-play-state: paused; }
@keyframes ticker-slide { to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 18px; font-size: clamp(28px, 4vw, 56px); font-weight: 700; letter-spacing: -.02em; color: var(--navy); }
.ticker-item .dot { color: var(--orange-deep); font-size: .6em; }
.ticker-item.ghost { color: transparent; -webkit-text-stroke: 1px var(--slate); }

/* Values */
.values { background: var(--cream); padding-bottom: 160px; padding-top: 0; }
.values-head { max-width: 780px; margin-bottom: 72px; }
.values-head h2 strong { color: var(--orange-deep); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: #fff;
  border: 1px solid rgba(36,52,71,.08);
  border-radius: 20px; padding: 28px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  min-height: 240px; display: flex; flex-direction: column;
}
.value-card:hover { border-color: rgba(245,154,62,.4); transform: translateY(-4px); box-shadow: 0 18px 40px -12px rgba(36,52,71,.15); }
.value-card .glyph { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,183,112,.2); color: var(--orange-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.value-card h4 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--navy); }
.value-card p { font-size: 14px; color: var(--slate); margin-top: 10px; line-height: 1.55; }
.value-card .num { margin-top: auto; font-size: 11px; color: var(--slate); font-weight: 600; letter-spacing: .14em; }

/* Mascot inspiration card */
.inspiration-card {
  background: linear-gradient(120deg, rgba(255,183,112,.2), rgba(255,183,112,.05));
  border: 1px solid rgba(245,154,62,.3);
  border-radius: 28px;
  padding: 44px 56px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  margin-top: 80px;
}
.inspiration-card .big-mascot { width: 180px; height: 180px; object-fit: contain; filter: drop-shadow(0 14px 28px rgba(36,52,71,.2)); }
.inspiration-card .quote-mark { position: absolute; top: -20px; right: 40px; font-size: 200px; color: rgba(245,154,62,.2); font-weight: 800; line-height: 1; font-family: Georgia, serif; }
.inspiration-card .eyebrow { color: var(--orange-ink); }
.inspiration-card blockquote { margin-top: 12px; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.35; font-weight: 500; color: var(--navy); max-width: 640px; letter-spacing: -.01em; }
.inspiration-card cite { display: block; margin-top: 16px; font-size: 13px; color: var(--slate); font-style: normal; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* Contact — navy band for contrast */
.contact { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%); padding: 160px 0; color: var(--cream); }
.contact .h2 { color: var(--cream); }
.contact .eyebrow { color: var(--orange); }
.contact-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.contact h2 .accent { color: var(--orange); }
.contact .lede { margin: 24px 0 40px; color: var(--slate-soft); font-size: 18px; max-width: 480px; }
.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.contact .status { display:flex; gap:8px; color:var(--slate-soft); font-size:13px; flex-wrap:wrap; align-items: center; }
.contact .status::before { content:''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(125,176,141,.5); animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%{box-shadow:0 0 0 0 rgba(125,176,141,.5);} 70%{box-shadow:0 0 0 10px rgba(125,176,141,0);} }

.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px; border-radius: 18px;
  background: rgba(231,236,242,.04); border: 1px solid rgba(231,236,242,.08);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  cursor: pointer;
}
.contact-card:hover { background: rgba(231,236,242,.07); border-color: rgba(255,183,112,.4); transform: translateX(4px); }
.contact-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--orange); color: var(--navy-900); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.contact-card .lbl { font-size: 12px; color: var(--slate-soft); text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.contact-card .val { font-size: 17px; font-weight: 600; color: var(--cream); margin-top: 2px; }
.contact-card .arrow { margin-left: auto; color: var(--slate-soft); font-size: 20px; transition: transform .3s ease, color .3s ease; }
.contact-card:hover .arrow { transform: translateX(4px); color: var(--orange); }

/* Footer */
footer { background: var(--navy-900); padding: 80px 0 40px; color: var(--slate-soft); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(231,236,242,.08); }
.footer-grid h5 { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { font-size: 14px; color: var(--slate-soft); transition: color .2s ease; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand .tag { font-size: 13px; max-width: 280px; margin-top: 16px; line-height: 1.6; }
.footer-brand .nav-brand { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 13px; }
.footer-bottom .cols { display: flex; gap: 24px; }

/* Responsive */
@media (max-width: 980px) {
  .heroA .hero-inner, .contact-inner, .services-head {
    grid-template-columns: 1fr; gap: 40px;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .heroA .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-phone-wrap { min-height: 560px; }
  .inspiration-card { grid-template-columns: 1fr; padding: 32px; }
  .inspiration-card .big-mascot { width: 140px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .heroA .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
