/* =================================================================
   Spivey & Company — Wired-editorial design system
   Tokens sourced verbatim from DESIGN.md
   ================================================================= */

:root {
  /* Colors */
  --primary: #000000;
  --on-primary: #ffffff;
  --ink: #000000;
  --ink-soft: #1a1a1a;
  --body: #757575;
  --hairline: #e0e0e0;
  --canvas: #ffffff;
  --canvas-soft: #f5f5f5;
  --link: #057dbc;

  /* Type families (open-source substitutes per DESIGN.md) */
  --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Spacing scale (4px base) */
  --xxs: 2px;  --xs: 4px;  --sm: 8px;  --md: 12px;
  --lg: 16px;  --xl: 20px; --2xl: 24px; --3xl: 32px; --4xl: 48px;

  --container: 1400px;
  --reading: 760px;
  --nav-h: 64px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 1000; width: auto; height: auto;
  clip: auto; margin: 0; padding: var(--md) var(--xl);
  background: var(--ink); color: var(--on-primary);
  font-family: var(--font-sans); font-weight: 700;
}

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--xl); }

/* ---------------- Shared editorial elements ---------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--ink);
  margin: 0 0 var(--lg);
  display: inline-flex; align-items: center; gap: var(--md);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--ink); display: inline-block;
}
.eyebrow--invert, .eyebrow--invert::before { color: var(--on-primary); }
.eyebrow--invert::before { background: var(--on-primary); }

.section { padding: clamp(40px, 5.5vw, 76px) 0; border-top: 1px solid var(--hairline); }
.section__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05; letter-spacing: -0.4px;
  max-width: 18ch;
}
.section__headline--invert { color: var(--on-primary); max-width: 16ch; }
.section__lede {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55; color: var(--ink-soft);
  max-width: var(--reading); margin-top: var(--2xl);
}

/* ---------------- Buttons ---------------- */
.btn {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 700; letter-spacing: 0.3px;
  padding: var(--md) var(--2xl);
  border-radius: 0; border: 1px solid transparent;
  cursor: pointer; display: inline-block; line-height: 1.25;
  transition: background .25s ease, color .25s ease, transform .15s ease;
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--on-primary); transform: translateY(-2px); }

.inline-link { color: var(--link); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------- Masthead ---------------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.masthead__inner {
  max-width: var(--container); margin: 0 auto;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: var(--lg); padding: 0 var(--xl);
}
.masthead__brand { justify-self: center; }
.masthead__logo { height: 27.5px; width: auto; }
.masthead__nav { justify-self: end; display: flex; gap: var(--2xl); align-items: center; }
.nav-link {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--ink); position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--ink); transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.masthead__cta { justify-self: end; padding: var(--sm) var(--lg); font-size: 13px; }
.masthead__menu { display: none; }
.masthead__scrollbar { height: 2px; background: var(--ink); width: 0%; transition: width .1s linear; }

/* default: brand left on desktop layout override */
@media (min-width: 1025px) {
  .masthead__inner { grid-template-columns: auto 1fr auto; }
  .masthead__brand { justify-self: start; }
  .masthead__nav { justify-self: center; }
}

/* ---------------- Hero ---------------- */
.hero { padding: clamp(48px, 7vw, 88px) 0 0; }
.hero__grid {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 72px);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(20px, 2.6vw, 36px);
  align-items: end;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7.2vw, 76px);
  line-height: 0.98; letter-spacing: -0.5px;
  margin: var(--lg) 0 var(--2xl);
}
.hero__headline em { font-style: italic; }
.hero__lede {
  font-size: clamp(18px, 2.2vw, 21px); line-height: 1.55; color: var(--ink-soft);
  max-width: 46ch;
}
.hero__actions { display: flex; gap: var(--md); margin: var(--3xl) 0 0; flex-wrap: wrap; }
.hero__copy { padding-bottom: clamp(32px, 5vw, 56px); }
.hero__portrait { margin: 0; overflow: hidden; }
.hero__portrait img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  filter: grayscale(1) contrast(1.04);
  transition: filter .6s ease;
}
.hero__portrait:hover img { filter: grayscale(0.55) contrast(1.02); }

