/* ===== Tokens ===== */
:root {
  --bg: #f4efe6;              /* off-white / warm cream */
  --bg-2: #ebe4d6;
  --ink: #0b0b0b;             /* near-black */
  --ink-2: #1c1a17;
  --muted: #6b6157;
  --card-dark: #0b0b0b;
  --card-dark-2: #17140f;
  --lime: #e9863a;            /* warm orange (kept var name to avoid mass rename) */
  --lime-2: #d8712a;          /* deeper orange for hover */
  --lime-soft: #f2b47a;       /* soft peach tint */
  --blue-1: #1c1a17;          /* reused as deep warm neutral */
  --blue-2: #2a2620;
  --violet: #8a4a1e;          /* burnt-sienna for gradient warmth */

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow-lift: 0 30px 60px -30px rgba(11, 11, 11, 0.35);

  --font-display: "Bebas Neue", "Impact", "Anton", sans-serif;
  --font-body: "Satoshi", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-heavy: "Satoshi", "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Type scale */
  --type-lead:   clamp(44px, 6vw, 88px);  /* Bebas Neue — the ONE big section headline */
  --type-lead-sm:clamp(36px, 4.4vw, 60px);/* Bebas Neue — smaller sections */
  --type-hero-h1:clamp(30px, 3.4vw, 46px);/* Hero H1 in Satoshi semibold */
  --type-h2:     clamp(22px, 2vw, 28px);
  --type-h3:     18px;
  --type-body:   15px;
  --type-small:  13px;
  --type-micro:  11px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.dim {
  color: rgba(255, 255, 255, 0.35);
}

.mission .dim {
  color: rgba(11, 11, 11, 0.28);
}

/* ===== Nav ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 16px 0 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  background: rgba(244, 239, 230, 0.78);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(11, 11, 11, 0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heavy);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand em {
  color: var(--lime);
  font-style: normal;
}
.brand--light {
  color: #fff;
}
.brand--light em {
  color: var(--lime);
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--pill {
  background: #fff;
  color: var(--ink);
}
.btn--pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.25);
}
.btn--lime {
  background: var(--lime);
  color: var(--ink);
}
.btn--lime:hover {
  background: var(--lime-2);
  transform: translateY(-1px);
}
.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}
.btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink);
  display: inline-block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

/* ===== Hero ===== */
.hero {
  padding-top: 24px;
}
.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
#0b0b0b;
  color: #fff;
  padding: clamp(24px, 3.5vw, 44px);
  min-height: 640px;
  box-shadow: var(--shadow-lift);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 380px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-top: 30px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 6.7vw, 98px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  max-width: 15ch;
}
.hero-sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 42ch;
}
.hero-portrait {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 6px rgba(233, 134, 58, 0.14);
}
.hero-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: brightness(1) contrast(1.02) saturate(1);
  opacity: 1;
}
.portrait-fade {
  position: absolute;
  inset: 0;
  background:
linear-gradient(180deg, transparent 60%, rgba(11, 11, 11, 0.35) 100%);
  pointer-events: none;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(120px, 22vw, 340px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin: 24px 0 0;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
  color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  text-align: center;
  user-select: none;
}

/* ===== Mission ===== */
.mission {
  padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 32px);
}
.mission-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-lead);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
}
.mission-heading .dim {
  color: rgba(11, 11, 11, 0.32);
}
.mission-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: rgba(11, 11, 11, 0.55);
  max-width: 46ch;
  margin: 20px 0 0;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.stat {
  position: relative;
  border-radius: var(--radius);
  padding: 22px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(4px);
}
.stat-num {
  text-align: right;
  font-family: var(--font-heavy);
  color: #fff;
  line-height: 1;
}
.stat-num span {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
}
.stat-num em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-top: 2px;
}
.stat-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--type-h3);
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0 0 8px;
}
.stat-body p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.75;
}

.stat--gradient {
  color: #0b0b0b;
  background: var(--lime);
}
.stat--dark {
  color: #fff;
  background:
#0b0b0b;
}
.stat--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 12px
    );
  pointer-events: none;
}
.stat--lime {
  color: var(--ink);
  background: var(--lime);
}
.stat--lime .stat-num,
.stat--lime .stat-body h3,
.stat--lime .stat-body p {
  color: var(--ink);
}
.stat--lime .stat-body p {
  opacity: 0.72;
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.7;
  text-transform: uppercase;
}
.stat-num--big {
  font-size: 56px !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: right;
}

/* ===== About / Mission Split ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.about-portrait {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  background: #0b0b0b;
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 6px rgba(233, 134, 58, 0.14);
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: brightness(0.95) contrast(1.03) saturate(1);
}
.about-portrait figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cap-name {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cap-role {
  float: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}
.about-portrait figcaption p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 12px 0 12px;
  line-height: 1.5;
}
.cap-badges {
  display: flex;
  gap: 8px;
}
.cap-badges span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.about-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}
.about-card {
  border-radius: var(--radius);
  padding: 26px;
}
.about-card--dark {
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.about-card--dark .eyebrow {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
  display: block;
}
.about-card--dark p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.about-card--lime {
  background: var(--lime);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 240px;
}
.big-num {
  border-bottom: 1px solid rgba(11, 11, 11, 0.15);
  padding-bottom: 18px;
}
.big-num span {
  display: block;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.big-num em,
.lime-split em {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(11, 11, 11, 0.65);
  display: block;
  margin-top: 6px;
}
.lime-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lime-split span {
  display: block;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ===== Testimonials ===== */
