/* ==========================================================================
   Vytal Brands — E-Commerce Strategy & Marketing
   Dark / lime design system (matched to SBB CRM visual language)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #08090b;
  --bg-soft: #0c0d10;
  --card: #101114;
  --card-hover: #14161a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f2f3f5;
  --muted: #9ba0aa;
  --faint: #6b707b;

  --accent: #d9f24f;
  --accent-soft: rgba(217, 242, 79, 0.12);
  --accent-line: rgba(217, 242, 79, 0.35);
  --accent-glow: 0 0 0 1px rgba(217, 242, 79, 0.35),
    0 0 28px rgba(217, 242, 79, 0.22);

  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);

  --step--1: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem);
  --step-0: clamp(0.9688rem, 0.94rem + 0.15vw, 1.0313rem);
  --step-1: clamp(1.125rem, 1.07rem + 0.28vw, 1.3125rem);
  --step-2: clamp(1.5rem, 1.36rem + 0.7vw, 2rem);
  --step-3: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4: clamp(2.75rem, 2.1rem + 3vw, 4.75rem);
  --step-5: clamp(3.25rem, 2.2rem + 5.2vw, 7rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

/* Display type: serif, regular weight — like the CRM's page titles */
h1, h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.02;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }

h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0; text-wrap: pretty; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

strong { font-weight: 600; color: var(--text); }
em { font-style: italic; }

::selection { background: var(--accent); color: #08090b; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #08090b;
  font-size: var(--step--1);
  font-weight: 600;
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Serif italic accent inside headings — "Good afternoon," energy */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  position: relative;
}
.section--tight { padding-block: clamp(3.5rem, 6vw, 6rem); }
.section--soft { background: var(--bg-soft); }

.rule { border-top: 1px solid var(--line); }

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

.stack > * + * { margin-top: 1.15rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

.measure { max-width: 68ch; }

/* Eyebrow ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(217, 242, 79, 0.6);
}

/* Section head ------------------------------------------------------------- */
.section-head {
  max-width: 26ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head p {
  max-width: 58ch;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
}
.section-head--wide { max-width: 40ch; }

/* --------------------------------------------------------------------------
   4. Buttons — lime glow pill + ghost pill
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 100px;
  background: #1a1c20;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
    color 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--accent {
  background: var(--accent);
  color: #08090b;
  box-shadow: 0 0 24px rgba(217, 242, 79, 0.28);
}
.btn--accent:hover {
  background: #e6fa66;
  box-shadow: 0 0 36px rgba(217, 242, 79, 0.4);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent-line); color: var(--accent); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Text link ---------------------------------------------------------------- */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.tlink:hover { border-color: var(--accent); gap: 0.7rem; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #111309;
  border: 1px solid var(--accent-line);
  display: grid;
  place-items: center;
  flex: none;
  color: var(--accent);
  box-shadow: 0 0 16px rgba(217, 242, 79, 0.18);
}
.brand-mark svg { width: 16px; height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  font-size: var(--step--1);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  padding: 0.55rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }

/* Active page = outlined lime pill, like the CRM's active nav */
.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-color: var(--accent-line);
  box-shadow: 0 0 18px rgba(217, 242, 79, 0.15);
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span + span { margin-top: 4px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: grid; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.75rem;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: var(--step-3);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
  }
  .nav-links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a {
    padding: 0.85rem 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a[aria-current="page"] { box-shadow: none; }
  .nav-links .btn {
    margin-top: 1.5rem;
    justify-content: center;
    padding-block: 1.05rem;
    font-family: var(--font-sans);
    font-size: var(--step-0);
    border-radius: 100px;
    border-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(5.5rem, 12vw, 10rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

/* lime bloom */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 120vw);
  aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(217, 242, 79, 0.13),
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.hero-inner { text-align: center; display: grid; justify-items: center; }

.hero h1 { max-width: 16ch; }

.hero-lede {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  margin-top: 2.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text);
}
.pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.55rem;
  box-shadow: 0 0 8px rgba(217, 242, 79, 0.6);
}

.hero .btn-row { margin-top: clamp(2.25rem, 4vw, 3rem); justify-content: center; }

/* Floating stat chips under the hero, echoing the CRM dashboard cards */
.hero-cards {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  width: 100%;
  text-align: left;
}

.stat-chip {
  background: rgba(16, 17, 20, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  display: grid;
  gap: 0.45rem;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.stat-chip:hover {
  border-color: var(--accent-line);
  box-shadow: 0 0 24px rgba(217, 242, 79, 0.12);
  transform: translateY(-3px);
}
.stat-chip .chip-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--muted);
}
.chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.chip-icon svg { width: 13px; height: 13px; }
.stat-chip .chip-value {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  line-height: 1.1;
  color: var(--text);
}

/* Page hero (interior pages) ---------------------------------------------- */
.page-hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem) clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -55%;
  right: -12%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 242, 79, 0.1), transparent 65%);
  z-index: -1;
}
.page-hero h1 { font-size: var(--step-4); max-width: 20ch; }
.page-hero p {
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 60ch;
  font-size: var(--step-1);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Split / intro
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
  .split--sticky > :first-child { position: sticky; top: 122px; }
}

