/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #080808;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =====================
   CSS VARIABLES
===================== */
:root {
  --black:      #080808;
  --dark:       #0d0d0d;
  --dark-2:     #141414;
  --dark-3:     #1e1e1e;
  --gold:       #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dim:   rgba(201,169,110,0.12);
  --line:       rgba(255,255,255,0.07);
  --line-gold:  rgba(201,169,110,0.25);
  --white:      #ffffff;
  --g1:         #f0f0f0;
  --g2:         #cccccc;
  --g3:         #888888;
  --g4:         #444444;
  --pad:        130px;
  --wrap:       1240px;

  /* dot-grid for reuse */
  --dot-pattern: radial-gradient(circle, rgba(255,255,255,0.038) 1px, transparent 1px);
  --dot-size:    28px 28px;

  /* thin-line grid for reuse */
  --grid-pattern:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  --grid-size: 48px 48px;
}

/* =====================
   TYPOGRAPHY
===================== */
/* Display / headings — geometric, tight */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
/* Body — neutral, readable */
p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.85;
  color: var(--g2);
}
/* Mono — labels, numbers, data */
.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
}

/* =====================
   LAYOUT
===================== */
.wrap  { max-width: var(--wrap); margin: 0 auto; padding: 0 64px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

/* Eyebrow / section label */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}

/* Thin gold rule — sharp, not faded */
.gold-rule {
  width: 32px; height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* Horizontal separator */
.h-rule {
  width: 100%; height: 1px;
  background: var(--line);
  margin: 0;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border-radius: 3px;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-gold    { background: var(--gold); color: var(--black); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.btn-row.center { justify-content: center; }

/* =====================
   IMAGES
===================== */
.img-wrap {
  overflow: hidden;
  background: var(--dark-2);
  position: relative;
  border: 1px solid var(--line);
}
.img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .9s ease;
}
.img-wrap:hover img { transform: scale(1.04); }

/* =====================
   SCROLL ANIMATIONS
===================== */
.appear        { opacity: 0; transform: translateY(28px);  transition: opacity .8s ease, transform .8s ease; }
.appear-left   { opacity: 0; transform: translateX(-40px); transition: opacity .85s ease, transform .85s ease; }
.appear-right  { opacity: 0; transform: translateX(40px);  transition: opacity .85s ease, transform .85s ease; }
.appear-down   { opacity: 0; transform: translateY(-24px); transition: opacity .8s ease, transform .8s ease; }
.visible       { opacity: 1 !important; transform: none !important; }

/* =====================
   TOP ACCENT LINE
===================== */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 60%, transparent 100%);
  z-index: 300;
  opacity: .7;
}

/* =====================
   NAV
===================== */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 64px;
  transition: padding .35s, background .35s, border-color .35s;
}
#nav.stuck {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(24px);
  padding: 18px 64px;
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; text-decoration: none;
}
.nav-logo span { color: var(--gold); }

/* Small mono tag next to logo */
.nav-logo-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--g4); margin-left: 10px;
  vertical-align: middle;
}

.nav-links { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: 10px 20px;
  color: var(--g2);
  transition: background .25s, color .25s;
}
.nav-links .nb { color: var(--gold); border: 1px solid var(--gold); }
.nav-links .nb:hover { background: var(--gold); color: var(--black); }
.nav-links .na { background: var(--gold); color: var(--black); border: 1px solid var(--gold); }
.nav-links .na:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* =====================
   HERO — CSS-only, no image
===================== */
#hero {
  position: relative; height: 100vh; min-height: 720px;
  display: flex; align-items: center; overflow: hidden;
}

/* Base: near-black */
.hero-bg {
  position: absolute; inset: 0;
  background: var(--black);
}

/* Dot grid layer */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--dot-pattern);
  background-size: var(--dot-size);
}

/* Gold atmosphere + vignette */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 4% 78%, rgba(201,169,110,.16) 0%, transparent 50%),
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(201,169,110,.10) 0%, transparent 48%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,169,110,.04) 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(0,0,0,.75) 100%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; }

/* Thin left-edge accent */
.hero-inner::before {
  content: '';
  position: absolute; left: 64px; top: -40px; bottom: -40px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
  pointer-events: none;
}

.hero-content { padding-left: 88px; }

.hero-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: riseUp .9s ease .3s forwards;
}
.hero-kicker::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 300; line-height: .96;
  letter-spacing: -0.04em;
  color: #fff; margin-bottom: 36px;
  opacity: 0; animation: riseUp .9s ease .5s forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  max-width: 540px; font-size: 17px; line-height: 1.7;
  font-weight: 300; color: var(--g2); margin-bottom: 16px;
  opacity: 0; animation: riseUp .9s ease .7s forwards;
}
.hero-body {
  max-width: 520px; font-size: 14px; line-height: 1.85;
  color: var(--g3); margin-bottom: 52px;
  opacity: 0; animation: riseUp .9s ease .9s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: riseUp .9s ease 1.1s forwards;
}