.testimonials {
  padding-bottom: clamp(60px, 8vw, 100px);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 32px;
  row-gap: 6px;
  margin-bottom: 28px;
}
.section-head .eyebrow {
  grid-column: 1 / 2;
}
.section-head h2 {
  grid-column: 1 / 2;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-lead);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.section-head h2 .dim {
  color: rgba(11, 11, 11, 0.28);
}
.section-head p {
  grid-column: 2 / 3;
  font-size: 14px;
  color: rgba(11, 11, 11, 0.6);
  margin: 0;
  max-width: 44ch;
  justify-self: end;
}

.quote-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-dark);
  color: #fff;
  min-height: 320px;
}
.quote-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.quote-body blockquote {
  padding-right: 170px;
}
.stars {
  color: var(--lime);
  letter-spacing: 3px;
  font-size: 14px;
}
.quote-score {
  position: absolute;
  right: 30px;
  top: 26px;
  text-align: right;
  color: var(--lime);
  font-family: var(--font-heavy);
}
.quote-score span {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.quote-score em {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  opacity: 0.75;
}
.quote-score-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  text-transform: none;
  color: #fff;
}
blockquote span {
  color: var(--lime);
  margin-right: 4px;
}
.quote-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.quote-foot strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.quote-foot span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.quote-nav {
  display: flex;
  gap: 10px;
}
.round-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.round-btn:hover {
  transform: translateY(-1px);
}
.round-btn--lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.quote-portrait {
  position: relative;
  background:
var(--lime);
}
.quote-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: brightness(0.95) contrast(1.02) saturate(1);
  opacity: 1;
}

/* ===== CTA ===== */
.cta {
  padding-bottom: 40px;
}
.cta-card {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  color: #fff;
  overflow: hidden;
  background:
#0b0b0b;
}
.cta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-heading {
  margin: 40px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-lead);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  max-width: 18ch;
}
.cta-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(100px, 22vw, 340px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin: 28px 0 30px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.12);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-brand p {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  max-width: 32ch;
  line-height: 1.55;
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.02em;
  transition: transform 0.2s;
}
.socials a:hover {
  transform: translateY(-1px);
}
.foot-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
  padding: 4px 0;
  transition: opacity 0.15s;
}
.foot-col a:hover {
  opacity: 1;
  color: var(--lime);
}
.foot-col--wide p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0 0 12px;
}
.news {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 16px;
}
.news input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  padding: 8px 0;
  outline: none;
  min-width: 0;
}
.news input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.news button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s;
}
.news button:hover {
  transform: translateY(-1px);
}

.legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  flex-wrap: wrap;
}
.legal-links {
  display: flex;
  gap: 22px;
}

/* ===== Hero extras ===== */
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn--dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn--dark:hover {
  background: rgba(255, 255, 255, 0.14);
}
.btn--dark-solid {
  background: var(--ink);
  color: #fff;
}
.btn--dark-solid:hover {
  background: #000;
  transform: translateY(-1px);
}
.trust {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.trust li {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.trust strong {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ===== Marquee ===== */
.marquee-wrap {
  padding: 40px 0 20px;
}
.marquee-head {
  margin-bottom: 18px;
}
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(11, 11, 11, 0.1);
  border-bottom: 1px solid rgba(11, 11, 11, 0.1);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.marquee-track .sep {
  color: var(--lime);
  font-size: 0.75em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Steps ===== */
.how {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.step {
  border-radius: var(--radius);
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  opacity: 0.9;
}
.step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--type-h3);
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0;
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.75;
}
.step--dark {
  background: #0b0b0b;
  color: #fff;
}
.step--dark .step-num { color: var(--lime); }
.step--lime {
  background: var(--lime);
  color: var(--ink);
}
.step--lime .step-num { color: rgba(11, 11, 11, 0.85); }
.step--gradient {
  color: #0b0b0b;
  background: var(--lime);
}
.step--gradient .step-num { color: rgba(11, 11, 11, 0.55); }

/* ===== Work / Projects ===== */
.work {
  padding-bottom: clamp(60px, 8vw, 100px);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  background: #ffffff;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 11, 11, 0.08);
}
.work-cover {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
}
.work-cover--sand  { background: #e6ddcb; }
.work-cover--lime  { background: var(--lime); }
.work-cover--stone { background: #d9d2c4; }
.work-cover--paper { background: #ede6d6; }
.work-cover--clay  { background: #c68b5e; }
.work-cover--linen { background: #e4dccb; }
.work-num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(11, 11, 11, 0.55);
  text-transform: uppercase;
}
.work-cover--lime .work-num,
.work-cover--clay .work-num {
  color: rgba(11, 11, 11, 0.7);
}
.work-meta {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-2);
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(233, 134, 58, 0.1);
  border-radius: 999px;
}
.work-meta h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 4px 0 0;
  text-transform: none;
}
.work-meta p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11, 11, 11, 0.6);
  margin: 0;
}
@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ===== Plans ===== */
.plans {
  padding-bottom: clamp(60px, 8vw, 100px);
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.plan {
  position: relative;
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 620px;
  overflow: hidden;
}
.plan--dark {
  background: #0b0b0b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.plan--lime {
  background: var(--lime);
  color: var(--ink);
}
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 7px 12px;
  border-radius: 999px;
}
.plan-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}
.plan-tag--dark {
  background: var(--ink);
  color: var(--lime);
  border-color: transparent;
}
.plan-head h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0 0 12px;
}
.plan-head p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  opacity: 0.75;
  max-width: 40ch;
}
.plan--lime .plan-head p {
  opacity: 0.7;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}
