/* ==========================================================================
   Bandera — v2 (Graza-warm editorial)
   ========================================================================== */

:root {
  /* palette */
  --cream:        #f2ead8;
  --cream-deep:   #ebe0c4;
  --cream-light:  #f7f0dd;
  --paper-shadow: #e3d5af;

  --olive:        #4a5d22;
  --olive-deep:   #2e3a15;
  --olive-bright: #6a8030;

  --terracotta:      #b2512f;
  --terracotta-soft: #c2623f;
  --terracotta-deep: #8a3e22;

  --ink:       #2b241b;   /* warm charcoal */
  --ink-soft:  #4a4036;
  --ink-faint: #7a6e5d;

  /* type */
  --serif: 'Fraunces', 'PT Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(1100px 700px at 82% -4%, rgba(178, 81, 47, 0.07), transparent 60%),
    radial-gradient(900px 620px at -6% 110%, rgba(74, 93, 34, 0.08), transparent 60%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- paper grain overlay (inline SVG noise) ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  mix-blend-mode: multiply;
  opacity: 0.22;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.30  0 0 0 0 0.22  0 0 0 0 0.10  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ---------- layout wrap ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- terracotta rule ---------- */
.rule {
  border: 0;
  height: 1px;
  max-width: calc(var(--wrap) - (var(--gutter) * 2));
  margin: clamp(2.4rem, 5vw, 3.6rem) auto 0;
  background: linear-gradient(
    to right,
    transparent 0,
    var(--terracotta) 8%,
    var(--terracotta) 92%,
    transparent 100%
  );
  opacity: 0.55;
}

/* ---------- topbar / wordmark ---------- */
.topbar {
  position: relative;
  z-index: 2;
  padding-top: clamp(1.1rem, 2.6vw, 1.9rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.wordmark__flag {
  width: 28px;
  height: 34px;
  display: inline-block;
}
.wordmark__text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.1vw, 1.6rem);
  letter-spacing: 0.01em;
  font-variation-settings: "SOFT" 50, "opsz" 40;
}
.prelaunch {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid rgba(74, 64, 54, 0.25);
  padding: 0.38rem 0.7rem 0.34rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .prelaunch { display: none; }
}

/* ---------- section tags ---------- */
.section-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: 0.01em;
  font-size: 1.05rem;
}
.section-tag-text {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* flag-next-to-section-number (adopted from v1, styled for v2) */
.section-mark__row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}
.section-mark__flag {
  display: inline-block;
  flex-shrink: 0;
  transform: translateY(-1px);
  opacity: 0.95;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 clamp(1.4rem, 3vw, 2.2rem);
}
.eyebrow__rule {
  width: 42px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(1.8rem, 5vw, 3.4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 6vw, 5rem);
  }
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 11vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--ink);
  font-variation-settings: "SOFT" 80, "opsz" 144, "WONK" 1;
}
.hero__headline em {
  font-style: italic;
  color: var(--olive);
  font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 1;
}
.hero__subhead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}
.hero__prelaunch {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.hero__prelaunch::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}

/* hero flag figure */
.hero__flag {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  max-width: 460px;
  width: 100%;
  position: relative;
}
.hero__flag-svg {
  width: 100%;
  height: auto;
  max-width: 420px;
  filter: drop-shadow(0 18px 24px rgba(46, 58, 21, 0.12));
  animation: flagSway 7.5s ease-in-out infinite;
  transform-origin: 92px 608px;
}
@keyframes flagSway {
  0%, 100% { transform: rotate(-0.4deg) translateY(0); }
  50%      { transform: rotate(0.6deg)  translateY(-2px); }
}
.hero__flag-cap {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-faint);
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 34ch;
}
.hero__flag-cap-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--olive);
  display: inline-block;
}