.split h2 { max-width: 17ch; }

.intro-body p { color: var(--muted); font-size: var(--step-1); line-height: 1.65; }
.intro-body p.emph { color: var(--text); }

/* --------------------------------------------------------------------------
   8. Service cards
   -------------------------------------------------------------------------- */
.services {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services { grid-template-columns: repeat(3, 1fr); } }

.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease), background-color 0.4s var(--ease);
}
.service:hover {
  background: var(--card-hover);
  border-color: var(--accent-line);
  box-shadow: 0 0 28px rgba(217, 242, 79, 0.1);
  transform: translateY(-3px);
}

.service-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.service > p { color: var(--muted); font-size: var(--step-0); }

.service-list {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.service-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.6rem;
  align-items: start;
}
.service-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 0.6em;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
}

.disclaimer {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--faint);
  font-style: italic;
}
.service .disclaimer { margin-top: 0.75rem; }

/* --------------------------------------------------------------------------
   9. Process
   -------------------------------------------------------------------------- */
.process { display: grid; }

.step {
  display: grid;
  gap: 0.75rem 2.5rem;
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  align-items: center;
  transition: background-color 0.3s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }

@media (min-width: 820px) {
  .step { grid-template-columns: 120px minmax(0, 20ch) minmax(0, 1fr); }
}

.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(217, 242, 79, 0.35);
}

.step h3 { letter-spacing: -0.02em; }
.step p { color: var(--muted); max-width: 52ch; }

/* --------------------------------------------------------------------------
   10. Value / why-us blocks
   -------------------------------------------------------------------------- */
.value-grid { display: grid; gap: 1rem; }
@media (min-width: 780px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }

.value {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.value:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
  box-shadow: 0 0 24px rgba(217, 242, 79, 0.1);
}
.value h3 { max-width: 22ch; }
.value p { color: var(--muted); }

/* Audience cards ----------------------------------------------------------- */
.audience { display: grid; gap: 1rem; }
@media (min-width: 860px) { .audience { grid-template-columns: repeat(3, 1fr); } }

.audience-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 230px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.audience-card:hover { transform: translateY(-3px); }

/* middle card gets the full lime treatment, like the CRM's primary buttons */
.audience-card:nth-child(2) {
  background: var(--accent);
  border-color: var(--accent);
  color: #08090b;
  box-shadow: 0 0 40px rgba(217, 242, 79, 0.22);
}
.audience-card:nth-child(2) h3 { color: #08090b; }
.audience-card:nth-child(2) p { color: rgba(8, 9, 11, 0.72); }
.audience-card:nth-child(2) .tag { color: rgba(8, 9, 11, 0.55); }

.audience-card:nth-child(odd):hover {
  border-color: var(--accent-line);
  box-shadow: 0 0 24px rgba(217, 242, 79, 0.1);
}

.audience-card h3 { font-size: var(--step-2); max-width: 14ch; }
.audience-card p { color: var(--muted); margin-top: auto; }
.audience-card .tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   11. Results / outcomes
   -------------------------------------------------------------------------- */
.outcomes {
  display: grid;
  counter-reset: outcome;
}

.outcome {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: clamp(1.1rem, 2vw, 1.6rem);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 400;
  line-height: 1.1;
  counter-increment: outcome;
  transition: color 0.3s var(--ease), padding-left 0.35s var(--ease);
}
.outcome:hover { color: var(--accent); padding-left: 0.5rem; }
.outcome::before {
  content: "0" counter(outcome);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  flex: none;
  width: 2.75rem;
}
.outcome:first-child { border-top: 1px solid var(--line); }

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  gap: 2rem;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 60px rgba(217, 242, 79, 0.08);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -15%;
  width: 62%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 242, 79, 0.16), transparent 65%);
  z-index: -1;
}
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.2fr auto; } }

.cta-band h2 { max-width: 18ch; }
.cta-band p { color: var(--muted); max-width: 50ch; margin-top: 1.25rem; }

/* --------------------------------------------------------------------------
   13. About page — approach strip
   -------------------------------------------------------------------------- */