/* Hedcut variant — already monochrome line-art on white; show in full, no crop/desat */
.hero__portrait--hedcut { display: flex; align-items: center; justify-content: center; }
.hero__portrait--hedcut img {
  width: 100%; height: auto; aspect-ratio: auto; max-height: 520px;
  object-fit: contain; filter: none; mix-blend-mode: multiply;
}
.hero__portrait--hedcut:hover img { filter: none; }

/* ---------------- Stats ---------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--hairline);
}
.stat {
  padding: var(--3xl) var(--lg) var(--lg) var(--3xl);
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 68px);
  line-height: 1; display: block; letter-spacing: -1px;
}
.stat__num--text { font-size: clamp(34px, 4.5vw, 52px); }
.stat__label {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px; color: var(--body); display: block; margin-top: var(--md);
  max-width: 18ch;
}

/* ---------------- Method / Roadmap ---------------- */
.roadmap { margin-top: clamp(40px, 6vw, 72px); }
.roadmap__track { position: relative; }
.roadmap__line {
  position: absolute; top: 18px; left: var(--3xl); right: 0; height: 2px; background: var(--hairline);
}
.roadmap__line-fill { display: block; height: 100%; width: 0%; background: var(--ink); transition: width 1.2s ease; }
.roadmap__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.roadmap__step {
  padding: 0 var(--xl) 0 var(--3xl);
  position: relative;
}
/* vertical divider starts at the timeline line (top: 18px), not above it */
.roadmap__step:not(:last-child)::after {
  content: ""; position: absolute; top: 18px; right: 0; bottom: 0; width: 1px; background: var(--hairline);
}
.roadmap__num {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--ink); background: var(--canvas); position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 9999px;
}
.roadmap__phase {
  font-family: var(--font-display); font-size: 24px; line-height: 1.1;
  margin: var(--lg) 0 var(--sm); letter-spacing: -0.3px;
}
.roadmap__detail { font-family: var(--font-serif); font-size: 15px; line-height: 1.5; color: var(--body); }
.roadmap__bands { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: var(--3xl); }
.roadmap__band {
  margin-left: var(--3xl);
  font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--body);
  border-top: 2px solid var(--ink); padding-top: var(--sm);
}

/* ---------------- Capabilities (dark cards) ---------------- */
.capabilities {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--lg);
  margin-top: clamp(36px, 5vw, 60px);
}
.cap {
  background: var(--ink); color: var(--on-primary);
  padding: clamp(28px, 3.5vw, 44px);
}
.cap__index { font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 1px; }
.cap__title { font-family: var(--font-display); font-size: 28px; margin: var(--md) 0 var(--md); letter-spacing: -0.3px; color: var(--on-primary); }
.cap__body { font-family: var(--font-serif); font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 48ch; }

/* ---------------- Partnership pillars (dark cards) ---------------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lg);
  margin-top: clamp(36px, 5vw, 60px);
}
.pillar { background: var(--ink); color: var(--on-primary); padding: clamp(28px, 3.5vw, 44px); }
.pillar__index {
  font-family: var(--font-display); font-size: 26px; display: block; margin-bottom: var(--lg);
  position: relative; padding-bottom: var(--md); color: var(--on-primary);
}
.pillar__index::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--on-primary); }
.pillar__body { font-family: var(--font-serif); font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.78); }

/* ---------------- Work / Ventures ---------------- */
.venture-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
  margin-top: clamp(40px, 6vw, 72px);
}

