/* ============================================================
   Ready Cargo Packer — industrial / formal theme derived from the logo
   Palette: teal-green primary, muted reds/oranges as accents,
   near-white / light-gray neutrals, condensed formal type.
   ============================================================ */

:root {
  --c-primary: #126e5d;
  --c-primary-light: #43aa8b;
  --c-primary-pale: #addfd0;
  --c-accent-red: #f94144;
  --c-accent-red-dark: #790406;
  --c-accent-orange: #f8961e;
  --c-accent-yellow: #fbdd84;

  --c-ink: #24302c;
  --c-ink-soft: #5b6864;
  --c-line: #dde3e0;
  --c-bg: #fbfcfb;
  --c-bg-alt: #f2f4f3;
  --c-white: #ffffff;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(18, 110, 93, 0.08), 0 6px 18px rgba(18, 110, 93, 0.06);
  /* tight, low shadow that grounds framed screenshots without making them float */
  --shadow-contact: 0 1px 1px rgba(18, 110, 93, 0.08), 0 10px 16px -10px rgba(18, 110, 93, 0.35);

  /* App-shell metrics: no fixed max-width container — the shell fills the
     viewport and only the horizontal breathing room scales with it. */
  --shell-pad: clamp(24px, 4vw, 72px);
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 110, 93, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 110, 93, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

h1 { font-size: 2.6rem; line-height: 1.12; letter-spacing: 0.005em; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--c-ink-soft); }

a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-light); }

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--shell-pad);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  border-left: 3px solid var(--c-accent-orange);
  padding-left: 10px;
  margin-bottom: 14px;
}

.eyebrow-live { display: inline-flex; align-items: center; gap: 8px; }

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent-orange);
  flex: none;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--c-accent-orange);
  opacity: 0.5;
  animation: live-pulse 2.2s ease-out infinite;
}

@keyframes live-pulse {
  0% { transform: scale(0.6); opacity: 0.55; }
  100% { transform: scale(2.1); opacity: 0; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
  animation: reveal-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-delay-1 { animation-delay: 0.12s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up { animation: none; }
  .live-dot::after { animation: none; }
}

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 251, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle-input { display: none; }
.nav-toggle-btn { display: none; }
.main-nav a.nav-contact { display: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.brand:hover { color: var(--c-ink); }
.brand img { height: 48px; width: auto; display: block; }
.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"],
body[data-page="index"] .main-nav a[href="index.html"],
body[data-page="roadmap"] .main-nav a[href="roadmap.html"],
body[data-page="about"] .main-nav a[href="about.html"] {
  color: var(--c-primary);
  border-bottom-color: var(--c-accent-orange);
}

.nav-toggle-btn {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle-btn span {
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background: var(--c-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-primary-light); color: var(--c-white); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-small { padding: 8px 18px; font-size: 0.72rem; }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 32px);
  padding: 72px 0 42px;
  background:
    linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.90) 65%, rgba(255, 255, 255, 0.8) 100%);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 110, 93, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 110, 93, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 78%);
  pointer-events: none;
}

.hero .container.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(500px, 1.25fr);
  gap: clamp(32px, 5vw, 92px);
  align-items: center;
}

.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--c-primary); }
.hero-lede { font-size: 1.04rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--c-primary);
}
.hero-stats .stat span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  perspective: 1400px;
}
.hero-snapshot {
  position: relative;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  box-shadow: var(--shadow-contact);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-4deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.hero-visual:hover .hero-snapshot {
  transform: rotateX(0deg) rotateY(0deg);
  box-shadow: 0 1px 1px rgba(18, 110, 93, 0.08), 0 14px 20px -10px rgba(18, 110, 93, 0.4);
}
.hero-snapshot .visual-badge {
  position: absolute;
  top: 46px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-card);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  text-transform: uppercase;
  z-index: 2;
}
.hero-snapshot img {
  width: 100%;
  height: auto;
  object-fit: initial;
  display: block;
}