.plan-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(233, 134, 58, 0.16);
  border: 1px solid rgba(233, 134, 58, 0.5);
}
.plan-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg);
}
.plan--lime .plan-list li::before {
  background: rgba(11, 11, 11, 0.08);
  border-color: rgba(11, 11, 11, 0.3);
}
.plan--lime .plan-list li::after {
  border-left-color: var(--ink);
  border-bottom-color: var(--ink);
}
.plan-list .tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 999px;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  vertical-align: middle;
}
.plan--dark .plan-list .tag {
  background: var(--lime);
  color: var(--ink);
}
.plan-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.plan--lime .plan-foot {
  border-top-color: rgba(11, 11, 11, 0.12);
}
.plan-price em {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}
.plan-price span {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.scarcity {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 26px 0 0;
  font-size: 13px;
  color: rgba(11, 11, 11, 0.6);
}
.scarcity-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime-2);
  box-shadow: 0 0 0 4px rgba(216, 113, 42, 0.18);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 113, 42, 0.35); }
  100% { box-shadow: 0 0 0 8px rgba(216, 113, 42, 0); }
}

/* ===== Chip grid (what we handle) ===== */
.handle {
  padding-bottom: clamp(60px, 8vw, 100px);
}
.chip-marquee {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.chip-row {
  display: flex;
  width: max-content;
  gap: 10px;
}
.chip-row--a { animation: chipScrollA 45s linear infinite; }
.chip-row--b { animation: chipScrollB 55s linear infinite; }
.chip-marquee:hover .chip-row { animation-play-state: paused; }
.chip-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  padding-right: 10px;
}
.chip-track li {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.chip-track li:nth-child(3n) {
  background: var(--ink);
  color: var(--lime);
  border-color: transparent;
}
.chip-track li:nth-child(5n) {
  background: var(--lime);
  color: var(--ink);
  border-color: transparent;
}
@keyframes chipScrollA {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes chipScrollB {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .chip-row--a, .chip-row--b { animation: none; }
  .chip-marquee { mask-image: none; -webkit-mask-image: none; }
  .chip-row { flex-wrap: wrap; }
}

/* ===== Audience ===== */
.audience {
  padding-bottom: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.aud-copy .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.aud-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-lead);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 18px;
  max-width: 16ch;
}
.aud-heading .dim {
  color: rgba(11, 11, 11, 0.28);
}
.aud-copy p {
  color: rgba(11, 11, 11, 0.65);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}
.aud-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.aud-grid li {
  padding: 14px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: -0.005em;
  text-align: left;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
}
.aud-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(233, 134, 58, 0.12);
  color: var(--lime-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.aud-ico svg {
  width: 20px;
  height: 20px;
}
.aud-grid li:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translateY(-1px);
  border-color: transparent;
}
.aud-grid li:hover .aud-ico {
  background: rgba(233, 134, 58, 0.2);
  color: var(--lime);
}

/* ===== FAQ ===== */
.faq {
  padding-bottom: clamp(60px, 8vw, 100px);
}
.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  max-width: 900px;
}
.faq-list details {
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color 0.2s, background 0.2s;
}
.faq-list details[open] {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  text-transform: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  color: var(--lime-2);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: "–";
  color: var(--lime);
}
.faq-list p {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.8;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

/* ===== CTA extras ===== */
.cta-sub {
  margin: 16px 0 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 48ch;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-portrait {
    min-height: 320px;
    order: -1;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .quote-card {
    grid-template-columns: 1fr;
  }
  .quote-portrait {
    min-height: 260px;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .section-head p {
    grid-column: 1 / 2;
    justify-self: start;
  }
  .nav-links {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .audience {
    grid-template-columns: 1fr;
  }
  .aud-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer {
    grid-template-columns: 1fr;
  }
  .lime-split {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .aud-grid {
    grid-template-columns: 1fr;
  }
  .marquee-track {
    font-size: 22px;
    gap: 26px;
  }
}
