/* DayOne — marketing site styles
   Brand: Consistency beats motivation.
   Self-contained, no build step (served straight from /public). */

:root {
  --sand: #e5c07b;
  --sand-soft: #f0d9a8;
  --sand-deep: #d8ad5f;
  --cream: #faf7f2;
  --cream-2: #f4eee3;
  --cream-3: #efe7d8;
  --charcoal: #1f2937;
  --charcoal-2: #2b3645;
  --muted: #6b7280;
  --muted-soft: #9aa1ac;
  --forest: #3e7b52;
  --forest-soft: #e4efe7;
  --bronze: #a67c52;
  --bronze-deep: #8c6539;
  --white: #ffffff;

  --line: rgba(31, 41, 55, 0.09);
  --line-strong: rgba(31, 41, 55, 0.14);

  --shadow-sm: 0 1px 2px rgba(31, 41, 55, 0.05);
  --shadow: 0 14px 34px -16px rgba(31, 41, 55, 0.22);
  --shadow-lg: 0 34px 70px -28px rgba(31, 41, 55, 0.34);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1160px;

  --font: "Inter", -apple-system, "SF Pro Display", BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--charcoal);
}

p { margin: 0; }

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

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

::selection { background: var(--sand-soft); color: var(--charcoal); }

/* ---------- layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--sand-deep);
}

.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 18px;
}
.section-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: #12181f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sand {
  background: var(--sand);
  color: var(--charcoal);
  box-shadow: 0 14px 30px -14px rgba(214, 173, 95, 0.85);
}
.btn--sand:hover {
  background: var(--sand-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--charcoal); background: rgba(31, 41, 55, 0.03); }

.btn--light {
  background: var(--cream);
  color: var(--charcoal);
}
.btn--light:hover { background: #fff; transform: translateY(-2px); }

/* ---------- store badges ---------- */

.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px 11px 16px;
  border-radius: 14px;
  background: var(--charcoal);
  color: var(--cream);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow);
}
.store:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store svg { width: 22px; height: 22px; flex: none; }
.store span { display: block; }
.store .store__top { font-size: 10.5px; opacity: 0.72; letter-spacing: 0.04em; }
.store .store__main { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.78;
  transition: opacity 0.18s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand__name b { color: var(--bronze); font-weight: 700; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 20px; height: 20px; }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; padding-top: 56px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(229, 192, 123, 0.34), transparent 60%),
    radial-gradient(820px 480px at 6% 18%, rgba(166, 124, 82, 0.10), transparent 58%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 100px;
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  margin-top: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--bronze), var(--sand-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin-top: 24px;
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14.5px;
}
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-soft); }
.stars { color: var(--sand-deep); letter-spacing: 2px; }

/* phone mockup */
.hero__visual { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 318px;
  border-radius: 44px;
  background: linear-gradient(160deg, #20283340, transparent), var(--charcoal);
  padding: 13px;
  box-shadow: var(--shadow-lg);
}
.phone--sm { width: 290px; }
.phone__screen {
  position: relative;
  border-radius: 33px;
  background: var(--cream);
  overflow: hidden;
  padding: 26px 20px 24px;
  min-height: 624px;
}
/* Real app screenshot dropped straight into the frame (it carries its own
   status bar, so no CSS notch). */
/* height:auto is required — without it the img's width/height attributes are
   taken as a literal pixel height, stretching the screenshot vertically. */
.phone__shot { display: block; width: 100%; height: auto; border-radius: 33px; }
.app__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.app__date { font-size: 13px; color: var(--muted); font-weight: 500; }
.app__streak {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 11px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.app__greeting { font-size: 14px; color: var(--muted); }
.app__title { font-size: 25px; font-weight: 800; letter-spacing: -0.03em; margin-top: 2px; }

.app__card {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.app__card-top { display: flex; align-items: center; justify-content: space-between; }
.app__tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bronze);
  background: var(--cream-2);
  padding: 5px 10px; border-radius: 8px;
}
.app__card h3 { font-size: 20px; margin-top: 14px; }
.app__stats { display: flex; gap: 8px; margin-top: 14px; }
.app__chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--charcoal);
  background: var(--cream-2);
  padding: 7px 11px; border-radius: 999px;
}
.app__chip svg { width: 14px; height: 14px; color: var(--bronze); }

