/* ============================================================
   EVIRON WELLNESS DRINK — MAIN STYLESHEET
   Premium Beverage Brand  ·  eviron.ae
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=Barlow+Condensed:wght@400;500;600;700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --red:        #C8192D;
  --red-deep:   #8B0D1A;
  --red-glow:   rgba(200,25,45,0.18);
  --red-fade:   rgba(200,25,45,0.06);
  --silver:     #A8AFBE;
  --silver-lt:  #D4D8E2;
  --white:      #F6F4F0;
  --off:        #ECEAE4;
  --ink:        #09090C;
  --ink2:       #131318;
  --ink3:       #1C1C23;
  --ink4:       #28282F;
  --muted:      #5A5A68;
  --mid:        #8E8EA0;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-red   { color: var(--red); }
.text-silver{ color: var(--silver); }
.text-muted { color: var(--muted); }

/* ── TYPOGRAPHY SCALE ────────────────────────────────────── */
.display-hero  { font-family: var(--font-display); font-size: clamp(4.5rem, 10vw, 10rem); line-height: 0.88; letter-spacing: 0.02em; }
.display-xl    { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); line-height: 0.9; letter-spacing: 0.02em; }
.display-lg    { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5rem); line-height: 0.92; letter-spacing: 0.02em; }
.display-md    { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 0.95; }
.cond-lg       { font-family: var(--font-cond); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.cond-md       { font-family: var(--font-cond); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.body-lg       { font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.7; font-weight: 400; color: var(--silver-lt); }
.body-md       { font-size: 0.95rem; line-height: 1.65; color: var(--silver); }
.body-sm       { font-size: 0.82rem; line-height: 1.55; color: var(--mid); }

/* ── SECTION LABEL ───────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--red); flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem 2rem;
  border-radius: 2px; transition: all 0.25s var(--ease-out); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08); opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 0 0 0 rgba(200,25,45,0.4);
}
.btn-primary:hover {
  background: #E01E30; transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200,25,45,0.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--red); color: var(--red); transform: translateY(-1px);
}
.btn-dark {
  background: var(--ink3); color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover { border-color: var(--red); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.hdiv { width: 48px; height: 2px; background: var(--red); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--gutter);
  transition: background 0.4s var(--ease-inout), padding 0.3s;
}
.site-header.scrolled {
  background: rgba(9,9,12,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--font-display); font-size: 1.75rem; letter-spacing: 0.06em;
  color: var(--white); display: flex; align-items: center; gap: 0.3rem;
}
.site-logo span { color: var(--red); }
.logo-tag {
  font-family: var(--font-cond); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase;
  margin-top: 0.15rem; display: block;
}
.site-nav { display: flex; align-items: center; gap: 2.25rem; }
.site-nav a {
  font-family: var(--font-cond); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--red); transition: width 0.25s var(--ease-out);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 0.5rem;
  width: 40px; height: 40px; justify-content: center; align-items: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: all 0.25s var(--ease-out); transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(9,9,12,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; z-index: 99; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all 0.35s var(--ease-out);
}
.mobile-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 0.05em; color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden;
}
.hero-carousel {
  position: relative; flex: 1; display: flex;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0; transition: opacity 0.9s var(--ease-inout);
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: all; }

/* Slide backgrounds */
.hero-slide-1 {
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,25,45,0.25) 0%, transparent 65%),
    linear-gradient(135deg, #09090C 0%, #1A0508 40%, #09090C 100%);
}
.hero-slide-2 {
  background:
    radial-gradient(ellipse 50% 70% at 60% 40%, rgba(200,25,45,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #09090C 0%, #10080A 50%, #09090C 100%);
}
.hero-slide-3 {
  background:
    radial-gradient(ellipse 55% 65% at 65% 45%, rgba(200,25,45,0.12) 0%, transparent 60%),
    linear-gradient(140deg, #09090C 0%, #0E0D10 60%, #09090C 100%);
}

/* Decorative grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 80px);
}

/* Can illustration area */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hero-can-wrap {
  position: relative; width: 300px; height: 600px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 40px 80px rgba(200,25,45,0.35));
  transition: transform 1.2s var(--ease-out);
}
.hero-slide.active .hero-can-wrap { transform: rotate(-4deg); }
.hero-can {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #9E0D1E 0%, #C8192D 20%, #E03040 45%, #C8192D 70%, #8B0D1A 100%);
  border-radius: 22px 22px 18px 18px;
  position: relative; overflow: hidden;
  box-shadow:
    inset 2px 0 8px rgba(255,255,255,0.12),
    inset -2px 0 6px rgba(0,0,0,0.3),
    0 0 80px rgba(200,25,45,0.3);
}
.hero-can::before {
  content: '';
  position: absolute; top: 0; left: 15%; width: 30%; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 0 0 4px 4px;
}
.hero-can-top {
  position: absolute; top: -8px; left: 10%; right: 10%; height: 24px;
  background: linear-gradient(to right, #7A8090, #C4CAD8, #9AA0AE, #D4DAE8, #8A909E);
  border-radius: 6px 6px 0 0;
}
.hero-can-bottom {
  position: absolute; bottom: -8px; left: 10%; right: 10%; height: 24px;
  background: linear-gradient(to right, #7A8090, #C4CAD8, #9AA0AE);
  border-radius: 0 0 6px 6px;
}
.hero-can-label {
  position: absolute; inset: 40px 20px 40px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.can-logo-text {
  font-family: var(--font-display); font-size: 2.8rem; color: rgba(255,255,255,0.96);
  letter-spacing: 0.06em; line-height: 1;
}
.can-product-name {
  font-family: var(--font-cond); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.22em; color: rgba(255,255,255,0.6); text-transform: uppercase;
  margin-top: 0.2rem;
}
.can-claims {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.3rem;
}
.can-claims span {
  font-family: var(--font-cond); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72);
}
.can-volume {
  position: absolute; bottom: 60px; width: 100%; text-align: center;
  font-family: var(--font-cond); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.45); text-transform: uppercase;
}

/* Liquid splash ring */
.splash-ring {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  transform: translate(-50%, -55%);
  width: 500px; height: 500px; pointer-events: none;
}
.splash-ring::before, .splash-ring::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(200,25,45,0.12);
  animation: pulseRing 4s var(--ease-inout) infinite;
}
.splash-ring::after { inset: 40px; border-color: rgba(200,25,45,0.07); animation-delay: 1.5s; }
@keyframes pulseRing {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* Slide 2 — skater visual */
.hero-lifestyle-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; z-index: 2;
}
.hero-lifestyle-figure {
  width: 420px; height: 580px; position: relative;
  background: linear-gradient(160deg, rgba(200,25,45,0.06) 0%, transparent 60%);
  border-radius: 12px 12px 0 0; overflow: hidden;
}
.lifestyle-person {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--red);
  letter-spacing: 0.1em; text-align: center; padding-bottom: 2rem;
  background:
    linear-gradient(180deg, transparent 50%, rgba(9,9,12,0.85) 100%),
    radial-gradient(ellipse 80% 80% at 50% 40%, rgba(200,25,45,0.08) 0%, transparent 70%);
}

/* Silhouette shapes for hero slides 2 & 3 */
.hero-silhouette {
  position: absolute; right: 5%; bottom: 0; z-index: 2;
  width: clamp(280px, 35vw, 520px);
}
.silhouette-skater {
  height: clamp(420px, 55vh, 680px);
  background:
    radial-gradient(ellipse 60% 90% at 50% 60%, rgba(200,25,45,0.1) 0%, transparent 65%),
    linear-gradient(180deg, transparent 30%, rgba(9,9,12,0.6) 100%);
  border-radius: 50% 50% 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.silhouette-gym {
  height: clamp(380px, 52vh, 640px);
  background:
    radial-gradient(ellipse 60% 90% at 50% 60%, rgba(200,25,45,0.08) 0%, transparent 60%),
    linear-gradient(180deg, transparent 30%, rgba(9,9,12,0.6) 100%);
  border-radius: 50% 50% 0 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Hero figure placeholders — these become <img> when real photos added */
.hero-figure-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem; padding: 2rem;
}
.hero-figure-icon {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(200,25,45,0.12); border: 1px solid rgba(200,25,45,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.hero-figure-label {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,25,45,0.5);
  text-align: center;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 3;
  padding: 0 var(--gutter) clamp(4rem, 8vh, 7rem);
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding-top: 72px;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 100svh;
}
.hero-inner { max-width: 600px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.7s 0.2s var(--ease-out) forwards;
}
.hero-tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--red); }
.hero-headline {
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s 0.35s var(--ease-out) forwards;
}
.hero-sub {
  margin-top: 1.25rem; max-width: 440px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem); line-height: 1.65; color: var(--silver);
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.7s 0.5s var(--ease-out) forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.7s 0.65s var(--ease-out) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Carousel nav */
.carousel-nav {
  position: absolute; bottom: clamp(1.5rem, 4vh, 3rem); right: var(--gutter);
  display: flex; align-items: center; gap: 0.75rem; z-index: 10;
}
.carousel-dot {
  width: 28px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px;
  cursor: pointer; transition: all 0.25s var(--ease-out);
}
.carousel-dot.active { background: var(--red); width: 44px; }
.carousel-count {
  font-family: var(--font-cond); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; color: var(--muted); margin-left: 0.5rem;
}

/* Carousel arrows */
.carousel-arrows {
  position: absolute; bottom: clamp(1.5rem, 4vh, 3rem); left: var(--gutter);
  display: flex; gap: 0.5rem; z-index: 10;
}
.carousel-arrow {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-size: 1.1rem; transition: all 0.2s; cursor: pointer;
}
.carousel-arrow:hover { border-color: var(--red); color: var(--red); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: clamp(1.5rem, 4vh, 3rem); left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-indicator svg { width: 18px; height: 18px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ═══════════════════════════════════════════════════════════
   WHY EVIRON
═══════════════════════════════════════════════════════════ */
.why-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--ink2);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: 'EVIRON'; position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%); z-index: 0;
  font-family: var(--font-display); font-size: clamp(8rem, 18vw, 20rem);
  color: rgba(255,255,255,0.018); letter-spacing: 0.1em; pointer-events: none;
  white-space: nowrap;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 7rem);
  align-items: center; position: relative; z-index: 1;
}
.why-visual {
  position: relative; aspect-ratio: 4/5;
}
.why-can-stage {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,25,45,0.18) 0%, transparent 65%),
    linear-gradient(160deg, var(--ink3) 0%, var(--ink4) 100%);
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.why-can-large {
  width: 180px; height: 380px;
  background: linear-gradient(160deg, #9E0D1E 0%, #C8192D 20%, #E03040 45%, #C8192D 70%, #8B0D1A 100%);
  border-radius: 16px 16px 12px 12px;
  position: relative; overflow: hidden;
  box-shadow:
    inset 2px 0 8px rgba(255,255,255,0.12),
    0 40px 80px rgba(200,25,45,0.3),
    0 0 120px rgba(200,25,45,0.15);
}
.why-can-large::before {
  content: ''; position: absolute; top: 0; left: 18%; width: 25%; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.04) 100%);
}
.why-can-large-text {
  position: absolute; inset: 30px 10px 30px 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.why-badge {
  position: absolute; top: -12px; right: -12px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  text-align: center; line-height: 1.3;
  box-shadow: 0 8px 24px rgba(200,25,45,0.4);
}
.why-stats {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  display: flex; gap: 1rem;
}
.why-stat {
  flex: 1; background: rgba(9,9,12,0.8); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 6px;
  padding: 0.9rem 0.75rem; text-align: center;
}
.why-stat-val {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--red); line-height: 1;
}
.why-stat-lbl {
  font-family: var(--font-cond); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem;
}
.why-content { padding: 1rem 0; }
.why-content .display-lg { margin-bottom: 1.5rem; }
.why-features {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.why-feature {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-feature:last-child { border-bottom: none; }
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 6px;
  background: var(--red-fade); border: 1px solid rgba(200,25,45,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-feature-text h4 {
  font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 0.3rem;
}
.why-feature-text p { font-size: 0.88rem; color: var(--silver); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════════════════════ */
.benefits-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--ink); position: relative; overflow: hidden;
}
.benefits-header { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }
.benefits-header .display-lg { margin-bottom: 1rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; overflow: hidden;
}
.benefit-card {
  background: var(--ink2); padding: clamp(1.75rem, 3vw, 2.5rem) 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.benefit-card:hover { background: var(--ink3); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-number {
  font-family: var(--font-display); font-size: 3.5rem; color: rgba(200,25,45,0.18);
  line-height: 1; position: absolute; top: 0.75rem; right: 1.25rem;
}
.benefit-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--red-fade); border: 1px solid rgba(200,25,45,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.benefit-card h3 {
  font-family: var(--font-cond); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.benefit-card p { font-size: 0.85rem; color: var(--silver); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   INGREDIENTS
═══════════════════════════════════════════════════════════ */
.ingredients-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: linear-gradient(180deg, var(--ink2) 0%, var(--ink) 100%);
  position: relative; overflow: hidden;
}
.ingredients-section::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,25,45,0.3), transparent);
}
.ingredients-header { margin-bottom: clamp(3rem, 6vh, 5rem); }
.ingredients-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.ingredients-intro .body-lg { margin-top: 1.25rem; max-width: 420px; }
.ingredients-intro .btn { margin-top: 2rem; }
.ingredients-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden;
}
.ingredient-item {
  background: var(--ink2); padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background 0.2s; cursor: default;
}
.ingredient-item:hover { background: var(--ink3); }
.ingredient-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  flex-shrink: 0; margin-top: 0.35rem;
}
.ingredient-name {
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  line-height: 1.2; margin-bottom: 0.25rem;
}
.ingredient-role {
  font-size: 0.75rem; color: var(--muted); line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   BUY NOW
═══════════════════════════════════════════════════════════ */
.buy-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.buy-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,25,45,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.buy-header { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }
.buy-header .display-lg { margin-bottom: 1rem; }
.buy-formats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.format-card {
  background: var(--ink2); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
  padding: 2rem 1.5rem; text-align: center;
  transition: all 0.3s var(--ease-out); position: relative; overflow: hidden;
}
.format-card.featured {
  border-color: rgba(200,25,45,0.35);
  background: linear-gradient(160deg, rgba(200,25,45,0.08) 0%, var(--ink2) 100%);
}
.format-card.featured::before {
  content: 'POPULAR';
  position: absolute; top: 0.75rem; right: 0.75rem;
  font-family: var(--font-cond); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--red); background: var(--red-fade);
  padding: 0.2rem 0.5rem; border-radius: 2px;
}
.format-card:hover { transform: translateY(-4px); border-color: rgba(200,25,45,0.25); }
.format-visual {
  display: flex; align-items: flex-end; justify-content: center; gap: 6px;
  height: 120px; margin-bottom: 1.25rem;
}
.mini-can {
  border-radius: 6px 6px 5px 5px;
  background: linear-gradient(160deg, #9E0D1E 0%, #C8192D 30%, #E03040 55%, #C8192D 80%, #8B0D1A 100%);
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(200,25,45,0.3);
}
.mini-can::before {
  content: ''; position: absolute; top: 0; left: 18%; width: 22%; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.04) 100%);
}
.mini-can-single { width: 42px; height: 88px; }
.mini-can-pack   { width: 36px; height: 76px; }
.format-name {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
  line-height: 1; margin-bottom: 0.35rem;
}
.format-desc { font-size: 0.82rem; color: var(--silver); line-height: 1.5; }

