/* =========================================================
   sprint.skifi — Figma recreation
   Display face: serif (matches the FK Raster Roman fallback shown in Figma)
   Body face:    Manrope
   Palette:      blue #007DE3 · lime #C8FF4D · ink #000 on white
   ========================================================= */

:root {
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --blue: #007de3;
  --blue-ink: #005bb0;
  --lime: #c8ff4d;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.6);
  --faint: rgba(0, 0, 0, 0.45);
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.18);

  --night: #0b0f14;

  --container: 1352px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 18px;
  --radius-lg: 26px;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--blue);
  color: #fff;
}

/* ---- layout primitive ---- */
.container {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

/* ---- eyebrow label ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--lime);
}

/* ---- flower mark ---- */
.mark {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand .mark {
  font-size: 22px;
  color: var(--blue);
}

.nav {
  justify-self: center;
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.nav a {
  position: relative;
  padding: 4px 0;
  transition: color 160ms var(--ease);
}

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

.header-cta {
  justify-self: end;
}

/* =========================================================
   Buttons
   ========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease),
    color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

/* blue solid */
.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 125, 227, 0.28);
}

.button.primary:hover {
  background: var(--blue-ink);
  box-shadow: 0 16px 34px rgba(0, 125, 227, 0.36);
}

/* white solid (on blue) */
.button.white {
  background: #fff;
  color: var(--ink);
}

.button.white:hover {
  background: var(--lime);
}

/* outline on blue */
.button.ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* outline on white */
.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button.ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button.small {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.button.full {
  width: 100%;
}

/* =========================================================
   Hero — white editorial, two column with media stack
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(32px, 6vw, 76px) 0 clamp(24px, 4vw, 52px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 15ch;
}

.hero h1 .hl {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.26em;
  background: var(--lime);
  opacity: 0.5;
  z-index: -1;
  border-radius: 3px;
}

.hero-copy {
  margin-top: 24px;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
}

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

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proof-strip span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
  margin-right: 12px;
}

.proof-strip .star {
  color: #febc2e;
}

/* media stack — overlapping framed mockups with parallax depth */
.hero-media {
  position: relative;
  min-height: 460px;
}

.hero-media .shot {
  position: absolute;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(11, 15, 20, 0.14);
  will-change: transform;
}

.hero-media .shot-back {
  width: 74%;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero-media .shot-front {
  width: 80%;
  left: 0;
  bottom: 18px;
  z-index: 2;
}

.hero-media .shot-phone {
  width: 27%;
  right: 3%;
  bottom: -18px;
  z-index: 3;
  border-radius: 26px;
}

.hero-flower {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -26px;
  left: -22px;
  color: var(--blue);
  opacity: 0.1;
  z-index: 0;
  will-change: transform;
}

/* =========================================================
   Category nav strip
   ========================================================= */
.cat-strip {
  padding: 30px 0;
  overflow: hidden;
}

.cat-strip ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cat-strip li {
  font-family: var(--display);
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0 0.6em;
}

.cat-strip li.sep {
  color: var(--blue);
  opacity: 0.6;
  padding: 0;
}

/* =========================================================
   Section scaffolding
   ========================================================= */
.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  margin-bottom: 18px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
}

/* =========================================================
   Problem — split with numbered list
   ========================================================= */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.problem h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

.problem .points {
  display: grid;
  gap: 0;
}

.problem .points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.problem .points {
  margin: 0;
  padding: 0;
  counter-reset: pt;
}

.problem .points li::before {
  counter-increment: pt;
  content: "0" counter(pt);
  font-family: var(--display);
  font-size: 15px;
  color: var(--blue);
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: #fff;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
  position: relative;
  background: var(--night);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 30px 70px rgba(11, 15, 20, 0.34);
}

.price-card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 10px;
}

.price-card .card-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}

.price-card.featured .card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.recommended {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommended::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.price {
  margin: 26px 0 22px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.price small {
  font-size: 0.5em;
  font-family: var(--body);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.price-card.featured .price small {
  color: rgba(255, 255, 255, 0.78);
}

.spec {
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
}

.price-card.featured .spec {
  border-color: rgba(255, 255, 255, 0.28);
}

.spec div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-card.featured .spec div {
  border-color: rgba(255, 255, 255, 0.28);
}

.spec dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.price-card.featured .spec dt {
  color: var(--lime);
}

.spec dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}

.price-card.featured .spec dd {
  color: rgba(255, 255, 255, 0.88);
}

.price-card .button {
  margin-top: auto;
}

.helper {
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
}

/* =========================================================
   Process timeline
   ========================================================= */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline article {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--line);
  transition: border-color 200ms var(--ease);
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  transition: background 200ms var(--ease);
}

.timeline article:hover {
  border-top-color: var(--blue);
}

.timeline article:hover::before {
  background: var(--blue);
}

.timeline .step {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.timeline h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 10px;
}

.timeline p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* =========================================================
   Bento
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 22px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #fff;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.bento-card .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.bento-card h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.bento-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.bento-card.lg {
  grid-column: span 2;
  grid-row: span 2;
  background: #f6f8fb;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
  justify-content: flex-start;
  gap: 20px;
}