.app__list { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.app__ex {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 4px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.app__ex:first-child { border-top: none; }
.app__ex .num {
  width: 24px; height: 24px; flex: none;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--cream-2);
  font-size: 12px; font-weight: 700; color: var(--bronze);
}
.app__ex .meta { margin-left: auto; color: var(--muted); font-size: 12.5px; font-weight: 500; }

.app__start {
  margin-top: 20px;
  width: 100%;
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-family: inherit;
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.app__start .t { font-size: 11px; font-weight: 500; opacity: 0.6; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: var(--shadow-lg);
  font-size: 13px; font-weight: 600;
}
.float-card .ico {
  width: 30px; height: 30px; flex: none;
  border-radius: 9px;
  display: grid; place-items: center;
}
.float-card small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.float-card--a { top: 96px; left: -34px; }
.float-card--b { bottom: 116px; right: -30px; }

/* ---------- promise band ---------- */

.promise {
  background: var(--charcoal);
  color: var(--cream);
}
.promise .wrap { padding-top: 30px; padding-bottom: 30px; }
.promise__row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.promise__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
}
.promise__item .n {
  width: 26px; height: 26px; flex: none;
  border-radius: 999px;
  border: 1.5px solid rgba(229, 192, 123, 0.55);
  color: var(--sand);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}
.promise__arrow { color: var(--sand); opacity: 0.7; }
.promise__time {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--sand);
  font-weight: 700;
}

/* ---------- the name: hero tag + namesake band + manifesto payoff ---------- */

/* Hero — introduce the wordplay just under the lead. */
.hero__name {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.hero__name em { font-style: italic; color: var(--muted); font-weight: 600; }

/* Mid-page band — reinforce, centered statement. */
.namesake { background: var(--cream-2); }
.namesake__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.namesake .eyebrow { justify-content: center; }
.namesake__line {
  margin-top: 18px;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--charcoal);
}
.namesake__accent {
  background: linear-gradient(120deg, var(--bronze), var(--sand-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.namesake__sub {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.namesake__sub em { font-style: italic; }
.namesake__sub b { color: var(--charcoal); font-weight: 700; }

/* ---------- problem / frustrations ---------- */

.problem { background: var(--cream); }
.quotes {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.quote .mark { font-size: 40px; line-height: 0.6; color: var(--sand-deep); font-weight: 800; }
.quote p { margin-top: 14px; font-size: 16.5px; font-weight: 500; color: var(--charcoal); }

.problem__punch {
  margin-top: 46px;
  text-align: center;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.problem__punch span { color: var(--bronze); }

/* ---------- steps ---------- */

.steps { background: var(--cream-2); }
.steps__grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__n {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--bronze);
}
.step__icon {
  margin-top: 18px;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--cream-2);
  color: var(--charcoal);
  display: grid; place-items: center;
}
.step__icon svg { width: 26px; height: 26px; }
.step h3 { font-size: 21px; margin-top: 22px; }
.step p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }

/* ---------- pillars ---------- */

.pillars { background: var(--cream); }
.pillar-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.pillar__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--forest-soft);
  color: var(--forest);
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 19px; margin-top: 20px; }
.pillar p { margin-top: 9px; color: var(--muted); font-size: 14.5px; }

/* ---------- solutions ---------- */

.solutions { background: var(--cream-2); }
.sol-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sol {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
}
.sol__icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--bronze);
  display: grid; place-items: center;
}
.sol__icon svg { width: 22px; height: 22px; }
.sol__pain { font-size: 14px; color: var(--muted); font-weight: 500; }
.sol__fix { font-size: 17px; font-weight: 600; margin-top: 5px; letter-spacing: -0.01em; }

/* ---------- transformation ---------- */