/* hero foot line */
.hero__foot {
  margin-top: clamp(2.4rem, 5vw, 3.8rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(74, 64, 54, 0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  gap: 1rem;
}
.hero__foot-left { justify-self: start; }
.hero__foot-right { justify-self: end; }
.hero__foot-mid { color: var(--terracotta); justify-self: center; }
@media (max-width: 540px) {
  .hero__foot { font-size: 0.7rem; }
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.problem {
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  position: relative;
}
.problem__head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.8rem);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 5vw, 3rem);
  align-items: start;
}
@media (min-width: 880px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.4rem, 6vw, 4.5rem);
  }
}
.problem__col {
  max-width: 46ch;
}
.problem__col--venture {
  text-align: right;
  margin-left: auto;
}
.problem__col--venture .problem__question {
  margin-left: auto;
}
.problem__icon {
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  display: block;
  margin: 0 auto clamp(1rem, 2vw, 1.4rem);
}
.problem__question {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 clamp(1.2rem, 2.4vw, 1.7rem);
  max-width: 22ch;
  font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 1;
}
.problem__quote-open, .problem__quote-close {
  color: var(--terracotta);
  font-weight: 400;
  font-size: 1.15em;
  line-height: 0;
  position: relative;
  top: 0.12em;
}
.problem__quote-open { margin-right: 0.05em; }
.problem__quote-close { margin-left: 0.02em; }
.problem__text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.42vw, 1.22rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
}

/* ==========================================================================
   MODES  (Glow / Venture)
   ========================================================================== */
.modes {
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  background-color: var(--cream-light);
  background-image:
    radial-gradient(700px 500px at 22% 28%, rgba(74, 93, 34, 0.09), transparent 70%),
    radial-gradient(700px 500px at 78% 78%, rgba(178, 81, 47, 0.08), transparent 70%);
  position: relative;
  overflow: hidden;
}
.modes__head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem);
}
.modes__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0.9rem 0 0;
  color: var(--ink);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.modes__heading em {
  font-style: italic;
  color: var(--olive);
  font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 1;
}

.modes__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 880px) {
  .modes__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(3rem, 7vw, 5.5rem);
    row-gap: 0;
    align-items: start;
  }
}

/* tether — dotted diagonal curve connecting the "Glow" and "Venture" labels */
.modes__tether {
  display: none;
}
@media (min-width: 880px) {
  .modes__tether {
    display: block;
    position: absolute;
    left: 22%;
    right: 18%;
    top: clamp(1.2rem, 1.8vw, 1.6rem);
    height: clamp(10rem, 15vw, 13.5rem);
    pointer-events: none;
    z-index: 1;
  }
}

.mode {
  position: relative;
  z-index: 2;
  max-width: 46ch;
}
@media (min-width: 880px) {
  .mode--glow {
    padding-right: clamp(0.5rem, 2vw, 1.2rem);
    justify-self: start;
  }
  .mode--venture {
    padding-left: clamp(0.5rem, 2vw, 1.2rem);
    padding-top: clamp(10.5rem, 15.5vw, 13.9rem);
    justify-self: end;
    text-align: right;
  }
}

.mode__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(1.1rem, 2.4vw, 1.6rem);
}
.mode--venture .mode__mark {
  flex-direction: row-reverse;
}
.mode__icon {
  width: clamp(44px, 5.5vw, 56px);
  height: clamp(44px, 5.5vw, 56px);
  display: block;
  flex-shrink: 0;
}
.mode--glow .mode__icon {
  animation: glowPulse 4.5s ease-in-out infinite;
  transform-origin: center;
}
.mode--venture .mode__icon {
  animation: venturePulse 9s ease-in-out infinite;
  transform-origin: center;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
@keyframes venturePulse {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}
.mode__name {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--olive-deep);
  font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 1;
}

.mode__question {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
  max-width: 22ch;
  font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 1;
  position: relative;
}
.mode--venture .mode__question {
  margin-left: auto;
}
.mode__quote-open, .mode__quote-close {
  color: var(--terracotta);
  font-weight: 400;
  font-size: 1.15em;
  line-height: 0;
  position: relative;
}
.mode__quote-open { margin-right: 0.05em; top: 0.12em; }
.mode__quote-close { margin-left: 0.02em; top: 0.12em; }

@media (min-width: 880px) {
  .mode--venture .mode__question { margin-left: auto; }
}

.mode__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.5vw, 1.05rem);
}
.mode__steps li {
  display: flex;
  align-items: baseline;
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
  padding-bottom: clamp(0.65rem, 1.4vw, 0.95rem);
  border-bottom: 1px solid rgba(74, 64, 54, 0.18);
}
.mode--venture .mode__steps li {
  flex-direction: row-reverse;
  text-align: right;
}
.mode__steps li:last-child {
  border-bottom: none;
}
.mode__step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--terracotta);
  min-width: 2ch;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.mode__step-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.45;
  color: var(--ink);
  font-variation-settings: "SOFT" 60, "opsz" 80;
}