/* Wide flagship card — spans 2 of the 3 grid columns */
.venture--wide { grid-column: span 2; position: relative; cursor: pointer; }
/* Stretched link: the name is the real link, expanded to cover the whole card */
.venture__namelink { color: inherit; text-decoration: none; }
.venture__namelink::after { content: ""; position: absolute; inset: 0; z-index: 3; }
.venture--wide:hover .venture__name { text-decoration: underline; text-underline-offset: 3px; }
.venture--wide .venture__logo { max-height: 56px; }
.venture--wide .venture__name { font-size: 30px; letter-spacing: -0.4px; }
.venture--wide .venture__desc { font-size: 17px; line-height: 1.6; color: var(--ink-soft); max-width: none; }
.venture {
  background: var(--canvas); padding: var(--2xl);
  display: flex; flex-direction: column;
  transition: transform .25s ease, outline-color .25s ease;
  outline: 1px solid transparent; outline-offset: -1px;
}
.venture:hover {
  transform: translateY(-6px) scale(1.012); z-index: 2; position: relative;
  outline-color: var(--ink); background: var(--canvas);
}
.venture__logo-wrap {
  height: 72px; display: flex; align-items: center; justify-content: flex-start; margin-bottom: var(--xl);
}
.venture__logo {
  max-height: 46px; max-width: 80%; width: auto; object-fit: contain; object-position: left center;
  filter: grayscale(1); opacity: 1; transition: filter .4s ease;
}
.venture:hover .venture__logo { filter: grayscale(0); }
.venture__name { font-family: var(--font-display); font-size: 23px; letter-spacing: -0.3px; margin-bottom: var(--md); line-height: 1.1; }
.venture__name--mark { font-size: 22px; margin: 0; max-width: 92%; color: var(--ink); }
.venture__desc { font-family: var(--font-serif); font-size: 15px; line-height: 1.55; color: var(--body); flex: 1; }
.venture__founder {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--ink); margin-top: var(--xl);
  padding-top: var(--md); border-top: 1px solid var(--hairline);
}

/* ---------------- Founder ---------------- */
.founder__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.founder__portrait { margin: 0; position: sticky; top: calc(var(--nav-h) + 24px); }
.founder__portrait img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top;
  filter: grayscale(1) contrast(1.04); transition: filter .6s ease;
}
.founder__portrait:hover img { filter: grayscale(0.45); }
.byline { margin: var(--lg) 0 var(--2xl); display: flex; flex-direction: column; gap: 2px; }
.byline__name { font-family: var(--font-serif); font-weight: 700; font-size: 16px; }
.byline__role { font-family: var(--font-sans); font-size: 13px; color: var(--body); letter-spacing: 0.3px; }
.founder__para { font-family: var(--font-serif); font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin-bottom: var(--xl); max-width: 60ch; }
.founder__para--soft { color: var(--body); font-style: italic; font-size: 16px; }

/* ---------------- Place / New Orleans ---------------- */
.place { padding: 0; border-top: 1px solid var(--hairline); }
.place__photo { position: relative; }
.place__photo > img {
  width: 100%; height: clamp(380px, 60vh, 600px); object-fit: cover; object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.62);
}
.place__overlay { position: absolute; inset: 0; display: flex; align-items: center; }
.place__lede {
  font-family: var(--font-serif); font-size: clamp(17px, 2vw, 20px); line-height: 1.6;
  color: rgba(255,255,255,0.92); max-width: 56ch; margin-top: var(--2xl);
}
.guides { margin-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(56px, 8vw, 96px); }
.guide { border-top: 1px solid var(--hairline); }
.guide:last-child { border-bottom: 1px solid var(--hairline); }
.guide__summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--2xl) 0;
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.3px;
}
.guide__summary::-webkit-details-marker { display: none; }
.guide__icon { position: relative; width: 20px; height: 20px; flex: none; }
.guide__icon::before, .guide__icon::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .3s ease;
}
.guide__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.guide__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.guide[open] .guide__icon::after { transform: scaleY(0); }
.guide__content { padding: 0 0 var(--3xl); max-width: var(--reading); }
.guide__content p { font-family: var(--font-serif); font-size: 17px; color: var(--ink-soft); margin-bottom: var(--lg); }
.guide__content ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--md); }
.guide__content li { font-family: var(--font-serif); font-size: 16px; line-height: 1.5; color: var(--body); padding-left: var(--lg); border-left: 2px solid var(--hairline); }
.guide__content li strong { color: var(--ink); font-weight: 600; }

