/* ============================================================
   Eddie Fresh — 100 Days. 0 Excuses.
   Production stylesheet (v2)
   ============================================================ */

:root {
  --bg:            #0a0a0a;
  --bg-2:          #0f0f0f;
  --card:          #131313;
  --card-border:   #242424;
  --card-border-hover: rgba(227, 27, 35, 0.5);
  --red:           #e31b23;
  --red-light:     #ff3b41;
  --red-dark:      #9d0f15;
  --red-glow:      rgba(227, 27, 35, 0.45);
  --white:         #f5f5f5;
  --muted:         #a6a6a6;
  --muted-2:       #6b6b6b;

  --font-display: "Oswald", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 8px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.9rem;
  --pad-x: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(180deg, var(--red-light) 0%, var(--red) 45%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 24px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--card-border);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.btn--lg { --pad-y: 1.05rem; --pad-x: 2.6rem; font-size: 1rem; }
.btn--sm { --pad-y: 0.6rem; --pad-x: 1.3rem; font-size: 0.78rem; }

/* ---------- Section subtitle ---------- */
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

/* ---------- Section title ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  font-size: clamp(1.7rem, 1rem + 2.7vw, 2.9rem);
}
.section-title--center { text-align: center; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--card-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.06em; display: inline-flex; gap: .3ch; }
.logo__name { color: var(--white); }
.logo__name--accent { color: var(--red); }

.nav { display: flex; gap: 2rem; }
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active span:nth-child(2) { opacity: 0; }
.nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  flex-direction: column;
  gap: .5rem;
  padding: 1.25rem 1.25rem 1.75rem;
  display: none;
}
.mobile-nav--open { display: flex; }
.mobile-nav__link { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; color: var(--white); padding: .75rem 0; border-bottom: 1px solid var(--card-border); }
.mobile-nav__cta { margin-top: 1rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero__glow--1 {
  width: 60vw; max-width: 720px; aspect-ratio: 1;
  right: -8%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
}
.hero__glow--2 {
  width: 40vw; max-width: 460px; aspect-ratio: 1;
  left: -10%; bottom: -10%;
  background: radial-gradient(circle, rgba(227,27,35,.22) 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__content { position: relative; z-index: 2; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.005em;
  font-size: clamp(3rem, 1rem + 8vw, 6rem);
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero__title .text-red { text-shadow: 0 0 40px var(--red-glow); }

.hero__tagline { font-size: clamp(1.05rem, .9rem + .6vw, 1.35rem); font-weight: 600; margin-top: 1.25rem; }
.hero__copy { color: var(--muted); max-width: 460px; margin-top: 1rem; font-size: 1rem; }
.hero__copy + .btn { margin-top: 2rem; }
.hero__note { margin-top: 1rem; font-size: .82rem; color: var(--muted-2); letter-spacing: .02em; }

.hero__visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: flex-end; align-self: stretch; }
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.7));
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}

/* ============================================================
   Method / Pillars
   ============================================================ */
.method { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-2); border-top: 1px solid var(--card-border); }
.method .section-title { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pillar:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.pillar__icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.pillar__icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: .6rem;
}
.pillar__lead { font-weight: 600; font-size: .95rem; margin-bottom: .5rem; }
.pillar__text { font-size: .85rem; color: var(--muted); line-height: 1.55; }

.method__cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.method__cta-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

/* ============================================================
   Transformation
   ============================================================ */
