/* ============================================================
   Clocktower — styles.css
   Brand: Sora font, navy/blue/teal palette
   ============================================================ */

@font-face {
  font-family: 'Saira Semi Condensed';
  src: url('./fonts/SairaSemiCondensed-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --navy:     #0B1220;
  --navy-mid: #111C30;
  --navy-deep:#060D18;
  --slate:    #334155;
  --blue:     #2563EB;
  --blue-dk:  #1D4ED8;
  --teal:     #06B6D4;
  --teal-dk:  #0891B2;
  --amber:    #D97706;
  --green:    #059669;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --white:    #ffffff;

  --font: 'Sora', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-brand: 'Saira Semi Condensed', var(--font);

  --shadow-sm: 0 2px 8px rgba(11, 18, 32, 0.08);
  --shadow-md: 0 4px 24px rgba(11, 18, 32, 0.10);
  --shadow-lg: 0 16px 56px rgba(11, 18, 32, 0.18);
  --shadow-panel: 0 0 0 1px rgba(37, 99, 235, 0.12), 0 20px 60px rgba(11, 18, 32, 0.4);

  --pad-section: clamp(80px, 10vw, 128px) clamp(24px, 5vw, 80px);
  --pad-section-sm: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px);
  --max-w: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: var(--font); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(24px, 5vw, 80px);
  background: rgba(11, 18, 32, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 200ms;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 12px;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-text--footer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 160ms;
}

.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: opacity 160ms, transform 160ms;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0;
  transition: background 160ms, border-color 160ms, color 160ms, transform 140ms, box-shadow 160ms;
  white-space: nowrap;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.button-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.button-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.button-teal {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  font-weight: 700;
}
.button-teal:hover {
  background: var(--teal-dk);
  border-color: var(--teal-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.text-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 160ms;
}
.text-link:hover { color: var(--teal-dk); text-decoration: underline; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.section {
  padding: var(--pad-section);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section--tinted {
  background: var(--gray-50);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-label--teal {
  color: var(--teal);
}

.section-sub {
  max-width: 700px;
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-sub--light {
  color: rgba(255, 255, 255, 0.55);
}

.section-cta {
  margin-top: 48px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
  padding: clamp(72px, 10vw, 120px) clamp(24px, 5vw, 80px);
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 22px;
}

.hero-headline-line {
  display: block;
}

.hero-headline-list {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-headline-impact {
  color: #F8FAFC;
  text-shadow: 0 0 24px rgba(37, 99, 235, 0.14);
}

.hero-subhead {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-proof-band {
  padding: 0 clamp(24px, 5vw, 80px) 40px;
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy) 50%, var(--white) 50%, var(--white) 100%);
}

.hero-proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-proof-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 22px 20px;
  background: var(--white);
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-proof-icon,
.hero-proof-threshold,
.hero-proof-cadence {
  width: 72px;
  height: 72px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-proof-img, .hero-proof-img-large {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(37, 99, 235, 0.12));
}

.hero-proof-img-large {
  width: 60px;
  height: 60px;
}

.hero-proof-label {
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-proof-copy {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ---- Recovery board panel ---- */
.workflow-panel {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-panel);
  padding: 24px;
  position: relative;
}

.workflow-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.status-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.metric-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px;
  text-align: center;min-height: 148px;
}

.metric-cell--alert {
  border-color: rgba(217, 119, 6, 0.3);
  background: rgba(217, 119, 6, 0.07);
}

.metric-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-cell--alert .metric-num { color: #FBBF24; }

.metric-lbl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  min-height: calc(2 * 1.35em);
}

.board-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.board-item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 11px;
  align-items: start;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.board-item--alert {
  border-color: rgba(217, 119, 6, 0.22);
  background: rgba(217, 119, 6, 0.05);
}

.board-item--resolved { opacity: 0.45; }

.item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
  flex-shrink: 0;
}

.item-dot--amber { background: #FBBF24; }
.item-dot--teal  { background: var(--teal); }
.item-dot--green { background: #34D399; }

.item-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}

.item-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

.item-age {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  padding-top: 3px;
}

.board-item--alert .item-age { color: #FBBF24; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0 0;
}

.pain-card {
  border: 1px solid var(--gray-200);
  padding: 28px;
  background: var(--white);
  transition: border-color 200ms, box-shadow 200ms;
}

.pain-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.pain-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   OUTCOME SECTION
   ============================================================ */
.outcome-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.18fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.outcome-visuals {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
}

.outcome-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 18px;
}

.outcome-copy p {
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.proof-list { display: flex; flex-direction: column; }

.workflow-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.compare-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.compare-card--before {
  border-color: rgba(11, 18, 32, 0.12);
}

.compare-card--after {
  border-color: rgba(6, 182, 212, 0.22);
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.08), var(--shadow-md);
}

.compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.compare-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.compare-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
}

.compare-status--good {
  color: var(--teal-dk);
}

.compare-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
  padding: 12px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.compare-row--good {
  border-color: rgba(5, 150, 105, 0.18);
  background: rgba(5, 150, 105, 0.06);
}

.compare-row--warn {
  border-color: rgba(217, 119, 6, 0.18);
  background: rgba(217, 119, 6, 0.06);
}

.compare-row-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  min-width: 0;
}

.compare-row-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: right;
  white-space: nowrap;
  min-width: 0;
}

.compare-arrow {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
}

.proof-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}

.proof-item:first-child { border-top: 1px solid var(--gray-200); }

.proof-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.proof-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.proof-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 0;
  counter-reset: steps;
}

