/* ================================================================
   IRONCLAD DIGITAL — Website v2  (Visual Revision Pass)
   Mobile-first stylesheet
================================================================ */

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #070B0F;
  --bg-panel:   #0B0D10;
  --bg-card:    #12161B;
  --bg-card2:   #181D24;
  --bg-deep:    #040608;
  --bg-calm:    #0E1219;
  --bg-warm:    #0C0E12;
  --bg-flow:    #0D1118;
  --bg-field:   #080B10;
  --teal:       #11C5D9;
  --teal-hover: #27D7EA;
  --white:      #F5F7FA;
  --muted:      #8C949C;
  --border:     rgba(255,255,255,0.07);
  --border-md:  rgba(255,255,255,0.11);
  --radius:     12px;
  --radius-lg:  18px;
  --shadow:     0 4px 32px rgba(0,0,0,0.5);
  --shadow-teal: 0 0 28px rgba(17,197,217,0.35);
  --font:       'Manrope', system-ui, sans-serif;
  --nav-h:      68px;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 26px rgba(17,197,217,0.55), 0 0 0 3px rgba(17,197,217,0.18); }
  50%       { box-shadow: 0 0 60px rgba(17,197,217,0.92), 0 0 90px rgba(17,197,217,0.38), 0 0 0 6px rgba(17,197,217,0.24); }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: 100px 0; }
.section--dark  { background: var(--bg-panel); }
.section--deep  { background: var(--bg-deep);  border-top: 1px solid rgba(17,197,217,0.1); border-bottom: 1px solid rgba(17,197,217,0.1); }
.section--calm  { background: var(--bg-calm);  border-top: 1px solid var(--border); }
.section--warm  { background: var(--bg-warm);  border-top: 1px solid var(--border-md); border-bottom: 1px solid var(--border-md); }
.section--flow  { background: var(--bg-flow);  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--field { background: var(--bg-field); border-top: 2px solid var(--border-md); }

/* ── Typography ──────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.85rem, 5vw, 2.9rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }
.heading--center { text-align: center; }

.section-body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted);
  margin-top: 18px;
  max-width: 520px;
}
.section-body--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.18s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary       { background: var(--teal); color: #070B0F; padding: 13px 22px; }
.btn--primary:hover { background: var(--teal-hover); box-shadow: 0 6px 24px rgba(17,197,217,0.3); }

.btn--ghost         { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); padding: 11px 22px; }
.btn--ghost:hover   { border-color: var(--teal); color: var(--teal); }

.btn--secondary     { background: rgba(17,197,217,0.12); color: var(--teal); border: 1.5px solid rgba(17,197,217,0.3); padding: 13px 22px; }
.btn--secondary:hover { background: rgba(17,197,217,0.18); border-color: var(--teal-hover); }

.btn--secondary.btn--lg { padding: 16px 30px; }

/* Discovery Call — standalone pill button, no base .btn class needed */
.btn--discovery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17,197,217,0.1);
  color: var(--teal);
  border: 1.5px solid rgba(17,197,217,0.55);
  border-radius: 100px;
  padding: 14px 26px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--discovery:hover {
  background: rgba(17,197,217,0.18);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(17,197,217,0.18);
}
/* Hero size — matches .btn--lg height */
.btn--discovery--lg {
  padding: 16px 30px;
  font-size: 1rem;
}

.btn--lg  { padding: 16px 30px; font-size: 1rem; }
.btn--cta { padding: 20px 40px; font-size: 1.1rem; border-radius: 10px; }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7,11,15,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav__logo-sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--teal);
  line-height: 1;
  margin-top: 1px;
}