.bento-card.lg h3 {
  font-size: clamp(26px, 3.2vw, 40px);
  max-width: 16ch;
}

.bento-card.lg .tag {
  color: var(--blue);
}

.bento-card.lg p {
  color: var(--muted);
}

.bento-card.lg .bento-text {
  display: grid;
  gap: 14px;
}

/* framed screenshot inside a bento card */
.bento-shot {
  width: 100%;
  margin-top: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 15, 20, 0.1);
  will-change: transform;
}

.bento-shot.sm {
  width: auto;
  max-height: 190px;
  margin-inline: auto;
  box-shadow: 0 14px 32px rgba(11, 15, 20, 0.12);
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card.tall strong {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  color: var(--blue);
}

.bento-card.dark {
  background: var(--night);
  border-color: transparent;
  color: #fff;
}

.bento-card.dark .tag {
  color: var(--lime);
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.bento-card.accent {
  background: var(--lime);
  border-color: transparent;
  color: #1a2400;
}

.bento-card.accent .tag {
  color: var(--blue-ink);
}

.bento-card.accent p {
  color: rgba(26, 36, 0, 0.78);
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.flow i {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   Fit
   ========================================================= */
.fit {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.fit h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
}

.fit-grid article.yes {
  background: #eef7ff;
  border-color: rgba(0, 125, 227, 0.2);
}

.fit-grid article.no {
  background: var(--night);
  border-color: transparent;
  color: #fff;
}

.fit-grid h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 18px;
}

.fit-grid ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
}

.fit-grid article.yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 11px no-repeat;
}

.fit-grid article.no li {
  color: rgba(255, 255, 255, 0.82);
}

.fit-grid article.no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='18' y1='6' x2='6' y2='18'/></svg>")
    center / 10px no-repeat;
}

/* =========================================================
   Outcome — blue band
   ========================================================= */
.outcome {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  padding: clamp(80px, 11vw, 150px) 0;
}

.outcome .eyebrow {
  color: #fff;
}

.outcome .eyebrow::before {
  background: var(--lime);
}

.outcome-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 20ch;
}

.outcome-quote em {
  font-style: normal;
  color: var(--lime);
}

.outcome-deco {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  width: 220px;
  right: -30px;
  bottom: -50px;
  transform: rotate(14deg);
  pointer-events: none;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.faq h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  transition: color 160ms var(--ease);
}

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

.faq-list summary:hover {
  color: var(--blue);
}

.faq-list summary::after {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>")
    center / 12px no-repeat;
  transition: transform 260ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(135deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding-bottom: 22px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* =========================================================
   Book / contact
   ========================================================= */
.book {
  text-align: center;
}

.book .eyebrow {
  justify-content: center;
}

.book h2 {
  font-size: clamp(32px, 4.6vw, 58px);
  max-width: 20ch;
  margin-inline: auto;
}

.book .lead {
  max-width: 56ch;
  margin: 16px auto 40px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-form label.wide,
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa6b4;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 125, 227, 0.16);
}

/* =========================================================
   Footer — wordmark
   ========================================================= */
.footer {
  padding: clamp(48px, 7vw, 96px) 0 40px;
  border-top: 1px solid var(--line);
}

.footer-mark {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 16vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.footer-meta nav {
  display: flex;
  gap: 24px;
}

.footer-meta a:hover {
  color: var(--blue);
}

/* =========================================================
   Focus + reveal
   ========================================================= */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* stronger "slides coming up" reveal */
.js .reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-up.is-in {
  opacity: 1;
  transform: none;
}

[data-parallax] {
  will-change: transform;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .site-header .container {
    grid-template-columns: 1fr auto;
  }

  .problem,
  .pricing-grid,
  .fit,
  .fit-grid,
  .faq,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

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

  .bento-card.lg {
    grid-column: span 2;
    grid-row: auto;
  }

  .bento-card.tall {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

  .bento-card.lg {
    grid-column: auto;
  }

  .spec div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal,
  .js .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax] {
    transform: none !important;
  }
}

/* =========================================================
   Hero responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-media {
    min-height: 340px;
    margin-top: 16px;
  }

  .hero-media .shot-back {
    width: 66%;
  }

  .hero-media .shot-front {
    width: 74%;
  }
}

@media (max-width: 560px) {
  .hero-media {
    min-height: 290px;
  }

  .hero-media .shot-phone {
    display: none;
  }

  .bento-card.lg .bento-shot {
    display: none;
  }
}