.approach { display: grid; gap: 1rem; }
@media (min-width: 640px) { .approach { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .approach { grid-template-columns: repeat(5, 1fr); } }

.approach li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 165px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.approach li:hover {
  border-color: var(--accent-line);
  box-shadow: 0 0 20px rgba(217, 242, 79, 0.1);
}
.approach li span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.approach li strong {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   14. Services page rows
   -------------------------------------------------------------------------- */
.svc-rows { display: grid; }

.svc-row {
  display: grid;
  gap: 0.85rem 3rem;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }

@media (min-width: 860px) {
  .svc-row { grid-template-columns: 90px minmax(0, 24ch) minmax(0, 1fr); }
}

.svc-row .idx {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding-top: 0.6rem;
}
.svc-row h2 {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  line-height: 1.08;
}
.svc-row p { color: var(--muted); max-width: 58ch; }
.svc-row .stack > * + * { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; max-width: 920px; }

.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(1.25rem, 2.5vw, 1.75rem);
  cursor: pointer;
  list-style: none;
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }

.faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 0.1rem;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
    transform 0.35s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: opacity 0.3s var(--ease); }

.faq details[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #08090b;
  transform: rotate(180deg);
  box-shadow: 0 0 16px rgba(217, 242, 79, 0.4);
}
.faq details[open] .faq-icon::after { opacity: 0; }

.faq-answer {
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-right: clamp(0rem, 6vw, 4rem);
  color: var(--muted);
  max-width: 68ch;
}
.faq-answer > * + * { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 940px) {
  .contact-layout { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); }
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-details dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.4rem;
}
.contact-details dd { margin: 0; font-size: var(--step-1); letter-spacing: -0.01em; }
.contact-details dd a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.contact-details dd a:hover { border-color: var(--accent); }

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.form-card > h3 { margin-bottom: 1.75rem; font-family: var(--font-serif); font-weight: 400; font-size: var(--step-3); }

.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 600px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
}

.field { display: grid; gap: 0.5rem; }

.field label {
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text);
}
.field .opt { font-weight: 400; color: var(--faint); }

.field input,
.field textarea {
  font: inherit;
  font-size: var(--step-0);
  color: var(--text);
  background: #0b0c0e;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }

.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px rgba(217, 242, 79, 0.12);
}

.form-foot {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}
.form-foot small {
  color: var(--faint);
  font-size: 0.8125rem;
  max-width: 34ch;
  line-height: 1.5;
}

.form-status {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: var(--step--1);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-weight: 500;
}
.form-status[hidden] { display: none; }

/* --------------------------------------------------------------------------
   17. Legal pages
   -------------------------------------------------------------------------- */
.legal { max-width: 76ch; margin-inline: auto; }

.legal .updated {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--faint);
  padding-bottom: 1.75rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--muted); margin-bottom: 1rem; }
.legal p:last-child { margin-bottom: 0; }
.legal ul {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.legal ul li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.6rem;
  align-items: start;
}
.legal ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 0.65em;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
}
.legal a { color: var(--accent); border-bottom: 1px solid transparent; }
.legal a:hover { border-color: var(--accent); }

.legal-contact {
  margin-top: 3rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.legal-contact p { margin-bottom: 0.35rem; }

/* Placeholder token — swap these for real details before launch ------------ */
.ph {
  border-bottom: 1px dashed var(--accent-line);
  color: inherit;
  font-style: normal;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.footer-top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 880px) {
  .footer-top { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr)); }
}

.footer-brand .brand { font-size: var(--step-1); }
.footer-brand .tagline {
  margin-top: 1.25rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.footer-brand p.desc {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 40ch;
  font-size: var(--step--1);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: grid; gap: 0.7rem; font-size: var(--step--1); }
.footer-col a { color: var(--muted); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-col address {
  font-style: normal;
  display: grid;
  gap: 0.7rem;
  font-size: var(--step--1);
  color: var(--muted);
  line-height: 1.55;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   19. Reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   20. Brand logo (vytalbrands storefront wordmark)
   -------------------------------------------------------------------------- */
.brand { gap: 0.6rem; }
.brand-word { color: var(--text); }
.brand .brand-mark,
.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--accent);
}
.brand .brand-mark svg { width: 40px; height: 40px; }
.brand-word {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand-word span { font-weight: 300; }

/* --------------------------------------------------------------------------
   21. Partner strip (hero)
   -------------------------------------------------------------------------- */
.partner-strip {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}
.partner-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.6rem;
}

/* --------------------------------------------------------------------------
   22. Wide-screen layout: section heads span the full row
   -------------------------------------------------------------------------- */
.section-head {
  max-width: none;
  display: grid;
  gap: 1.5rem 4rem;
}
.section-head h2 { max-width: 22ch; }
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    align-items: end;
  }
  .section-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
  .section-head h2 { grid-column: 1; }
  .section-head p { grid-column: 2; margin-top: 0; align-self: end; }
}

/* --------------------------------------------------------------------------
   24. Cursor glow + 3D tilt on cards
   -------------------------------------------------------------------------- */
.glow-track { position: relative; }
.glow-track::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(217, 242, 79, 0.1),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.glow-track:hover::after { opacity: 1; }