/* mobile: stacked, venture stays right-aligned */
@media (max-width: 879px) {
  .mode--venture {
    text-align: right;
    align-self: end;
    width: 100%;
  }
  .mode--venture .mode__question { margin-left: auto; }
  .mode__question { max-width: 22ch; }
  .modes__grid { row-gap: clamp(3rem, 7vw, 4.5rem); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background-color: var(--cream-light);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 880px) {
  .faq__grid {
    grid-template-columns: 0.38fr 0.62fr;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
  }
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 880px) {
  .faq__head {
    position: sticky;
    top: 1.5rem;
  }
}
.faq__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.faq__heading em {
  font-style: italic;
  color: var(--olive);
  font-variation-settings: "SOFT" 100, "opsz" 144, "WONK" 1;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(74, 64, 54, 0.22);
}

.qa {
  border-bottom: 1px solid rgba(74, 64, 54, 0.22);
  padding: 0;
}
.qa summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  padding: clamp(1.2rem, 2.5vw, 1.6rem) 0;
  position: relative;
  transition: color 0.2s ease;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::marker { display: none; }

.qa__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terracotta);
  font-variation-settings: "SOFT" 100, "opsz" 40;
  min-width: 2ch;
}
.qa__q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.35;
  color: var(--ink);
  font-variation-settings: "SOFT" 60, "opsz" 80;
}
.qa__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  align-self: center;
}
.qa__icon::before,
.qa__icon::after {
  content: "";
  position: absolute;
  background: var(--ink-soft);
  transition: transform 0.3s ease;
}
.qa__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.4px;
  transform: translateY(-50%);
}
.qa__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.4px;
  transform: translateX(-50%);
}
.qa[open] .qa__icon::after { transform: translateX(-50%) scaleY(0); }
.qa[open] .qa__q { color: var(--olive-deep); }

.qa__a {
  padding: 0 0 clamp(1.2rem, 2.5vw, 1.8rem);
  padding-left: calc(2ch + clamp(0.9rem, 2vw, 1.5rem));
  padding-right: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 58ch;
  animation: faqFadeIn 0.35s ease;
}
.qa__a p {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .qa summary {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }
  .qa__a {
    padding-left: 0;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  background-color: var(--cream);
  border-top: 1px solid rgba(74, 64, 54, 0.18);
  position: relative;
}
.foot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60%, 70vw, var(--wrap));
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0,
    var(--terracotta) 10%,
    var(--terracotta) 90%,
    transparent 100%
  );
  opacity: 0.5;
}
.foot__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.foot__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "opsz" 40;
  margin-bottom: 0.5rem;
}
.foot__mark svg { width: 22px; height: 28px; }

.foot__primary {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink);
  margin: 0;
}
.foot__primary a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(178, 81, 47, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.foot__primary a:hover {
  color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

.foot__secondary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-faint);
  margin: 0;
}
.foot__copy {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 1.2rem 0 0;
}

/* ==========================================================================
   Hero entrance animation
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * {
    opacity: 0;
    animation: heroReveal 0.9s cubic-bezier(.2, .7, .2, 1) forwards;
  }
  .hero__copy > .eyebrow       { animation-delay: 0.05s; }
  .hero__copy > .hero__headline{ animation-delay: 0.18s; }
  .hero__copy > .hero__subhead { animation-delay: 0.42s; }
  .hero__copy > .hero__prelaunch{ animation-delay: 0.58s; }

  .hero__flag {
    opacity: 0;
    animation: flagReveal 1.2s cubic-bezier(.2, .7, .2, 1) 0.3s forwards;
  }

  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes flagReveal {
    from { opacity: 0; transform: translateY(20px) rotate(-2deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0); }
  }
}

/* ==========================================================================
   Selection
   ========================================================================== */
::selection {
  background: rgba(74, 93, 34, 0.25);
  color: var(--olive-deep);
}

/* ==========================================================================
   Small screens polish
   ========================================================================== */
@media (max-width: 720px) {
  .hero__flag { max-width: 320px; }
  .hero__flag-svg { max-width: 280px; }

  .step {
    grid-template-columns: auto 1fr;
    gap: 1rem 1.2rem;
  }
  .step__body { padding-top: 1.2rem; }

  .problem__label { padding-top: 0; }
}

@media (max-width: 480px) {
  .hero { padding-top: 1.2rem; }
  .hero__headline { font-size: clamp(3.2rem, 14vw, 5.2rem); }
  .hero__flag-cap { font-size: 0.82rem; }

  .dropcap { font-size: 4.8em; }
}