/* ---------------- Connect ---------------- */
.connect__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.connect__details { font-style: normal; margin-top: var(--3xl); font-family: var(--font-serif); font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.connect__company { font-family: var(--font-sans); font-weight: 700; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--md); color: var(--ink); }
.connect__details a:hover { color: var(--link); }
.connect__panel { background: var(--canvas-soft); padding: clamp(28px, 4vw, 44px); }
.connect__panel-title { font-family: var(--font-display); font-size: 30px; letter-spacing: -0.3px; }
.connect__panel-sub { font-family: var(--font-serif); font-size: 16px; color: var(--body); margin: var(--md) 0 var(--2xl); }
.signup { display: flex; flex-wrap: wrap; gap: var(--md); }
.signup__input {
  flex: 1; min-width: 200px; font-family: var(--font-sans); font-size: 16px;
  padding: var(--md) var(--lg); border: 1px solid var(--ink); border-radius: 0; background: var(--canvas); color: var(--ink);
}
.signup__input::placeholder { color: var(--body); }
.signup__btn { flex: none; }
.signup__msg { width: 100%; font-family: var(--font-sans); font-size: 14px; margin-top: var(--xs); min-height: 18px; }
.signup__msg.is-ok { color: var(--ink); }
.signup__msg.is-err { color: #b00020; }
.connect__schedule { margin-top: var(--2xl); width: 100%; text-align: center; }

/* ---------------- Footer ---------------- */
.footer { background: var(--primary); color: var(--on-primary); padding: clamp(48px, 7vw, 72px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.footer__logo { height: 26px; width: auto; margin-bottom: var(--lg); }
.footer__tag { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: rgba(255,255,255,0.72); max-width: 30ch; }
.footer__nav { display: flex; flex-direction: column; gap: var(--md); }
.footer__nav a { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.86); }
.footer__nav a:hover { color: var(--on-primary); }
.footer__meta { font-family: var(--font-sans); font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer__meta a:hover { color: var(--on-primary); text-decoration: underline; }
.footer__copy { margin-top: var(--lg); color: rgba(255,255,255,0.5); }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__portrait img, .founder__portrait img { transition: none; }
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1024px) {
  .masthead__inner { grid-template-columns: auto 1fr auto; }
  .masthead__brand { justify-self: start; }
  .masthead__menu {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .masthead__menu span { display: block; height: 2px; width: 100%; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
  .masthead__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .masthead__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .masthead__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .masthead__cta { display: none; }
  .masthead__nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--canvas); border-bottom: 1px solid var(--hairline);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: var(--sm) var(--xl) var(--2xl);
    transform: translateY(-120%); transition: transform .35s ease; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .masthead__nav.is-open { transform: translateY(0); }
  .nav-link { width: 100%; padding: var(--lg) 0; border-bottom: 1px solid var(--hairline); font-size: 16px; }
  .nav-link::after { display: none; }

  /* Hero: flatten the copy column so the headcut can sit between the eyebrow and the headline */
  .hero { padding-bottom: var(--3xl); }
  .hero__grid { grid-template-columns: 1fr; gap: 0; align-items: start; }
  .hero__copy { display: contents; padding-bottom: 0; }
  .hero .eyebrow { order: 1; }
  .hero__portrait { order: 2; max-width: 320px; margin: var(--lg) auto var(--xl); }
  .hero__headline { order: 3; }
  .hero__lede { order: 4; }
  .hero__actions { order: 5; }

  /* Founder: same treatment — headcut after the eyebrow */
  .founder__grid { grid-template-columns: 1fr; gap: 0; }
  .founder__body { display: contents; }
  .founder .eyebrow { order: 1; }
  .founder__portrait { order: 2; position: static; max-width: 320px; margin: var(--lg) auto var(--2xl); }
  .founder__body .section__headline { order: 3; }
  .founder__body .byline { order: 4; }
  .founder__body .founder__para { order: 5; }

  .connect__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--hairline); }
  .stat:nth-child(even) { border-right: 0; }
  /* Method: continuous left rail (no gaps), circles centered on it, breathing room */
  .roadmap__line { display: none; }
  .roadmap__steps { grid-template-columns: 1fr; gap: 0; }
  .roadmap__step { padding: 0 0 var(--4xl) var(--3xl); position: relative; border-left: 2px solid var(--hairline); }
  .roadmap__step:last-child { padding-bottom: var(--lg); }
  .roadmap__step::after { display: none; }
  .roadmap__phase { margin: 6px 0 var(--sm); }
  .roadmap__num { position: absolute; left: -20px; top: 0; }
  .roadmap__bands { grid-template-columns: 1fr; gap: var(--xl); margin-top: var(--4xl); }
  .roadmap__band { margin-left: var(--3xl); }
  .capabilities { grid-template-columns: 1fr; }
  .cap { padding: clamp(24px, 6vw, 32px); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: clamp(24px, 6vw, 32px); }
  .venture-grid { grid-template-columns: 1fr; }
  .venture--wide { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; text-align: center; }
}