.buy-platforms {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  max-width: 560px; margin: 0 auto;
}
.platform-btn {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--ink2); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  color: var(--white); font-family: var(--font-cond); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
}
.platform-btn:hover {
  border-color: var(--red); background: var(--red-fade);
  transform: translateY(-2px);
}
.platform-icon {
  width: 36px; height: 36px; border-radius: 6px; background: var(--ink3);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.platform-arrow { color: var(--muted); font-size: 0.8rem; transition: color 0.2s; }
.platform-btn:hover .platform-arrow { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   FIND US (RETAILERS)
═══════════════════════════════════════════════════════════ */
.retailers-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--ink2); position: relative;
}
.retailers-header { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }
.retailers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.retailer-card {
  background: var(--ink3); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
  padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  text-align: center; transition: all 0.25s var(--ease-out);
}
.retailer-card:hover {
  border-color: rgba(200,25,45,0.25); background: var(--ink4);
  transform: translateY(-3px);
}
.retailer-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--red-fade); border: 1px solid rgba(200,25,45,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.retailer-name {
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
}
.retailer-type { font-size: 0.72rem; color: var(--muted); }
.retailers-note {
  text-align: center; margin-top: 2rem;
  font-family: var(--font-cond); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   BLOG PREVIEW
═══════════════════════════════════════════════════════════ */
.blog-preview-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--ink);
}
.blog-preview-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
  flex-wrap: wrap; gap: 1.5rem;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.blog-card {
  background: var(--ink2); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease-out); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(200,25,45,0.2); }