.showcase-media {
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  box-shadow: var(--shadow-contact);
  overflow: visible;
}
.hero-visual img, .showcase-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Window-chrome bar: reinforces the "native app" feel on screenshot frames */
.frame-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.frame-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-line);
}
.frame-bar span:nth-child(1) { background: var(--c-accent-red); }
.frame-bar span:nth-child(2) { background: var(--c-accent-orange); }
.frame-bar span:nth-child(3) { background: var(--c-primary-light); }

/* ---------------- Feature strip ---------------- */

.feature-strip {
  padding: 52px 0;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.section-intro {
  max-width: 50rem;
  margin-bottom: 30px;
}
.section-intro h2 { font-size: 2rem; margin-bottom: 12px; }
.section-intro p { max-width: 58ch; margin: 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-primary-light);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 170px;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.feature-card .ic {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--c-primary);
}
.feature-card .ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin: 0; line-height: 1.5; }

/* ---------------- Showcase rows ---------------- */

.showcase { padding: 62px 0; border-bottom: 1px solid var(--c-line); }
.showcase-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.25fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.showcase-row + .showcase-row { margin-top: 52px; }
.showcase-row.reverse { grid-template-columns: minmax(420px, 1.25fr) minmax(320px, 1fr); }
.showcase-row.reverse .showcase-media { order: 0; }
.showcase-row.reverse .showcase-copy { order: 1; }
.showcase-copy h2 { font-size: 1.85rem; }
.showcase-copy p { max-width: 42ch; }
.showcase-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  box-shadow: var(--shadow-contact);
}

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  background: var(--c-primary-pale);
  color: var(--c-primary);
}
.tag.red { background: #fde3e3; color: var(--c-accent-red-dark); }
.tag.orange { background: #fdeacb; color: #8a4f04; }

/* ---------------- Roadmap teaser & full roadmap ---------------- */

.roadmap-teaser { padding: 62px 0; background: var(--c-bg-alt); }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head h2 { margin: 0; }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.teaser-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px;
}
.teaser-card .status {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-orange);
  margin-bottom: 10px;
  display: block;
}
.teaser-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.teaser-card p { font-size: 0.88rem; margin: 0; }

/* Roadmap page proper */

.roadmap-page-head { padding: 64px 0 0; }

.roadmap-panel { padding: 44px 0 100px; min-height: 420px; }

.roadmap-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 22px;
}
.roadmap-column { min-width: 0; }
.roadmap-column-head { margin-bottom: 16px; }
.roadmap-column-head h2 { font-size: 1.05rem; margin: 0; }
.roadmap-column-head .badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
}

.roadmap-now {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.roadmap-now::before {
  content: "";
  flex: 1;
  width: 2px;
  background: var(--c-accent-orange);
}
.roadmap-now-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent-orange);
  background: var(--c-accent-yellow);
  border-radius: 999px;
  padding: 4px 10px;
  writing-mode: vertical-rl;
}

.roadmap-list { display: grid; gap: 10px; }
.roadmap-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.roadmap-item.shipped { border-left-color: var(--c-primary-light); }
.roadmap-item.next { border-left-color: var(--c-accent-orange); }
.roadmap-item.future { border-left-color: var(--c-line); }
.roadmap-item .mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-family: var(--font-head);
}
.roadmap-item.shipped .mark { background: var(--c-primary-pale); color: var(--c-primary); }
.roadmap-item.next .mark { background: var(--c-accent-yellow); color: #8a4f04; }
.roadmap-item.future .mark { background: var(--c-bg-alt); color: var(--c-ink-soft); border: 1px solid var(--c-line); }
.roadmap-item .label { font-size: 0.9rem; color: var(--c-ink); }
.roadmap-item .badge { display: none; }

.roadmap-note {
  margin-top: 26px;
  font-size: 0.86rem;
  color: var(--c-ink-soft);
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  padding: 44px 0;
  background: var(--c-primary);
  color: var(--c-white);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--c-white); margin: 0 0 6px; }
.cta-band p { color: var(--c-primary-pale); max-width: 48ch; margin: 0; }
.cta-band .btn-primary { background: var(--c-white); color: var(--c-primary); flex: none; }
.cta-band .btn-primary:hover { background: var(--c-accent-yellow); color: var(--c-ink); }

/* ---------------- Contact page ---------------- */