.transform { padding: clamp(4rem, 8vw, 7rem) 0; border-top: 1px solid var(--card-border); }
.transform .section-title { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.transform__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  max-width: 880px;
  margin-inline: auto;
}
.ba { text-align: center; }
.ba__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: linear-gradient(160deg, #1b1b1b, #0c0c0c);
}
.ba__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ba__photo--before { display: flex; align-items: center; justify-content: center; }
.ba__photo--before::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 12px, transparent 12px 24px);
}
.ba__tag {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  z-index: 1;
}
.ba__stat {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.transform__bolt { color: var(--red); width: clamp(28px, 4vw, 42px); flex-shrink: 0; }
.transform__bolt svg { width: 100%; height: auto; filter: drop-shadow(0 0 14px var(--red-glow)); }

.transform__quote {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem);
  font-style: italic;
  color: var(--muted);
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing { padding: clamp(4rem, 8vw, 7rem) 0; border-top: 1px solid var(--card-border); background: var(--bg); }
.pricing .section-title { margin-bottom: 0; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  transition: border-color .25s ease, transform .25s ease;
}
.plan:hover { border-color: var(--card-border-hover); transform: translateY(-4px); }
.plan--featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 24px 60px rgba(227,27,35,.18);
}
.plan--featured:hover { transform: translateY(-6px); }
.plan__badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 18px var(--red-glow);
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.plan__desc { color: var(--muted); font-size: .88rem; margin-top: .6rem; min-height: 2.8em; }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; margin-top: 1.4rem; }
.plan__cur { font-size: 1.4rem; vertical-align: super; color: var(--muted); margin-right: .1ch; }
.plan__period { color: var(--muted-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-top: .4rem; }
.plan__features { display: flex; flex-direction: column; gap: .75rem; margin: 1.6rem 0; flex: 1; }
.plan__features li { position: relative; padding-left: 1.7rem; font-size: .88rem; color: var(--muted); line-height: 1.45; }
.plan__features li::before {
  content: "";
  position: absolute; left: 0; top: .15em;
  width: 16px; height: 16px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e31b23' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.plan__cta { width: 100%; margin-top: auto; }
.pricing__note { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: 2rem; letter-spacing: .02em; }

/* ============================================================
   Shop
   ============================================================ */
.shop { padding: clamp(4rem, 8vw, 7rem) 0; border-top: 1px solid var(--card-border); background: var(--bg-2); }

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.product {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product:hover { border-color: var(--card-border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 38%, #1d1d1d 0%, #0c0c0c 75%);
  border-bottom: 1px solid var(--card-border);
}
.product__icon { width: 82px; height: 82px; filter: drop-shadow(0 10px 22px rgba(227,27,35,.28)); }
.product__tag {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 4px;
}
.product__body { display: flex; flex-direction: column; gap: .45rem; padding: 1.25rem; flex: 1; }
.product__name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; }
.product__desc { font-size: .82rem; color: var(--muted); line-height: 1.5; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: .9rem; }
.product__price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.shop__more { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ============================================================
   Final CTA
   ============================================================ */
.final { position: relative; padding: clamp(5rem, 9vw, 8rem) 0; border-top: 1px solid var(--card-border); text-align: center; overflow: hidden; }
.final__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(227,27,35,.14) 0%, transparent 60%);
  pointer-events: none;
}
.final__inner { position: relative; z-index: 1; }
.final__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 1rem + 4vw, 3.4rem);
  margin-bottom: 1rem;
}
.final__text { color: var(--muted); max-width: 460px; margin: 0 auto 2rem; font-size: 1.05rem; }
.final__domain { margin-top: 1.5rem; font-size: .85rem; color: var(--muted-2); letter-spacing: .05em; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 2rem 0; border-top: 1px solid var(--card-border); background: var(--bg-2); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer__copy { font-size: .78rem; color: var(--muted-2); }

/* ============================================================
   Responsive — Tablet (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  /* Header */
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding-top: var(--header-h); padding-bottom: 2.5rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .hero__visual { order: -1; }
  .hero__photo { max-width: 420px; margin-inline: auto; }
  .hero__copy { margin-inline: auto; max-width: 560px; }
  .hero__copy + .btn { width: 100%; max-width: 340px; }

  /* Pillars */
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Pricing */
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 1.25rem; }
  .plan--featured { order: -1; }
  .plan { padding: 2rem 1.5rem; }

  /* Shop */
  .products { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Transform */
  .transform__compare { max-width: 680px; }
}

/* ============================================================
   Responsive — Mobile (≤560px)
   ============================================================ */
