/* =========================================================
   skifi.co — parent studio site
   Reuses the sprint.skifi system, elevated for the umbrella brand.
   Display: Fraunces (serif) · Body: Manrope
   Palette: blue #007DE3 · lime #C8FF4D · ink #000 on white · night
   ========================================================= */

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

  --blue: #007de3;
  --blue-ink: #005bb0;
  --blue-tint: #eef7ff;
  --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;
  --night-2: #121821;

  --container: 1352px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --header-h: 78px;
  --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: clip;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

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

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

.section {
  padding: clamp(64px, 8vw, 116px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

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

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

/* ---- 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);
}

.section-head.center .eyebrow {
  justify-content: center;
}

/* ---- 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: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

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

.nav a:hover,
.nav a[aria-current="page"] {
  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;
  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);
}

.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);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.dark:hover {
  background: var(--blue);
}

.button.white {
  background: #fff;
  color: var(--ink);
}

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

.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;
}

.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%;
}

.button .arrow {
  transition: transform 180ms var(--ease);
}

.button:hover .arrow {
  transform: translateX(3px);
}

/* =========================================================
   Editorial hero (parent-brand signature)
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 5vw, 72px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  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: var(--blue-tint);
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
}

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

/* credential row: brand badge + Fiverr Pro pill */
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-creds .hero-badge {
  margin-bottom: 0;
}

/* Vetted Fiverr Pro badge */
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #1dbf73;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(29, 191, 115, 0.28);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.pro-badge::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l2.9 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 7.1-1.01z'/></svg>")
    center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l2.9 6.26L22 9.27l-5 4.87L18.18 22 12 18.56 5.82 22 7 14.14l-5-4.87 7.1-1.01z'/></svg>")
    center / contain no-repeat;
}

.pro-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(29, 191, 115, 0.36);
}

.hero h1 {
  font-size: clamp(44px, 6.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-copy {
  margin-top: 26px;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
}

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

/* hero visual: stacked capability chips over a blue panel */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--blue);
  padding: clamp(26px, 3vw, 40px);
  color: #fff;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 40px 90px rgba(0, 125, 227, 0.34);
}

.hero-visual .hv-deco {
  position: absolute;
  color: rgba(255, 255, 255, 0.16);
  width: 200px;
  right: -34px;
  bottom: -46px;
  transform: rotate(14deg);
  pointer-events: none;
}

/* media variant: hero panel hosting a framed mockup image */
.hero-visual.media {
  min-height: auto;
  justify-content: flex-start;
  gap: 20px;
}

.hero-visual .hero-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #fff;
  box-shadow: 0 30px 70px rgba(4, 18, 32, 0.4);
  will-change: transform;
}