/* Bottom data strip */
.hero-data {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  opacity: 0; animation: riseUp .9s ease 1.4s forwards;
}
.hero-data-wide .hd-value { font-size: 10px; line-height: 1.6; max-width: 400px; }
.hero-data-item {
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.hero-data-item:last-child { border-right: none; }
.hd-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--g4);
}
.hd-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: .08em;
  color: var(--gold);
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================
   SECTION BASE
===================== */
section { padding: var(--pad) 0; position: relative; }
section.bg-dark   { background: var(--dark); }
section.bg-darker { background: var(--black); }

/* Dot-grid texture overlay on selected sections */
section.textured::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--dot-pattern);
  background-size: var(--dot-size);
  opacity: 1;
}

/* Grid-line texture overlay on selected sections */
section.gridded::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grid-pattern);
  background-size: var(--grid-size);
}

/* =====================
   S1 — THE GAP
===================== */
#gap { border-top: 1px solid var(--line); }
#gap .text-pad { padding-right: 40px; }
#gap h2 { font-size: clamp(36px, 4.5vw, 58px); color: #fff; margin-bottom: 28px; }
#gap p  { font-size: 15px; margin-bottom: 16px; }
#gap p strong { color: #fff; font-weight: 400; }

/* =====================
   S2 — NEW LAYER OF SUPPORT
===================== */
#support { border-top: 1px solid var(--line); }
#support .text-pad { padding-left: 40px; }
#support h2 { font-size: clamp(36px, 4.5vw, 58px); color: #fff; margin-bottom: 28px; }
#support p  { font-size: 15px; margin-bottom: 20px; }
#support p strong { color: var(--gold); font-weight: 400; }

/* =====================
   S3 — HYBRID CURATION
===================== */
#curation { border-top: 1px solid var(--line); }
.curation-intro {
  text-align: center; max-width: 760px; margin: 0 auto 80px;
  position: relative; z-index: 1;
}
.curation-intro .gold-rule { margin: 0 auto 28px; }
#curation h2 { font-size: clamp(36px, 4.5vw, 58px); color: #fff; margin-bottom: 24px; }
.curation-intro p { font-size: 15px; }
#curation p strong { color: #fff; font-weight: 500; }

/* Feature grid — fully bordered, sharp */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  position: relative; z-index: 1;
}
.feat {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-top: 2px solid transparent;
  background: linear-gradient(160deg, #0e0e0e 0%, #141414 100%);
  transition: background .35s, border-top-color .35s, transform .3s;
  cursor: default;
  will-change: transform;
  text-align: center;
}
.feat:last-child { border-right: none; }
.feat:hover {
  background: linear-gradient(160deg, #141414 0%, #1c1c1c 100%);
  border-top-color: var(--gold);
  transform: translateY(-2px);
}

.feat-icon {
  color: var(--g4); margin-bottom: 32px;
  transition: color .3s;
  display: flex; justify-content: center;
}
.feat:hover .feat-icon { color: var(--gold); }
.feat.active { background: linear-gradient(160deg, #141414 0%, #1c1c1c 100%); border-top-color: var(--gold); }
.feat.active .feat-icon { color: var(--gold); }

.feat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff; margin-bottom: 14px; line-height: 1.25;
}
.feat p { font-size: 13px; line-height: 1.75; color: var(--g3); }
.feat:hover p { color: var(--g2); }

/* =====================
   S4 — FULLY MANAGED
===================== */
#managed { border-top: 1px solid var(--line); }
#managed .text-pad { padding-right: 40px; }
#managed h2 { font-size: clamp(36px, 4.5vw, 58px); color: #fff; margin-bottom: 28px; }
#managed p  { font-size: 15px; margin-bottom: 20px; }

.managed-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 580px;
}
.managed-photo {
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--line);
  position: relative;
}
.managed-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .9s ease;
}
.managed-photo:hover img { transform: scale(1.05); }
.managed-photo[data-credit]::after {
  content: attr(data-credit);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px; letter-spacing: .1em;
  color: rgba(255,255,255,0.55);
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.managed-photo[data-credit]:hover::after { opacity: 1; }
.managed-photo-label {
  position: absolute; bottom: 12px; left: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
/* Placeholder state — shown when no image is set */
.managed-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.managed-photo.placeholder::before {
  content: '+';
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px; color: var(--g4);
}

/* =====================
   S5 — EARLY ACCESS
===================== */
#access { border-top: 1px solid var(--line); overflow: hidden; }

/* Full-section community photo */
.access-photo {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.access-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(20%) saturate(1.2);
}
.access-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(13,13,13,1) 0%, rgba(13,13,13,.85) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(13,13,13,.65) 0%, rgba(13,13,13,.35) 45%, rgba(13,13,13,.72) 100%);
}

/* Gold glow over grid */
#access::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%,  rgba(201,169,110,.13) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,169,110,.07) 0%, transparent 50%);
  z-index: 1;
}

.access-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px; margin: 0 auto;
}