.contact-page { padding: 74px 0 110px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(380px, 640px) 1fr;
  gap: 60px;
  margin-top: 40px;
}
.contact-info .info-item { margin-bottom: 26px; }
.contact-info .info-item h3 { font-size: 0.85rem; letter-spacing: 0.06em; }
.contact-info .info-item p { font-size: 0.92rem; }

.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 34px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--c-ink);
  background: var(--c-bg);
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-primary-light);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-card .form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.contact-card .form-foot small { color: var(--c-ink-soft); font-size: 0.78rem; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--c-ink);
  color: #c9d2cf;
  padding: 48px 0 28px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 26px;
}
.site-footer .brand { color: #f2f0ec; }
.site-footer .brand .brand-sub { color: #8fa39c; }
/* force the b&w logo to render white against the dark footer */
.site-footer .brand img { filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9d2cf;
}
.footer-links a:hover { color: var(--c-accent-yellow); }
.footer-bottom {
  margin: 32px 0 0;
  padding: 20px var(--shell-pad) 0;
  border-top: 1px solid #3a463f;
  font-size: 0.78rem;
  color: #8fa39c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.made-in-france {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9d2cf;
}
.made-in-france img {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

/* ---------------- Responsive ---------------- */
/* Desktop is an unbounded app shell (no max-width container). Mobile drops
   the multi-column "app" chrome entirely and switches to a simple, single-
   column stacked layout tuned for touch and narrow screens. */

@media (max-width: 960px) {
  :root { --shell-pad: 20px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .roadmap-columns { grid-template-columns: 1fr; gap: 36px; }
  .roadmap-now { flex-direction: row; padding: 8px 0; }
  .roadmap-now::before { flex: 1; width: auto; height: 2px; }
  .roadmap-now-label { writing-mode: horizontal-tb; }
}

@media (max-width: 720px) {
  :root { --header-h: 60px; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }

  /* --- App bar collapses to a hamburger-driven drawer --- */
  .header-contact { display: none; }
  .nav-toggle-btn { display: flex; }
  .brand img { height: 38px; }
  .brand .brand-sub { display: none; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.2s ease, opacity 0.15s ease;
  }
  .nav-toggle-input:checked ~ .main-nav {
    max-height: 60vh;
    opacity: 1;
  }
  .main-nav a { padding: 16px var(--shell-pad); border-bottom: 1px solid var(--c-line); }
  .main-nav a.nav-contact { display: block; margin: 14px var(--shell-pad) 18px; text-align: center; border-bottom: none; }

  /* --- Everything below stacks as one simple column --- */
  /* Note: `.container.hero-grid` (3 classes) beats a plain `.hero .container`
     override (2 classes) regardless of media-query order, so this rule must
     match the same selector as the desktop grid to actually take effect. */
  .hero { padding: 40px 0 56px; min-height: auto; }
  .hero .container.hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-lede { max-width: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px 28px; margin-top: 32px; padding-top: 20px; }
  /* Tilt is a hover affordance for desktop pointers; stacked/touch layout shows it flat */
  .hero-snapshot { transform: none; }

  .feature-strip { padding: 40px 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }

  .showcase { padding: 56px 0; }
  .showcase-row, .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .showcase-row + .showcase-row { margin-top: 56px; }
  .showcase-row.reverse .showcase-media,
  .showcase-row.reverse .showcase-copy { order: initial; }

  .roadmap-teaser { padding: 56px 0; }
  .section-head { align-items: flex-start; }

  .cta-band .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band .btn { width: 100%; justify-content: center; }

  .contact-page { padding: 40px 0 64px; }
  .contact-card { padding: 22px; }
  .contact-card .form-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .contact-card .form-foot small { text-align: center; }

  .site-footer .container { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Phones in landscape: width can still fit copy + visual side by side,
   but there's little vertical room to spare, so don't stack (and don't
   force full-viewport height) the way the portrait breakpoint does. */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 24px 0; }
  .hero .container.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }
  .hero-lede { max-width: none; }
  .hero-stats { margin-top: 18px; padding-top: 14px; }
  .hero-actions { flex-direction: row; margin-top: 20px; }
  .hero-actions .btn { width: auto; }
  .hero-snapshot { transform: none; }
}