.blog-card-image {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--ink3) 0%, var(--ink4) 100%);
}
.blog-card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-cat {
  font-family: var(--font-cond); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--red);
}
.blog-card-title {
  font-family: var(--font-cond); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--white); line-height: 1.3;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--red); }
.blog-card-excerpt { font-size: 0.82rem; color: var(--silver); line-height: 1.55; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem;
  font-size: 0.72rem; color: var(--muted);
  font-family: var(--font-cond); letter-spacing: 0.1em;
}
.blog-read-link {
  font-family: var(--font-cond); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--red);
  transition: gap 0.2s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.blog-read-link:hover { gap: 0.7rem; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-section {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--ink2); position: relative; overflow: hidden;
}
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.faq-side .display-lg { margin-bottom: 1.5rem; }
.faq-side .body-lg { max-width: 360px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.4rem 0; cursor: pointer;
  font-family: var(--font-cond); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--white); text-align: left;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--silver);
  transition: all 0.25s var(--ease-out);
}
.faq-item.open .faq-icon { border-color: var(--red); color: var(--red); transform: rotate(45deg); }
.faq-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s var(--ease-inout), padding 0.3s;
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p {
  padding-bottom: 1.4rem;
  font-size: 0.9rem; color: var(--silver); line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,25,45,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner .display-xl { margin-bottom: 1.25rem; }
.cta-inner .body-lg { margin-bottom: 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-can-deco {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%) rotate(15deg);
  width: 100px; height: 220px; opacity: 0.06;
  background: linear-gradient(160deg, #9E0D1E, #C8192D, #E03040);
  border-radius: 12px 12px 10px 10px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: clamp(3rem, 6vh, 5rem) 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.06em; color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.55; max-width: 260px; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--silver);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--red); color: var(--red); }
