/* Axedrop mockups — Direction A polish · drafts for approval, not live
   Brand: Syncopate + Space Grotesk · #0303AB · #8B867C · black · white */

:root {
  --blue: #0303AB;
  --blue-hover: #02027A;
  --grey: #8B867C;
  --grey-dark: #5C5850;
  --ink: #111111;
  --paper: #FFFFFF;
  --paper-warm: #F4F1EA;
  --line: rgba(17, 17, 17, 0.10);
  --shadow: 0 14px 40px rgba(17, 17, 17, 0.10);
  --radius: 2px;
  --max: 1280px;
  --pad: clamp(1.15rem, 2.6vw, 2.25rem);
  --font-display: "Syncopate", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.draft-banner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  font-weight: 700;
}
.draft-banner span { opacity: 0.55; margin: 0 0.45rem; }

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

/* ——— Type ——— */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.12;
  margin: 0;
}
.h1 { font-size: clamp(1.75rem, 3.8vw, 3.1rem); }
.h2 { font-size: clamp(1.25rem, 2.3vw, 1.85rem); }
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin: 0 0 0.65rem;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin: 0 0 0.65rem;
}
.lede { font-size: 1.05rem; max-width: 36rem; color: #2a2a2a; line-height: 1.5; }
.muted { color: var(--grey-dark); }
.small { font-size: 0.88rem; }

/* ——— Buttons — calmer premium ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}
.btn:active { opacity: 0.92; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17,17,17,0.35);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(17,17,17,0.04); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-dark:hover { background: var(--paper-warm); }
.btn-block { width: 100%; }
.btn-sm { min-height: 2.35rem; padding: 0.55rem 1.05rem; font-size: 0.58rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 64px;
  padding-block: 0.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.15s ease;
}
.nav-links a:hover,
.nav-links a.is-active { opacity: 1; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.socials { display: flex; gap: 0.4rem; }
.social {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--grey-dark);
  transition: border-color 0.15s, color 0.15s;
}
.social:hover { border-color: var(--ink); color: var(--ink); }
.nav-cta { display: none; }
@media (min-width: 900px) {
  .nav-cta { display: inline-flex; }
}
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
}

/* Mobile shell */
body.is-mobile .burger { display: inline-flex; }
body.is-mobile .nav-links,
body.is-mobile .nav-cta { display: none; }
body.is-mobile .socials { display: flex; }
body.is-mobile .site-header { position: sticky; top: 0; }

body.is-mobile .mobile-drawer { display: none; }
body.is-mobile.nav-open .mobile-drawer {
  display: block;
  border-top: 1px solid var(--line);
  padding: 0.85rem var(--pad) 1.1rem;
  background: #fff;
}
body.is-mobile .mobile-drawer a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
body.is-desktop .mobile-drawer { display: none; }

@media (max-width: 899px) {
  .burger { display: inline-flex !important; }
  .nav-links,
  .nav-cta,
  .socials { display: none !important; }
  .mobile-drawer { display: none; }
  body.nav-open .mobile-drawer {
    display: block;
    border-top: 1px solid var(--line);
    padding: 0.85rem var(--pad) 1.1rem;
    background: #fff;
  }
  .mobile-drawer a {
    display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--line);
    font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 700;
  }
  .mobile-drawer .drawer-socials {
    display: flex; gap: 0.5rem; padding-top: 0.85rem; flex-wrap: wrap;
  }
  .mobile-drawer .drawer-socials a {
    display: grid; place-items: center; width: 40px; height: 40px; padding: 0;
    border: 1px solid var(--line); border-radius: 50%; border-bottom: 1px solid var(--line);
    letter-spacing: 0; font-size: 0.7rem;
  }
  .site-header { overflow-x: clip; }
  body { overflow-x: clip; }
}

/* ——— Hero — stronger above-fold VP ——— */
.hero {
  position: relative;
  min-height: clamp(480px, 72vh, 680px);
  color: #fff;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 42%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}
.hero-copy { max-width: 34rem; }
.hero .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 0.55rem; }
.hero .h1 { color: #fff; margin-bottom: 0.75rem; }
.hero .lede { color: rgba(255,255,255,0.88); margin-bottom: 1.35rem; }
.hero-note {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  max-width: 26rem;
  line-height: 1.45;
}

/* Compact hero for B (parked) */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(560px, 72vh, 700px);
  background: var(--paper-warm);
}
.hero-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}
.hero-split-media {
  position: relative;
  min-height: 420px;
  background: #111;
}
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
@media (max-width: 899px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 360px; order: -1; }
}