.transform { background: var(--cream); }
.transform__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 26px;
}
.tcard {
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}
.tcard--before {
  background: var(--white);
  border: 1px solid var(--line);
}
.tcard--after {
  background: linear-gradient(165deg, #233042, var(--charcoal));
  color: var(--cream);
}
.tcard__label {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.tcard--before .tcard__label { color: var(--muted); }
.tcard--after .tcard__label { color: var(--sand); }
.tcard ul { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.tcard li { display: flex; align-items: center; gap: 13px; font-size: 17px; font-weight: 500; }
.tcard li svg { width: 20px; height: 20px; flex: none; }
.tcard--before li svg { color: var(--muted-soft); }
.tcard--after li svg { color: var(--sand); }
.transform__arrow {
  align-self: center;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--charcoal);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.transform__arrow svg { width: 24px; height: 24px; }

/* ---------- manifesto ---------- */

.manifesto { background: var(--cream-2); }
.manifesto__inner { max-width: 740px; margin: 0 auto; }

.manifesto__eyebrow {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* "They vs. we" cascade — each line steps further right. */
.manifesto__cascade { margin-top: 46px; }
.m-row {
  margin: 9px 0;
  font-size: clamp(20px, 2.6vw, 29px);
  line-height: 1.24;
  letter-spacing: -0.015em;
  padding-left: calc(var(--step, 0) * var(--cascade-step, 34px));
}
.m-row--them { color: var(--muted); font-weight: 500; }
.m-row--us { color: var(--charcoal); font-weight: 700; }
.m-row--final {
  margin-top: 16px;
  color: #c2982f;
  font-weight: 800;
  font-size: clamp(24px, 3.1vw, 35px);
  letter-spacing: -0.02em;
}

.manifesto__rule {
  border: none;
  border-top: 1px solid var(--line-strong);
  margin: 54px 0;
}

.manifesto__quote { position: relative; margin: 0; padding-left: 54px; }
.manifesto__qmark {
  position: absolute;
  left: 0;
  top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  color: #c2982f;
}
.manifesto__quote-lines { display: block; }
.manifesto__quote-lines span {
  display: block;
  font-size: clamp(19px, 2.3vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.manifesto__quote-lines span + span { margin-top: 6px; }

/* Staggered entrance, driven by the section's reveal .in state. */
.manifesto .m-row,
.manifesto__rule,
.manifesto__quote { opacity: 0; transform: translateY(16px); }
.manifesto.in .m-row,
.manifesto.in .manifesto__rule,
.manifesto.in .manifesto__quote {
  animation: manifestoRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 80ms);
}
@keyframes manifestoRise { to { opacity: 1; transform: none; } }

/* ---------- final cta ---------- */

.cta-final { background: var(--cream); }
.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--sand-soft), var(--sand) 55%, var(--sand-deep));
  border-radius: 32px;
  padding: 72px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.35);
  top: -160px; right: -90px;
  filter: blur(8px);
}
.cta-box__inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-box h2 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.cta-box p { margin-top: 16px; font-size: 18px; color: #5a4a2f; font-weight: 500; }
.cta-box .stores { margin-top: 30px; justify-content: center; }
.cta-box__note { margin-top: 18px; font-size: 13.5px; color: #6a5736; font-weight: 500; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.12);
}
.footer__brand .brand__name { color: var(--cream); }
.footer__brand .brand__name b { color: var(--sand); }
.footer__tag { margin-top: 16px; color: rgba(250, 247, 242, 0.62); font-size: 15px; max-width: 300px; }
.footer__col h4 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); }
.footer__col ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(250, 247, 242, 0.72); font-size: 14.5px; transition: color 0.18s ease; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  color: rgba(250, 247, 242, 0.5);
  font-size: 13.5px;
}
.footer__bottom a { color: rgba(250, 247, 242, 0.62); }

/* ---------- workout types ---------- */

.types { background: var(--cream-2); }
.types__layout {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.types__visual { display: flex; justify-content: center; }
.type-list { display: flex; flex-direction: column; gap: 4px; }
.type-row {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.type-row:hover {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.type-row__icon {
  width: 50px; height: 50px; flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, #ecca7e, #c99b4e);
  color: var(--charcoal);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 18px -8px rgba(201, 155, 78, 0.8);
}
.type-row__icon svg { width: 24px; height: 24px; }
.type-row__text h3 { font-size: 18px; }
.type-row__text p { margin-top: 3px; font-size: 14.5px; color: var(--muted); }

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .manifesto .m-row,
  .manifesto__rule,
  .manifesto__quote { opacity: 1; transform: none; animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .hero__visual { margin-top: 22px; }
  /* Decorative badges are anchored to the desktop phone column; once the hero
     stacks they'd overlap the heading, so drop them on narrow screens. */
  .float-card { display: none; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
  }
  .nav__links.open a { padding: 10px 0; font-size: 17px; opacity: 1; }
  .quotes { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .types__layout { grid-template-columns: 1fr; gap: 36px; }
  .types__visual { order: 2; }
  .sol-grid { grid-template-columns: 1fr; }
  .transform__grid { grid-template-columns: 1fr; }
  .transform__arrow { transform: rotate(90deg); margin: 0 auto; }
  .manifesto__cascade { --cascade-step: 15px; }
  .manifesto__qmark { font-size: 46px; }
  .manifesto__quote { padding-left: 40px; }
  .cta-box { padding: 54px 24px; }
}

@media (max-width: 460px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .phone { width: 290px; }
}