.footer-col h4 {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.85rem; color: var(--muted); transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.footer-contact a { color: var(--silver); transition: color 0.2s; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   BLOG PAGES
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(72px + clamp(4rem, 8vh, 7rem)) var(--gutter) clamp(4rem, 8vh, 7rem);
  background: var(--ink2); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(200,25,45,0.06) 0%, transparent 65%);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.blog-index-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem;
  padding: clamp(3rem, 6vh, 5rem) 0;
}
.blog-card-large { /* same as blog-card but larger image */ }
.blog-filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 2rem 0;
}
.filter-pill {
  font-family: var(--font-cond); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15); color: var(--silver);
  transition: all 0.2s; cursor: pointer;
}
.filter-pill.active, .filter-pill:hover { border-color: var(--red); color: var(--red); }

/* Article page */
.article-hero {
  padding: calc(72px + clamp(3rem, 6vh, 5rem)) var(--gutter) 0;
  background: var(--ink2);
}
.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.article-meta-item { font-size: 0.8rem; color: var(--muted); font-family: var(--font-cond); letter-spacing: 0.1em; }
.article-headline { margin: 1.25rem 0; }
.article-featured-image {
  margin-top: 3rem; aspect-ratio: 16/7; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--ink3), var(--ink4));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; opacity: 0.3;
}
.article-body {
  max-width: 700px; margin: 0 auto;
  padding: clamp(3rem, 6vh, 5rem) var(--gutter);
}
.article-body p { font-size: 1.05rem; line-height: 1.8; color: var(--silver-lt); margin-bottom: 1.5rem; }
.article-body h2 {
  font-family: var(--font-display); font-size: 2rem; color: var(--white);
  margin: 2.5rem 0 1rem; letter-spacing: 0.03em;
}
.article-body h3 {
  font-family: var(--font-cond); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
  margin: 2rem 0 0.75rem;
}
.article-body blockquote {
  border-left: 3px solid var(--red); padding: 1rem 1.5rem; margin: 2rem 0;
  background: var(--red-fade); border-radius: 0 6px 6px 0;
  font-size: 1.05rem; color: var(--silver-lt); line-height: 1.7; font-style: italic;
}
.article-back { padding: 2rem var(--gutter); }
.article-back a {
  font-family: var(--font-cond); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s;
}
.article-back a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════════ */
.legal-body {
  max-width: 760px; margin: 0 auto;
  padding: calc(72px + 4rem) var(--gutter) 5rem;
}
.legal-body h1 {
  font-family: var(--font-display); font-size: 3rem; margin-bottom: 0.5rem;
}
.legal-body .last-updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 3rem; }
.legal-body h2 {
  font-family: var(--font-cond); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin: 2.5rem 0 1rem;
}
.legal-body p { font-size: 0.95rem; color: var(--silver); line-height: 1.75; margin-bottom: 1.25rem; }
.legal-body ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.legal-body li { font-size: 0.95rem; color: var(--silver); line-height: 1.65; margin-bottom: 0.5rem; list-style: disc; }
.legal-body a { color: var(--red); }
.legal-body a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS / SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hover tilt */
[data-tilt] { transition: transform 0.15s var(--ease-out); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { aspect-ratio: 16/9; max-height: 400px; }
  .ingredients-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .retailers-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .site-nav, .header-cta .btn:not(.btn-primary) { display: none; }
  .menu-toggle { display: flex; }
  .hero-visual { display: none; }
  .hero-silhouette { display: none; }
  .hero-inner { max-width: 100%; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .retailers-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-formats { grid-template-columns: 1fr; }
  .buy-platforms { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-preview-header { flex-direction: column; align-items: flex-start; }
  .carousel-arrows { display: none; }
  .ingredients-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .retailers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .display-hero { font-size: 4rem; }
}