@media (max-width: 560px) {
  :root { --header-h: 60px; }

  /* Global */
  .container { width: min(100% - 2rem, var(--maxw)); }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .section-sub { font-size: .9rem; }

  /* Hero */
  .hero { padding-bottom: 2rem; }
  .hero__visual {
    height: auto;
    overflow: visible;
    margin-inline: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero__photo {
    width: 78%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  }
  .hero__content { padding-top: .5rem; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 3.4rem); }
  .hero__tagline { font-size: 1rem; }
  .hero__copy { font-size: .9rem; }
  .hero__copy + .btn { width: 100%; max-width: none; }
  .hero__note { font-size: .75rem; }

  /* Method */
  .method { padding: 3rem 0; }
  .method .section-title { margin-bottom: 2rem; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .pillar { padding: 1.5rem 1rem; }
  .pillar__icon { height: 90px; }
  .pillar__icon img,
  .pillar__icon picture img { width: 120px !important; height: 120px !important; }
  .pillar__title { font-size: 1rem; }
  .pillar__lead { font-size: .82rem; }
  .pillar__text { font-size: .78rem; }
  .method__cta { margin-top: 2rem; }
  .method__cta-text { font-size: 1.2rem; }
  .method__cta .btn { width: 100%; }

  /* Pricing */
  .pricing { padding: 3rem 0; }
  .plans { max-width: none; }
  .plan { padding: 1.75rem 1.25rem; }
  .plan__name { font-size: 1.25rem; }
  .plan__price { font-size: 2.4rem; margin-top: 1rem; }
  .plan__features li { font-size: .82rem; }
  .plan__cta { width: 100%; }
  .pricing__note { font-size: .78rem; }

  /* Shop */
  .shop { padding: 3rem 0; }
  .products { grid-template-columns: 1fr; gap: 1rem; }
  .product {
    display: grid;
    grid-template-columns: 100px 1fr;
    min-height: 100px;
  }
  .product__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100px;
    border-bottom: none;
    border-right: 1px solid var(--card-border);
  }
  .product__icon { width: 54px; height: 54px; }
  .product__body { padding: 1rem; gap: .35rem; }
  .product__name { font-size: .9rem; }
  .product__desc { font-size: .78rem; }
  .product__price { font-size: 1.1rem; }
  .shop__more .btn { width: 100%; }

  /* Transform */
  .transform { padding: 3rem 0; }
  .transform__compare {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .transform__bolt { display: none; }
  .ba__photo { aspect-ratio: 2 / 3; }
  .ba__stat { font-size: .82rem; margin-top: .6rem; }
  .transform__quote { font-size: .95rem; margin-top: 2rem; }

  /* Final CTA */
  .final { padding: 3.5rem 0; text-align: center; }
  .final__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .final__text { font-size: .92rem; }
  .final__inner .btn { width: 100%; }

  /* Touch targets */
  .btn { min-height: 48px; }
  .mobile-nav__link { min-height: 48px; display: flex; align-items: center; }

  /* Footer */
  .footer__inner { flex-direction: column; text-align: center; gap: .5rem; }
  .footer { padding: 1.5rem 0; }
}

/* ---------- Punch-in animation ---------- */
@keyframes punchIn {
  0%   { opacity: 0; transform: scale(.94); }
  60%  { opacity: 1; transform: scale(1.015); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes punchInLeft {
  0%   { opacity: 0; transform: translateX(-24px) scale(.97); }
  60%  { opacity: 1; transform: translateX(3px)  scale(1.005); }
  100% { opacity: 1; transform: none; }
}

@keyframes punchInRight {
  0%   { opacity: 0; transform: translateX(24px) scale(.97); }
  60%  { opacity: 1; transform: translateX(-3px) scale(1.005); }
  100% { opacity: 1; transform: none; }
}

@keyframes sectionFlash {
  0%   { box-shadow: inset 0 0 0 1px transparent; }
  30%  { box-shadow: inset 0 0 0 1px rgba(227,27,35,.35); }
  100% { box-shadow: inset 0 0 0 1px transparent; }
}

.punch { opacity: 0; }
.punch.hit { animation: punchIn .38s cubic-bezier(.22,.9,.36,1) forwards; }

.punch-left  { opacity: 0; }
.punch-left.hit  { animation: punchInLeft  .38s cubic-bezier(.22,.9,.36,1) forwards; }

.punch-right { opacity: 0; }
.punch-right.hit { animation: punchInRight .38s cubic-bezier(.22,.9,.36,1) forwards; }

/* ---------- Motion / a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .punch, .punch-left, .punch-right { opacity: 1 !important; }
}

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