/* --------------------------------------------------------------------------
   25. Mobile polish
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  :root { --gutter: 1.1rem; }

  h1 { font-size: clamp(2.4rem, 12.5vw, 3.25rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 2.75rem); }
  .page-hero h1 { font-size: clamp(2.2rem, 11vw, 2.75rem); }

  .section { padding-block: 3.5rem; }
  .hero { padding-block: 4rem 3.25rem; }
  .hero-lede, .page-hero p { font-size: 1rem; }

  .btn-row { width: 100%; }
  .btn-row .btn { flex: 1 1 auto; min-height: 48px; }

  .hero-cards { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .stat-chip { padding: 0.9rem 1rem; gap: 0.35rem; }
  .stat-chip .chip-value { font-size: 1.1rem; }
  .chip-icon { width: 22px; height: 22px; }

  .audience-card { min-height: 0; }
  .cta-band { padding: 1.75rem 1.4rem; border-radius: var(--radius); }
  .form-card { padding: 1.5rem 1.15rem; border-radius: var(--radius); }
  .service { padding: 1.5rem 1.25rem; border-radius: var(--radius); }

  .outcome { font-size: 1.55rem; gap: 1rem; }
  .outcome::before { width: 2.1rem; }

  .step { gap: 0.4rem; padding-block: 1.5rem; }
  .step-num { font-size: 1.6rem; }

  .svc-row { gap: 0.5rem; padding-block: 1.75rem; }
  .svc-row .idx { padding-top: 0; }

  .faq summary { gap: 1rem; font-size: 1.05rem; }
  .faq-answer { padding-right: 0; }

  .contact-details { gap: 1.15rem; }
  .footer-top { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .brand-word { font-size: 1.15rem; }
  .brand .brand-mark, .brand .brand-mark svg { width: 32px; height: 32px; }
}

@media (max-width: 380px) {
  .hero-cards { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   26. Tablet band (561–900) + global responsive safety
   -------------------------------------------------------------------------- */
main, .site-header, .site-footer { min-width: 0; }
.wrap > * { min-width: 0; }

@media (max-width: 900px) {
  .section { padding-block: clamp(3.75rem, 8vw, 6rem); }
  .hero { padding-block: clamp(4.25rem, 10vw, 7rem) clamp(3.5rem, 7vw, 5rem); }

  .section-head { gap: 1.25rem; margin-bottom: 2.5rem; }
  .split { gap: 2rem; }
  .split--sticky > :first-child { position: static; }

  .outcome { font-size: clamp(1.6rem, 4.2vw, 2.25rem); }
  .cta-band { gap: 1.5rem; }
  .cta-band .btn-row { width: 100%; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 561px) and (max-width: 900px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: 1fr; }
  .audience-card { min-height: 0; }
  .approach { grid-template-columns: repeat(2, 1fr); }
  .approach li { min-height: 130px; }
}

/* Never allow horizontal scroll from decorative layers */
.hero, .page-hero, .cta-band { max-width: 100%; }

/* Comfortable tap targets on touch devices */
@media (pointer: coarse) {
  .nav-links a, .btn, .faq summary { -webkit-tap-highlight-color: transparent; }
  .btn { min-height: 48px; }
  .faq summary { min-height: 48px; }
}

/* --------------------------------------------------------------------------
   27. Partner badges (Meta / Shopify / Klaviyo)
   -------------------------------------------------------------------------- */
.partner-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.partner-badges li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.35rem 0.8rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--card);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.partner-badges li:hover {
  border-color: var(--accent-line);
  box-shadow: 0 0 20px rgba(217, 242, 79, 0.12);
  transform: translateY(-2px);
}
.pb-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.pb-icon svg { width: 20px; height: 20px; }
.pb-text { display: grid; line-height: 1.3; text-align: left; }
.pb-text strong { font-size: 0.95rem; letter-spacing: -0.01em; }
.pb-text small { font-size: 0.75rem; color: var(--muted); }

/* Partner band between sections (about / services) */
.partner-band {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.partner-band .partner-strip { margin-top: 0; }

/* Left-aligned variant (contact page) */
.partner-strip--left { justify-items: start; }
.partner-strip--left .partner-badges { justify-content: flex-start; }

@media (max-width: 560px) {
  .partner-badges { width: 100%; }
  .partner-badges li { width: 100%; }
}

/* --------------------------------------------------------------------------
   28. Fix: mobile-menu CTA must not show in desktop nav
   -------------------------------------------------------------------------- */
@media (min-width: 881px) {
  .nav-links .btn { display: none; }
}

/* Mobile-menu CTA keeps proper button colors (beats .nav-links a rules) */
.nav-links a.btn--accent,
.nav-links a.btn--accent:hover {
  color: #08090b;
}

/* Brand mark uses the original logo artwork */
.brand-mark img { width: 100%; height: auto; display: block; }