.nav__links     { display: none; gap: 32px; }
.nav__links a   { font-size: 0.875rem; font-weight: 600; color: var(--muted); transition: color 0.15s; }
.nav__links a:hover { color: var(--white); }
.nav__cta       { display: none; }
.nav__cta-group { display: none; gap: 12px; }
.nav__cta--secondary { display: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.nav__drawer.open { max-height: 400px; padding: 16px 24px 24px; }
.nav__drawer-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav__drawer-link:hover { color: var(--white); }
.nav__drawer-cta { margin-top: 20px; justify-content: center; width: 100%; }
.nav__drawer-cta-group { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.nav__drawer-cta-group .btn,
.nav__drawer-cta-group .btn--discovery { justify-content: center; width: 100%; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background:
    url('assets/Hero.jpeg')
    center/cover no-repeat;
  opacity: 0.72;
  filter: grayscale(0%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5,9,12,0.94) 0%, rgba(5,9,12,0.84) 38%, rgba(5,9,12,0.58) 66%, rgba(5,9,12,0.82) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.hero__content { max-width: 600px; }

.hero__headline {
  margin-bottom: 22px;
  background: linear-gradient(135deg, #F5F7FA 55%, #11C5D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.74;
  color: var(--muted);
  max-width: 500px;
}

.hero__ctas    { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__secondary-cta { margin-top: 14px; }
.hero__pills   { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17,197,217,0.08);
  border: 1px solid rgba(17,197,217,0.2);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}

/* Hero visual */
.hero__visual {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

/* Base flow card */
.flow-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 14px 18px;
  position: relative;
}

/* Dominant card: Ironclad Responds First */
.flow-card--hero {
  background: var(--teal);
  border-color: var(--teal);
  border-radius: var(--radius);
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(17,197,217,0.4), 0 8px 32px rgba(0,0,0,0.4);
}

.flow-card__hero-badge {
  background: rgba(7,11,15,0.2);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(7,11,15,0.85);
  text-align: center;
  padding: 6px 0;
}

.flow-card__hero-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 20px;
}

.flow-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(17,197,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-card__icon--hero  { background: rgba(7,11,15,0.2); width: 46px; height: 46px; border-radius: 10px; }
.flow-card__icon--booked { background: rgba(17,197,217,0.15); }

.flow-card__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.flow-card__label--hero { font-size: 1rem; font-weight: 800; color: #070B0F; }

.flow-card__sub        { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }
.flow-card__sub--hero  { color: rgba(7,11,15,0.65); }
.flow-card--booked .flow-card__label { color: var(--teal); }
.flow-card--booked .flow-card__sub  { color: var(--teal); opacity: 0.7; }

.flow-card__check {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(7,11,15,0.25);
  font-size: 0.85rem;
  font-weight: 700;
  color: #070B0F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
}
.flow-connector__line {
  width: 1.5px;
  height: 18px;
  background: var(--border);
}
.flow-connector__line--active { background: var(--teal); }

.flow-sub-cards {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 8px 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px dashed var(--border);
  margin: 4px 0;
}
.flow-sub-card {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.flow-sub-card:last-child { border-bottom: none; }

.flow-connector--active .flow-connector__line { background: var(--teal); }

/* ── Pain Strip ──────────────────────────────────────────────── */
.pain-strip {
  background: #0A0E14;
  border-top: 2px solid var(--border-md);
  border-bottom: 2px solid var(--border-md);
  padding: 80px 0;
}

.pain-strip__text {
  font-size: clamp(1.3rem, 4.8vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.underline-teal {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
  color: var(--white);
}

/* ── Problem ─────────────────────────────────────────────────── */
.problem__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.problem__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.x-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,90,95,0.6);
  flex-shrink: 0;
}
.x-icon::before { content: '×'; font-size: 1.1rem; color: #FF5A5F; line-height: 1; }

/* Phone card — enlarged */
.phone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow);
}

.phone-card__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.phone-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.phone-card__dot--red    { background: #FF5A5F; }
.phone-card__dot--yellow { background: #F5A623; }
.phone-card__dot--green  { background: #4CAF50; }
.phone-card__title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.phone-card__bar {
  height: 4px;
  background: linear-gradient(90deg, #FF5A5F 0%, #F5A623 50%, #FF7F50 100%);
}

.phone-card__items {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
}

.phone-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-item--red    .phone-item__icon { background: rgba(255,90,95,0.12); }
.phone-item--yellow .phone-item__icon { background: rgba(245,166,35,0.12); }
.phone-item--orange .phone-item__icon { background: rgba(255,127,80,0.12); }

.phone-item__text { flex: 1; }
.phone-item__title { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.phone-item__sub   { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.phone-item__badge {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-item__badge--red    { background: #FF5A5F; color: #fff; }
.phone-item__badge--yellow { background: #F5A623; color: #fff; }
.phone-item__badge--orange { background: #FF7F50; color: #fff; }

/* ── Qualify Section Border ──────────────────────────────────── */
.qualify { border-top: 1px solid var(--border-md); }

/* ── Website Funnel (NEW) ────────────────────────────────────── */
.funnel__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 60px;
}

.funnel__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 240px;
  transition: border-color 0.2s, transform 0.2s;
}
.funnel__node:hover {
  border-color: rgba(17,197,217,0.25);
  transform: translateY(-2px);
}

.funnel__node--active {
  background: rgba(17,197,217,0.08);
  border-color: rgba(17,197,217,0.4);
}

.funnel__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(17,197,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel__icon--active {
  background: var(--teal);
}

.funnel__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.funnel__node--active .funnel__label { color: var(--teal); }

.funnel__sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.funnel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  padding: 8px 0;
  opacity: 0.5;
}

/* ── Qualified Leads (NEW) ───────────────────────────────────── */
.qualify__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.qualify__note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 20px;
  opacity: 0.85;
}

/* Qualify form mockup */
.qualify-form {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
}

.qualify-form__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.qualify-form__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-md);
}
.qualify-form__header span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.qualify-form__steps {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qualify-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
}

.qualify-step--active {
  border-color: rgba(17,197,217,0.35);
  background: rgba(17,197,217,0.05);
}

.qualify-step--cta {
  border-color: rgba(17,197,217,0.5);
  background: rgba(17,197,217,0.08);
}

.qualify-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qualify-step__num--active { background: var(--teal); color: #070B0F; }
.qualify-step__num--cta    { background: rgba(17,197,217,0.2); color: var(--teal); }

.qualify-step__body { flex: 1; }
.qualify-step__label { font-size: 0.7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.qualify-step__val   { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-top: 2px; }
.qualify-step__val--active { color: var(--teal); }
.qualify-step__val--cta    { color: var(--teal); }

.qualify-step__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(17,197,217,0.12);
  border: 1px solid rgba(17,197,217,0.3);
  font-size: 0.75rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── System Pipeline ─────────────────────────────────────────── */
.system.section { padding: 120px 0; }
.system.section--deep { background: var(--bg-deep); }

.pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 64px;
}

.pipeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 280px;
  transition: border-color 0.2s;
}
.pipeline__step:hover { border-color: rgba(17,197,217,0.2); }

.pipeline__step--final {
  border-color: rgba(17,197,217,0.35);
  background: rgba(17,197,217,0.06);
}

.pipeline__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(17,197,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline__icon--active { background: var(--teal); }

.pipeline__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.pipeline__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  padding: 8px 0;
  opacity: 0.45;
  flex-shrink: 0;
}

/* ── Overhead ────────────────────────────────────────────────── */
.overhead__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.overhead__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: rgba(17,197,217,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(17,197,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon--lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 22px;
}

.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── First To Respond ────────────────────────────────────────── */
.respond__stat-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 48px 0 56px;
  text-align: center;
}

.respond__pct {
  font-size: clamp(5rem, 20vw, 8rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #11C5D9, #27D7EA 60%, #6EEAF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.respond__stat-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Race diagram */
.race {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* mobile: show only the simplified version */
.race--desktop { display: none; }
.race--mobile  { display: flex; }

.race__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 14px 18px;
}

.race__step p { font-size: 0.75rem; font-weight: 600; color: var(--muted); line-height: 1.3; }
.race__step--active p { color: var(--teal); font-weight: 700; font-size: 0.78rem; }
.race__step--booked p { color: var(--white); font-weight: 700; }

.race__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: box-shadow 0.3s;
}
.race__icon--active {
  width: 64px;
  height: 64px;
  background: var(--teal);
  border-color: var(--teal);
  color: #070B0F;
  animation: pulse-glow 2.2s ease-in-out infinite;
}
.race__icon--booked {
  background: rgba(17,197,217,0.1);
  border-color: var(--teal);
  color: var(--teal);
}

.race__connector {
  width: 2px;
  height: 28px;
  background: var(--border-md);
}
.race__connector--active {
  background: linear-gradient(180deg, var(--teal), rgba(17,197,217,0.4));
  box-shadow: 0 0 8px rgba(17,197,217,0.4);
}

/* ── Why Ironclad ────────────────────────────────────────────── */
.why__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 52px;
}

/* ── Final CTA ───────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=70&auto=format&fit=crop')
    center/cover no-repeat;
  opacity: 0.08;
  filter: grayscale(60%);
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(17,197,217,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(17,197,217,0.05) 0%, transparent 100%),
    linear-gradient(135deg, var(--bg-panel) 0%, rgba(11,13,16,0.95) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.final-cta__sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Hero Outcomes ───────────────────────────────────────────── */
.hero__outcomes {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero__outcomes span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__outcome-dot {
  color: var(--teal);
  font-size: 1.1rem;
  line-height: 1;
}

/* ── Pain Cards ──────────────────────────────────────────────── */
.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  padding-bottom: 8px;
}
.pain-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.pain-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.pain-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.pain-card__accent--red    { background: #FF5A5F; }
.pain-card__accent--orange { background: #F5A623; }
.pain-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-card h3 { font-size: 1rem; margin-bottom: 8px; }
.pain-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.62; }

/* ── Qualify Form Dot Colors ─────────────────────────────────── */
.qualify-form__dot--red    { background: #FF5A5F; }
.qualify-form__dot--yellow { background: #F5A623; }
.qualify-form__dot--green  { background: #4CAF50; }

/* Qualify step done state */
.qualify-step--done .qualify-step__num {
  background: rgba(17,197,217,0.15);
  color: var(--teal);
}

/* ── Trust Section ───────────────────────────────────────────── */
.trust__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.trust__visual {
  display: flex;
  justify-content: center;
}
.trust__img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    url('assets/Built by.png')
    center / cover no-repeat;
  filter: grayscale(5%);
}
.trust__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,11,15,0.72) 100%);
}
.trust__img-badge {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7,11,15,0.88);
  border: 1px solid rgba(17,197,217,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(10px);
}

/* ── Trust Founder Story ─────────────────────────────────────── */
.trust__story {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid rgba(17,197,217,0.28);
  padding-left: 20px;
}
.trust__story p {
  font-size: 0.97rem;
  line-height: 1.74;
  color: var(--muted);
}
.trust__story p:nth-child(2) {
  font-size: 0.94rem;
  font-style: italic;
  color: rgba(140,148,156,0.85);
}
.trust__attribution {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ── Proof Badges ────────────────────────────────────────────── */
.proof-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.proof-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.proof-badge svg { flex-shrink: 0; }

/* ── Field Section ───────────────────────────────────────────── */
.field-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 52px;
}
.field-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.field-card:hover {
  border-color: rgba(17,197,217,0.25);
  transform: translateY(-2px);
}
.field-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(17,197,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.field-card h3 { margin-bottom: 8px; }
.field-card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── Hero Support Line ───────────────────────────────────────── */
.hero__support {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.88;
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* ── Audit Block ─────────────────────────────────────────────── */
.audit-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
.audit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: border-color 0.2s;
}
.audit-item:hover { border-color: rgba(17,197,217,0.25); }
.audit-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(17,197,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audit-item__text h3 { font-size: 0.92rem; margin-bottom: 5px; }
.audit-item__text p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── Final CTA Note ──────────────────────────────────────────── */
.final-cta__note {
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.8;
  margin-top: -4px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__brand  { display: flex; flex-direction: column; gap: 10px; }
.footer__logo   { font-size: 0.8rem; }
.footer__tagline { font-size: 0.82rem; color: var(--muted); }

.footer__nav      { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a    { font-size: 0.875rem; font-weight: 600; color: var(--muted); transition: color 0.15s; }
.footer__nav a:hover { color: var(--white); }

.footer__legal     { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer__legal a   { font-size: 0.78rem; color: var(--muted); transition: color 0.15s; }
.footer__legal a:hover { color: var(--white); }
.footer__legal span { font-size: 0.78rem; color: var(--muted); width: 100%; }

/* ================================================================
   PORTRAIT ORIENTATION  (≥ 600px)  — swap to vertical hero photo
================================================================ */
@media (orientation: portrait) and (min-width: 600px) {
  .hero__bg-image {
    background:
      url('assets/Hero Vertical.png')
      center top / cover no-repeat;
    opacity: 0.68;
  }
  .hero__overlay {
    background:
      linear-gradient(to bottom, transparent 50%, var(--bg) 95%),
      rgba(5,9,12,0.72);
  }
}

/* ================================================================
   MOBILE ONLY  (≤ 599px)  — tighten vertical rhythm
================================================================ */
@media (max-width: 599px) {
  /* Hero — compact mobile: no min-height, tighter padding, hide floating widget */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 52px;
  }
  .hero__inner { gap: 0; }
  .hero__visual { display: none; }

  .hero__bg-image {
    background:
      url('assets/Hero Vertical.png')
      center 38% / cover no-repeat;
    opacity: 0.90;
  }

  .hero__overlay {
    background:
      linear-gradient(to bottom, rgba(5,9,12,0.48) 0%, rgba(5,9,12,0.38) 52%, var(--bg) 88%);
  }

  .section        { padding: 56px 0; }
  .system.section { padding: 64px 0; }
  .pain-strip     { padding: 44px 0; }
  .final-cta      { padding: 80px 0; }

  .underline-teal {
    text-decoration: none;
    color: var(--teal);
  }

  /* Pain cards — 2-col grid on mobile */
  .pain-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 32px;
  }
  .pain-card:last-child { grid-column: span 2; }
  .pain-card { padding: 20px 16px; }

  /* Overhead cards — 2-col grid on mobile */
  .overhead__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .overhead__cards .card:last-child { grid-column: span 2; }
  .overhead__cards .card { padding: 20px 16px; }

  /* Why Ironclad cards — 2-col grid on mobile */
  .why__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 36px;
  }
  .why__cards .card:last-child { grid-column: span 2; }
  .why__cards .card { padding: 20px 16px; }

  /* Field cards — 2-col grid on mobile */
  .field-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 36px; }
  .field-card { padding: 20px 16px; }

  /* Pipeline — compact 2-col grid on mobile */
  .pipeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: start;
  }
  .pipeline__arrow  { display: none; }
  .pipeline__step   { max-width: none; width: 100%; padding: 18px 12px; }
  .pipeline__step--final { grid-column: span 2; }
  .pipeline__icon   { width: 44px; height: 44px; border-radius: 11px; }
  .pipeline__label  { font-size: 0.88rem; }

  /* Funnel — compact 2-col grid on mobile */
  .funnel__flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: start;
  }
  .funnel__arrow { display: none; }
  .funnel__node  { max-width: none; width: 100%; padding: 18px 12px; }
  .funnel__node:last-child { grid-column: span 2; }
  .funnel__icon  { width: 44px; height: 44px; border-radius: 11px; }
  .funnel__label { font-size: 0.88rem; }

  /* Problem — hide decorative phone widget, only show text + pain cards */
  .problem__visual { display: none; }

  /* Race — 2×2 grid instead of tall vertical column */
  .race--mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 28px;
  }
  .race--mobile .race__connector { display: none; }
  .race--mobile .race__step { padding: 14px 10px; width: 100%; }
  .race--mobile .race__icon--active { width: 52px; height: 52px; }
}

/* ================================================================
   SMALL TABLET  (≥ 600px)
================================================================ */
@media (min-width: 600px) {
  .respond__stat-row {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 48px;
  }

  .hero__visual { max-width: 380px; }

  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
  }
  .footer__legal span { width: auto; }
}

/* ================================================================
   TABLET  (≥ 768px)  — go horizontal before 900px desktop kick
================================================================ */
@media (min-width: 768px) {

  /* Funnel — horizontal at tablet */
  .funnel__flow {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .funnel__node  { max-width: 160px; padding: 20px 14px; }
  .funnel__icon  { width: 48px; height: 48px; border-radius: 12px; }
  .funnel__arrow { transform: rotate(0deg); padding: 0 4px; }

  /* Pipeline — horizontal at tablet */
  .pipeline {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .pipeline__step  { width: auto; max-width: 120px; min-width: 88px; padding: 20px 10px; }
  .pipeline__icon  { width: 52px; height: 52px; border-radius: 13px; }
  .pipeline__arrow { transform: rotate(0deg); }

  /* Why Ironclad — 3 column at tablet */
  .why__cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .why__cards .card { flex: 1 1 0; }

  /* Pain cards — 3 column at tablet */
  .pain-cards {
    flex-direction: row;
    gap: 16px;
    margin-top: 52px;
  }
  .pain-card { flex: 1; }

  /* Audit items — 2 column at tablet */
  .audit-items { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   DESKTOP  (≥ 900px)
================================================================ */
@media (min-width: 900px) {

  /* Nav */
  .nav__links     { display: flex; }
  .nav__cta       { display: inline-flex; }
  .nav__cta-group { display: flex; gap: 12px; }
  .nav__cta--secondary { display: inline-flex; }
  .nav__hamburger { display: none; }

  /* Hero — copy 55%, visual 45% */
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 90px);
    padding-bottom: 120px;
  }
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .hero__content { flex: 0 0 55%; max-width: 580px; }
  .hero__visual  { flex: 0 0 40%; max-width: 360px; margin: 0; padding-top: 72px; }

  /* Problem */
  .problem__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .problem__text   { flex: 1; }
  .problem__visual { flex: 1; display: flex; justify-content: center; }

  /* Funnel — horizontal */
  .funnel__flow {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .funnel__node   { max-width: 200px; }
  .funnel__arrow  { transform: rotate(0deg); padding: 0 8px; }

  /* Qualify */
  .qualify__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .qualify__text   { flex: 1; }
  .qualify__visual { flex: 1; display: flex; justify-content: center; }

  /* Pipeline */
  .pipeline {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .pipeline__step  { width: auto; max-width: 145px; min-width: 100px; padding: 24px 14px; }
  .pipeline__arrow { transform: rotate(0deg); }

  /* Overhead */
  .overhead__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }
  .overhead__text  { flex: 0 0 320px; }
  .overhead__cards { flex: 1; flex-direction: column; gap: 18px; }
  .overhead__cards .card { width: 100%; }

  /* Race — show desktop version, hide mobile */
  .race--desktop {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .race--mobile { display: none; }
  .race__connector { width: 28px; height: 2px; }
  .race__connector--active { box-shadow: 0 0 10px rgba(17,197,217,0.5); }

  /* Why Ironclad */
  .why__cards {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .why__cards .card { flex: 1 1 0; }

  /* Pain Cards — 3 column */
  .pain-cards {
    flex-direction: row;
    gap: 20px;
    margin-top: 64px;
  }
  .pain-card { flex: 1; }

  /* Trust — two column */
  .trust__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .trust__text { flex: 1; }
  .trust__visual { flex: 0 0 420px; justify-content: flex-end; }

  /* Field Cards — 2 column */
  .field-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   WIDE  (≥ 1100px)
================================================================ */
@media (min-width: 1100px) {
  .overhead__text  { flex: 0 0 380px; }
  .overhead__cards { flex-direction: row; flex-wrap: nowrap; gap: 20px; }
  .overhead__cards .card { flex: 1; }

  .pipeline__step { max-width: 160px; min-width: 115px; }
  .funnel__node   { max-width: 220px; padding: 32px 28px; }

  /* Field Cards — 4 column at wide */
  .field-cards { grid-template-columns: repeat(4, 1fr); }

  /* Trust visual wider */
  .trust__visual { flex: 0 0 460px; }
}

/* ================================================================
   ULTRA-WIDE  (≥ 1400px)
================================================================ */
@media (min-width: 1400px) {
  .hero__content { max-width: 620px; }
  .hero__visual  { max-width: 400px; }
}