/* ——— Sections — tighter ——— */
.section { padding: clamp(2.75rem, 5.5vw, 4.75rem) 0; }
.section-tight { padding: clamp(1.75rem, 3.5vw, 2.75rem) 0; }
.section-grey { background: var(--grey); color: #fff; }
.section-ink { background: var(--ink); color: #fff; }
.section-warm { background: var(--paper-warm); }
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.quote-band {
  text-align: center;
  padding: clamp(2.75rem, 6vw, 4.25rem) var(--pad);
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 44rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.4;
}
.quote-band cite {
  display: block;
  margin-top: 1.1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
  align-items: center;
}
@media (max-width: 899px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: #ddd;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.media-frame.landscape img { aspect-ratio: 16 / 10; }
.media-frame.square img { aspect-ratio: 1 / 1; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(3,3,171,0.08);
  color: var(--blue);
  border: 1px solid rgba(3,3,171,0.16);
}
.pill-coming {
  background: rgba(139,134,124,0.16);
  color: var(--grey-dark);
  border-color: rgba(92,88,80,0.22);
}
.pill-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

/* Interest panel */
.interest-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-shadow: var(--shadow);
}
.interest-panel .h3 { margin-bottom: 0.3rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin-top: 1rem;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.field {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  outline: none;
}
.field:focus { border-color: var(--blue); }
.form-note {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--grey-dark);
}

/* Cards — coming / notify (no buy) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 899px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); }
.card-media {
  aspect-ratio: 5 / 4;
  background: #e8e4dc;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-media .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}
.card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey-dark);
  flex: 1;
}
.price-teaser {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.price-teaser em {
  font-style: normal;
  color: var(--grey-dark);
  font-weight: 400;
}

/* Soft runway teaser */
.runway {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem 1.35rem;
  border: 1px dashed rgba(17,17,17,0.18);
  background: rgba(255,255,255,0.6);
}
.runway-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.15;
  font-weight: 700;
}
@media (max-width: 640px) {
  .runway { grid-template-columns: 1fr; }
}

/* Drop coming soon */
.drop-hero {
  padding: clamp(3.25rem, 7vw, 5.25rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(3,3,171,0.1), transparent 55%),
    var(--paper-warm);
}
.drop-hero .h1 { margin-bottom: 0.75rem; }
.drop-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.drop-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grey);
  display: inline-block;
}
.drop-panel {
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: left;
}
.rules {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}
.rule {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.rule:last-child { border-bottom: 1px solid var(--line); }
.rule-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
  padding-top: 0.1rem;
}

/* Story page */
.story-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 500px;
  background: #111;
  color: #fff;
}
.story-hero-media { position: relative; min-height: 380px; }
.story-hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.story-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3.25rem);
}
@media (max-width: 899px) {
  .story-hero { grid-template-columns: 1fr; }
  .story-hero-media { min-height: 340px; order: -1; }
}
.prose { max-width: 38rem; }
.prose p { margin: 0 0 0.95rem; color: #333; }
.prose p:last-child { margin-bottom: 0; }

/* Timeline soft */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
@media (max-width: 799px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 1.15rem 1.15rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.step p { margin: 0; color: var(--grey-dark); font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: var(--grey);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(30deg, transparent 40%, #fff 41%, #fff 42%, transparent 43%),
    linear-gradient(-30deg, transparent 40%, #fff 41%, #fff 42%, transparent 43%);
  background-size: 48px 28px;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 1.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 799px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.85rem;
}
.footer-brand p {
  margin: 0;
  max-width: 22rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  opacity: 0.7;
}
.footer-col a {
  display: block;
  margin-bottom: 0.45rem;
  opacity: 0.9;
  font-size: 0.92rem;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 0.9rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* Mobile frame helper for A-home-mobile (~390 usable) */
body.is-mobile {
  max-width: 390px;
  margin: 0 auto;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-shadow: 0 0 0 10px #f0eee8, var(--shadow);
  min-height: 100vh;
}
body.is-mobile .wrap { width: calc(100% - 1.75rem); }
body.is-mobile .hero { min-height: 520px; }
body.is-mobile .hero-inner { align-items: flex-end; padding-bottom: 2rem; }
body.is-mobile .hero-scrim {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.5) 48%, rgba(0,0,0,0.82) 100%);
}
body.is-mobile .logo img { height: 32px; }
body.is-mobile .card-grid { grid-template-columns: 1fr; }
body.is-mobile .footer-inner { grid-template-columns: 1fr; }
body.is-mobile .nav-bar { min-height: 56px; }
body.is-mobile .section { padding: 2.25rem 0; }
body.is-mobile .section-tight { padding: 1.5rem 0; }
body.is-mobile .h1 { font-size: 1.55rem; }
body.is-mobile .lede { font-size: 0.98rem; }

/* Desktop preview lock */
body.is-desktop .wrap { width: min(100% - 2.75rem, 1320px); }

.spacer-sm { height: 0.6rem; }
.spacer-md { height: 1.25rem; }

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.65rem; }
.mt-2 { margin-top: 1.1rem; }
.mt-3 { margin-top: 1.75rem; }

/* Home hero: keep the axe shape, lift it out of the dark overlay */
.hero-home .hero-media img {
  filter: contrast(1.14) saturate(1.08) brightness(1.08);
}
.hero-home .hero-scrim {
  background: linear-gradient(102deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.32) 32%, rgba(0,0,0,0.05) 56%, transparent 74%);
}
body.is-mobile .hero-home .hero-scrim {
  background: linear-gradient(180deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.2) 36%, rgba(0,0,0,0.02) 58%, transparent 76%);
}

/* Hide Netlify free-tier badge overlay on mobile/desktop */
#netlify-badge,
a[href*="netlify.com"][style*="position: fixed"],
.netlify-badge { display: none !important; }