.step-card {
  border: 1px solid var(--gray-200);
  padding: 28px;
  background: var(--white);
  position: relative;
  transition: box-shadow 200ms;
}

.step-card:hover { box-shadow: var(--shadow-md); }

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card > p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-details {
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-details li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.step-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px 0 0;
}

.use-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
  transition: border-color 220ms;
}

.use-card:hover { border-color: rgba(6, 182, 212, 0.4); }

.use-icon {
  color: var(--teal);
  margin-bottom: 18px;
}

.use-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.use-card > p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.use-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.use-proof-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.use-proof-row > span:not(.proof-label) {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* ============================================================
   WHY CLOCKTOWER
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.why-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.why-copy p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.75;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.diff-card {
  border: 1px solid var(--gray-200);
  padding: 22px;
  background: var(--white);
  transition: border-color 200ms;
}

.diff-card:hover { border-color: var(--blue); }

.diff-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================================
   SPRINT OFFER
   ============================================================ */
.sprint-block {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: clamp(36px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.sprint-block::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.sprint-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.sprint-header > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.sprint-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.sprint-process-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.sprint-process-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.sprint-process-text {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}

.sprint-process-arrow {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
}

.sprint-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.sprint-meta span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 14px;
  line-height: 1.5;
}

.deliverables-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.deliverable-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}

.deliverable-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deliverable-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.continuation-note {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
}

.continuation-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

.continuation-note > p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.continuation-note strong { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   CREDIBILITY / ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.about-grid h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

.about-copy p {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.78;
}

.about-copy p + p { margin-top: 14px; }

.cred-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.5;
}

.cred-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  padding: 22px 24px;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: -2px;
  line-height: 1;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.72;
}

/* ============================================================
   CONTACT / LEAD FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.78;
}

.contact-copy p + p { margin-top: 12px; }

.contact-signals {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
}

.signals-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}

.signal-item {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.signal-item::before {
  content: '\2192';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Form ---- */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  padding: clamp(24px, 4vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1;
}

.req { color: var(--blue); }

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  background: var(--gray-50);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 11px 13px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 160ms, box-shadow 160ms, background 160ms;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder { color: var(--gray-400); }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

textarea { resize: vertical; line-height: 1.65; }

.checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  flex-shrink: 0;
  padding: 0;
  margin-top: 1px;
  accent-color: var(--blue);
}

.form-btn {
  width: 100%;
  min-height: 52px;
  font-size: 0.97rem;
  font-weight: 700;
  margin-top: 2px;
}

.form-btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.form-security {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.turnstile-shell {
  min-height: 68px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
}

.turnstile-shell[data-ready='false'] {
  opacity: 0.75;
}

.form-security-copy {
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.form-note {
  font-size: 0.76rem;
  color: var(--gray-400);
  line-height: 1.55;
}

.form-status {
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.6em;
  line-height: 1.55;
}

.form-status:not(:empty) {
  padding-left: 12px;
  border-left: 3px solid transparent;
}

.form-status.is-pending {
  color: var(--slate);
  border-left-color: var(--gray-300);
}

.form-status.is-success {
  color: var(--teal-dk);
  border-left-color: var(--teal);
}

.form-status.is-error {
  color: #b42318;
  border-left-color: #f04438;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  padding: 28px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}

.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}

#footer-logo-text {
  color: #fff;
  font-size: 1.1rem;
}

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 160ms;
}

.footer-nav a:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-proof-inner,
  .hero-inner,
  .outcome-grid,
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  h1 { max-width: 100%; }
  .hero-subhead { max-width: 100%; }

  .sprint-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .workflow-compare,
  .sprint-process {
    grid-template-columns: 1fr;
  }

  .compare-arrow,
  .sprint-process-arrow {
    display: none;
  }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .compare-row {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .compare-row-title,
  .compare-row-meta {
    white-space: normal;
  }

  .compare-row-meta {
    text-align: left;
  }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 99;
  }
  .nav-links.open a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-toggle { display: flex; }

  .button-small { display: none; }

  .pain-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .hero-proof-icon,
  .hero-proof-threshold,
  .hero-proof-cadence {
    width: 56px;
    height: 56px;
  }

  .hero-proof-img {
    width: 32px;
    height: 32px;
  }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }

  .hero { padding: 56px 20px; }

  .section { padding: clamp(56px, 8vw, 80px) 20px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .metric-row { grid-template-columns: repeat(3, 1fr); }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 10px; }

  .section-cta { text-align: left; }
  .section-cta .button { width: 100%; }
}