/* dark canvas variant that hosts the MagicRings WebGL effect */
.hero-visual.has-rings {
  background: radial-gradient(130% 130% at 50% 12%, #0a3a63 0%, #061f38 55%, #04121f 100%);
  box-shadow: 0 40px 90px rgba(4, 18, 32, 0.55);
}

.hero-rings {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-rings canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-visual.has-rings .hv-label,
.hero-visual.has-rings .hv-stack,
.hero-visual.has-rings .hv-deco {
  position: relative;
  z-index: 1;
}

.hero-visual.has-rings .hv-deco {
  z-index: 1;
  color: rgba(255, 255, 255, 0.1);
}

.hv-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.hv-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hv-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 600;
  font-size: 15px;
}

.hv-chip span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   Proof strip / stat bands
   ========================================================= */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.proof-strip b {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
}

.proof-strip .star {
  color: var(--blue);
}

/* =========================================================
   Category marquee strip
   ========================================================= */
.cat-strip {
  padding: 26px 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
}

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

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

.cat-strip li.sep {
  opacity: 0.5;
  padding: 0;
}

/* =========================================================
   CurvedLoop marquee band (services list below hero)
   ========================================================= */
.marquee-band {
  padding: clamp(20px, 3.5vw, 44px) 0;
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.curved-loop-jacket {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.curved-loop-svg {
  width: 100%;
  aspect-ratio: 100 / 12;
  overflow: visible;
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6.4vw, 5.4rem);
  font-weight: 700;
  fill: var(--blue);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/* =========================================================
   Services grid (hub)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-column: span 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: #fff;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease),
    border-color 220ms var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.09);
  border-color: transparent;
}

.service-card .num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.service-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.service-card .tags i {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.service-card .go {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}

.service-card .go .arrow {
  transition: transform 180ms var(--ease);
}

.service-card:hover .go .arrow {
  transform: translateX(4px);
}

/* featured sprint card spans full width, blue */
.service-card.featured {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--night);
  border-color: transparent;
  color: #fff;
}

.service-card.featured .fx {
  max-width: 60ch;
}

.service-card.featured .num {
  color: var(--lime);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 58ch;
}

.service-card.featured .go {
  color: var(--lime);
}

/* =========================================================
   Stat band (blue)
   ========================================================= */
.stat-band {
  background: var(--blue);
  color: #fff;
  padding: clamp(56px, 7vw, 88px) 0;
}

.stat-band .eyebrow {
  color: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  border-top: 2px solid rgba(255, 255, 255, 0.28);
  padding-top: 20px;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.5;
}

/* =========================================================
   Work grid
   ========================================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.work-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55));
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

.work-card.tall {
  grid-row: span 2;
  min-height: 540px;
}

.work-card.wide {
  grid-column: span 3;
}

.work-card .wc-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}

.work-card h3 {
  margin-top: 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #fff;
}

.work-card .wc-metric {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

/* gradient backgrounds stand in for imagery */
.bg-blue {
  background: radial-gradient(120% 120% at 20% 10%, #2a9bff 0%, #007de3 45%, #004f9c 100%);
}
.bg-night {
  background: radial-gradient(120% 120% at 80% 0%, #1b2836 0%, #0b0f14 60%);
}
.bg-lime {
  background: radial-gradient(120% 120% at 10% 10%, #d8ff6e 0%, #9ad82f 60%, #4f7d0f 100%);
  color: #16210a;
}
.bg-lime .wc-cat {
  color: var(--blue-ink);
}
.bg-lime h3 {
  color: #16210a;
}
.bg-lime .wc-metric {
  color: rgba(22, 33, 10, 0.75);
}
.bg-lime::after {
  background: none;
}
.bg-violet {
  background: radial-gradient(120% 120% at 80% 10%, #7c6bff 0%, #4b39c4 55%, #241a6b 100%);
}
.bg-ink {
  background: radial-gradient(120% 120% at 20% 0%, #33404f 0%, #10151c 60%);
}

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

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

.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: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

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

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

/* =========================================================
   Studio / team band (dark)
   ========================================================= */
.studio {
  background: var(--night);
  color: #fff;
  padding: clamp(64px, 8vw, 116px) 0;
}

.studio .eyebrow {
  color: #fff;
}

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

.studio h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  color: #fff;
}

.studio p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 52ch;
}

.studio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.people {
  display: grid;
  gap: 16px;
}

.person {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--night-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.person .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  background: var(--blue);
}

.person .avatar.lime {
  background: var(--lime);
  color: #16210a;
}

.person h3 {
  font-size: 20px;
  color: #fff;
}

.person p {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
  max-width: none;
}

.person a.role-link {
  color: var(--lime);
  font-weight: 600;
}

/* =========================================================
   Logo / trust row
   ========================================================= */
.trust {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}

.trust p {
  text-align: center;
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 40px;
}

.trust-row span {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 180ms var(--ease);
}

.trust-row span:hover {
  opacity: 1;
}

/* =========================================================
   Deliverables / feature list (service pages)
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

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

.feature-card .fc-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 18px;
}

.feature-card .fc-mark svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: clamp(19px, 2vw, 23px);
  margin-bottom: 10px;
}

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

/* two-column deliverables list */
.deliver {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.deliver h2 {
  font-size: clamp(30px, 4.2vw, 52px);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  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.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 13px no-repeat;
}

.check-list li b {
  font-weight: 700;
}

.check-list li em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

/* =========================================================
   Breadcrumb (service pages)
   ========================================================= */
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
}

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

.crumb .sep {
  opacity: 0.5;
}

.crumb .here {
  color: var(--blue);
}

/* =========================================================
   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: 62ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* =========================================================
   CTA band + contact form
   ========================================================= */
.cta {
  text-align: center;
}

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

.cta h2 {
  font-size: clamp(32px, 4.8vw, 62px);
  max-width: 20ch;
  margin-inline: auto;
}

.cta .lead {
  max-width: 56ch;
  margin: 18px 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,
.contact-form select {
  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,
.contact-form select: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-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.footer-top .lead {
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: var(--muted);
}

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

.footer-mark {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 17vw, 260px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* TextPressure — interactive variable-font footer wordmark */
.tp-container {
  position: relative;
  width: 100%;
}

.tp-title {
  margin: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 100;
  transform-origin: center top;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.tp-title.tp-flex {
  display: flex;
  justify-content: space-between;
}

.tp-title span {
  display: inline-block;
}

.tp-title.tp-stroke span {
  position: relative;
}

.tp-title.tp-stroke span::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
  z-index: -1;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--tp-stroke-color, #ffffff);
}

.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,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

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

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

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

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1040px) {
  .hero-grid,
  .studio-grid,
  .deliver {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

  .service-card {
    grid-column: span 3;
  }

  .work-card.tall {
    grid-row: auto;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

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

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

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

  .work-card,
  .work-card.wide {
    grid-column: span 1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .services-grid,
  .service-card,
  .service-card.featured,
  .feature-grid,
  .faq,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    grid-column: auto;
  }

  .service-card.featured {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .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 {
    opacity: 1 !important;
    transform: none !important;
  }

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

/* =========================================================
   Stacking sections — each panel pins under the header and the
   next section scrolls up to stack over it. Desktop only; the
   tall card-grids opt out (.no-pin) so they never hide content.
   ========================================================= */
@media (min-width: 1024px) {
  .stack-section {
    position: sticky;
    top: var(--header-h);
  }

  /* plain (white) sections need an opaque fill to cover the panel below */
  .stack-section.section,
  .stack-section.hero,
  .stack-section.cat-strip,
  .stack-section.marquee-band {
    background: var(--white);
  }

  /* tall grids scroll normally but keep the stacked-card look */
  .stack-section.no-pin {
    position: relative;
    top: 0;
  }
}

@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .stack-section {
    position: relative;
    top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}