#access h2 { font-size: clamp(40px, 5.5vw, 76px); color: #fff; margin-bottom: 14px; }
#access h2 em { font-style: normal; color: var(--gold-light); }

.ea-divider {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 40px auto;
  opacity: .5;
}

/* Two proposition statements */
.ea-props {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  margin: 64px 0 0; text-align: left;
}
.ea-prop { padding: 52px 60px; }
.ea-prop:first-child { padding-left: 0; }
.ea-prop:last-child  { padding-right: 0; }
.ea-prop-rule {
  background: var(--line-gold); margin: 48px 0;
}
.ea-prop h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.2vw, 32px); font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff; margin-bottom: 20px; line-height: 1.15;
}
.ea-prop p { font-size: 14px; line-height: 1.8; }

/* Separator between propositions and sign-up */
.ea-sep {
  display: flex; align-items: center; gap: 20px;
  margin: 72px 0 56px;
}
.ea-sep::before, .ea-sep::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.ea-sep-mark {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

/* Sign-up sub-section */
.ea-join { text-align: center; }

.ea-body {
  font-size: 16px; line-height: 1.85;
  color: var(--g2); max-width: 560px; margin: 0 auto 44px;
}

/* =====================
   S6 — ONE ECOSYSTEM
===================== */
#ecosystem { border-top: 1px solid var(--line); }
.eco-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.eco-inner .gold-rule { margin: 0 auto 28px; }
#ecosystem h2 { font-size: clamp(40px, 5.5vw, 76px); color: #fff; margin-bottom: 32px; }
#ecosystem p  { font-size: 17px; line-height: 1.85; margin-bottom: 48px; }

/* =====================
   FOOTER
===================== */
footer {
  background: #050505;
  border-top: 1px solid var(--line-gold);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.footer-grid > div:first-child { align-self: start; }
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; text-decoration: none; display: block; margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-blurb { font-size: 13px; line-height: 1.75; color: var(--g4); max-width: 280px; }

.foot-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 12px; }
.foot-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 300;
  color: var(--g4); text-decoration: none;
  transition: color .25s;
}
.foot-col ul li a:hover { color: var(--gold); }

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.foot-legal {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .08em; color: var(--g4);
}
.foot-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: .06em;
  color: var(--g4); flex: 1; text-align: center;
  font-style: italic;
}
.photo-credits {
  border-top: 1px solid var(--line);
  padding-top: 20px; margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 16px;
}
.photo-credits span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: .08em;
  color: var(--g4);
}
.photo-credits a {
  color: var(--g4); text-decoration: none;
  transition: color .25s;
}
.photo-credits a:hover { color: var(--gold); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1080px) {
  .features { grid-template-columns: 1fr 1fr; }
  .feat { border-bottom: 1px solid var(--line); }
  .ea-cards  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================
   HAMBURGER / MOBILE MENU
===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 17px;
  background: none; border: none;
  cursor: pointer; padding: 0; z-index: 201;
}
.hamburger span {
  display: block;
  width: 100%; height: 1px;
  background: var(--g2);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(24px);
  padding: 90px 28px 40px;
  flex-direction: column;
  z-index: 199;
  border-bottom: 1px solid var(--line);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--g2);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
#mobile-menu a:last-child { border-bottom: none; }
#mobile-menu a:hover { color: #fff; }
#mobile-menu .m-na {
  margin-top: 28px;
  background: var(--gold); color: var(--black);
  padding: 14px 20px; text-align: center;
  border: none; border-bottom: none !important;
}
#mobile-menu .m-na:hover { background: var(--gold-light); color: var(--black); }

@media (max-width: 768px) {
  :root { --pad: 80px; }
  .wrap { padding: 0 28px; }
  #nav, #nav.stuck { padding: 18px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner::before { left: 28px; }
  .hero-content { padding-left: 44px; }
  .hero-h1 { font-size: clamp(48px, 13vw, 72px); }
  #hero { height: auto; min-height: 100vh; flex-direction: column; justify-content: space-between; padding-top: 120px; }
  .hero-inner { flex: 1; display: flex; align-items: center; padding-bottom: 60px; }
  .hero-data { position: static; grid-template-columns: 1fr; }
  .hero-data-item { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-data-item:last-child { border-bottom: none; }

  .grid2 { grid-template-columns: 1fr; gap: 48px; }
  #gap .text-pad, #support .text-pad, #managed .text-pad { padding: 0; }
  .img-wrap { height: 320px !important; }
  #support .grid2 .img-wrap { order: 2; }

  .features  { grid-template-columns: 1fr; }
  .ea-cards  { grid-template-columns: 1fr; }
  .ea-card   { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }

  .btn-row { flex-direction: column; align-items: flex-start; }
  .btn-row.center { align-items: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-base { flex-direction: column; text-align: center; }
  .ea-props { grid-template-columns: 1fr; margin: 40px 0 0; }
  .ea-prop { padding: 36px 0; }
  .ea-prop:first-child { padding-left: 0; padding-top: 0; }
  .ea-prop-rule { display: none; }
}
