/* ---------- GLOBAL LIGHT BEAM ---------- */
.light-beam {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.light-beam::before {
  content: '';
  position: absolute;
  left: -20%;
  right: -20%;
  top: -20%;
  bottom: -20%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 244, 220, 0.08) 42%,
    rgba(255, 248, 230, 0.14) 50%,
    rgba(255, 244, 220, 0.08) 58%,
    transparent 70%,
    transparent 100%
  );
  mix-blend-mode: screen;
}

/* ---------- HERO — ported verbatim from css/workshops.css (.wh)
   so the homepage hero keeps the exact larger workshops typography.
   Keep in sync with the .wh rules in workshops.css. ---------- */
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.wh h1 { font-family: 'Plus Jakarta Sans', sans-serif; }
.wh {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: var(--navy-deepest);
  color: #fff;
  overflow: hidden;
}
.wh-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 72% center;
  z-index: 0;
  transform: scale(1.04);
}
.wh-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(85, 193, 255, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 68%, rgba(188, 0, 255, 0.03) 0%, transparent 58%),
    linear-gradient(90deg, rgba(10, 18, 42, 0.92) 0%, rgba(15, 26, 56, 0.72) 42%, rgba(15, 26, 56, 0.22) 72%, rgba(15, 26, 56, 0.1) 100%),
    linear-gradient(180deg, rgba(15, 26, 56, 0.34) 0%, rgba(10, 18, 42, 0.48) 100%);
}
.wh::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--lime); z-index: 2;
}
.wh-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 56px;
}
.wh-col { max-width: 820px; padding: 160px 0; }
.wh h1 {
  color: #fff;
  font-size: clamp(3rem, 7.4vw, 6.6rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.wh h1 .accent { color: var(--lime); }
.wh-lede {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.84);
  max-width: 60ch;
  line-height: 1.55;
  margin-bottom: 44px;
}
.wh-ctas { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.wh .btn { width: auto; }
/* Hero outline CTA: purple to match the primary button, instead of dark navy */
.wh .btn-outline { color: var(--magenta); border-color: var(--magenta); }
.wh .btn-outline:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); }
@media (max-width: 1000px) {
  .wh-inner { padding: 0 28px; }
}
@media (max-width: 700px) {
  .wh { min-height: 88vh; align-items: flex-start; }
  /* Push the text below the face: start the headline around mid-photo */
  .wh-col { padding: 50vh 0 90px; }
  .wh-lede { line-height: 1.4; }
  .wh-photo { background-position: 64% center; }
  .wh-tint {
    background:
      radial-gradient(ellipse at 25% 30%, rgba(85, 193, 255, 0.08) 0%, transparent 55%),
      linear-gradient(180deg, rgba(10, 18, 42, 0.78) 0%, rgba(10, 18, 42, 0.62) 58%, rgba(10, 18, 42, 0.46) 100%);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0F1A38;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 56px;
  overflow: hidden;
  color: #fff;
}
.hero .section-photo { background-size: auto 118%; background-position: center 72%; }
.hero .section-tint {
  background: linear-gradient(180deg, rgba(15, 26, 56, 0.72) 0%, rgba(14, 23, 51, 0.88) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(85, 193, 255, 0.06) 44%,
    rgba(200, 230, 255, 0.22) 50%,
    rgba(85, 193, 255, 0.06) 56%,
    transparent 62%,
    transparent 100%
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 30%; left: 10%;
  width: 50%; height: 55%;
  background: radial-gradient(ellipse at center, rgba(85, 193, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-eyebrow { margin-bottom: 36px; color: var(--sky); }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 0 1px rgba(85, 193, 255, 0.15), 0 2px 28px rgba(255, 248, 230, 0.08);
}
.hero h1 .line { display: block; }
.hero h1 .accent { color: var(--lime); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-secondary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.hero-secondary:hover { border-bottom-color: #fff; }
.hero-trust {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ---------- PROBLEM ---------- */
.problem {
  background: var(--navy);
  color: #fff;
  padding: 140px 0;
}
.problem .section-tint {
  background: linear-gradient(180deg, rgba(14, 23, 51, 0.85) 0%, rgba(37, 60, 120, 0.88) 100%);
}
.problem .beam::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    115deg,
    transparent 0%, transparent 30%,
    rgba(85, 193, 255, 0.08) 40%,
    rgba(200, 230, 255, 0.28) 50%,
    rgba(85, 193, 255, 0.08) 60%,
    transparent 70%, transparent 100%
  );
}
.problem-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}
.problem h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 48px;
  color: #fff;
}
.problem p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  text-wrap: pretty;
}
.problem .pivot {
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  font-weight: 500;
  font-family: 'Prompt', sans-serif;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

/* ---------- VALUE CHAIN ---------- */
.value {
  background: var(--navy);
  color: #fff;
  padding: 140px 0;
}
.value .section-tint {
  background: linear-gradient(180deg, rgba(37, 60, 120, 0.84) 0%, rgba(74, 107, 184, 0.82) 100%);
}
.value .beam::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    115deg,
    transparent 0%, transparent 25%,
    rgba(200, 230, 255, 0.12) 38%,
    rgba(220, 240, 255, 0.35) 50%,
    rgba(200, 230, 255, 0.12) 62%,
    transparent 75%, transparent 100%
  );
}
.value h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 96px;
  color: #fff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  position: relative;
  padding: 40px 36px 44px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 50px -25px rgba(15, 26, 56, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(15, 26, 56, 0.6);
}
.step-emphasis { border-left: 4px solid var(--lime); }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 8rem;
  color: var(--lime);
  line-height: 0.85;
  display: block;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}
.step-meta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 36px;
  font-weight: 600;
}
.step h3 {
  font-size: 1.55rem;
  margin-bottom: 20px;
  margin-top: auto;
  color: var(--navy);
}
.step p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

/* ---------- SERVICES ---------- */
.services {
  background: #8BAEDD;
  padding: 140px 0;
}
.services .section-tint {
  background: linear-gradient(180deg, rgba(139, 174, 221, 0.82) 0%, rgba(195, 217, 242, 0.82) 100%);
}
.services .beam::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    115deg,
    transparent 0%, transparent 18%,
    rgba(235, 245, 255, 0.3) 35%,
    rgba(250, 253, 255, 0.55) 50%,
    rgba(235, 245, 255, 0.3) 65%,
    transparent 82%, transparent 100%
  );
}
.services h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}
.services-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 96px;
  font-size: 1.05rem;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  background-color: rgba(255,255,255,0.6);
}
.service {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background 0.2s;
}
.service:hover { background: #fff; }
.service-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--magenta);
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 28px;
}
.service h3 { font-size: 1.55rem; margin-bottom: 20px; line-height: 1.15; }
.service p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 28px;
  flex-grow: 1;
}
.service-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: gap 0.2s;
}
.service-link:hover { gap: 14px; }

/* ---------- PROOF ---------- */
.proof {
  background: #E6F0FA;
  padding: 140px 0;
}
.proof .section-tint {
  background: linear-gradient(180deg, rgba(230, 240, 250, 0.86) 0%, rgba(247, 251, 255, 0.9) 100%);
}
.proof .beam::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    115deg,
    transparent 0%, transparent 10%,
    rgba(235, 245, 255, 0.4) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(235, 245, 255, 0.4) 70%,
    transparent 90%, transparent 100%
  );
}
.proof h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  margin: 0 auto 96px;
}
.stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 96px;
}
.story {
  background: #fff;
  padding: 56px 48px;
  border: 1px solid var(--hairline);
  position: relative;
}
.story-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 700;
  margin-bottom: 28px;
}
.story h3 { font-size: 2rem; margin-bottom: 24px; line-height: 1.15; }
.story p { font-size: 0.98rem; line-height: 1.75; color: #555; }
.story-bar {
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 3px;
  background: var(--lime);
}
.proof-tagline {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

/* ---------- WORKSHOPS ---------- */
.workshops {
  background: #fff;
  padding: 140px 0;
}
.workshops .section-tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.workshops::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
  opacity: 0.6;
  z-index: 3;
}
.workshops::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(85, 193, 255, 0.08), transparent);
  pointer-events: none;
  z-index: 1;
}
.workshops-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.workshops-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
  max-width: 14ch;
}
.workshops-left p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 40px;
  max-width: 52ch;
}

/* ---------- HOME RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero { padding: 120px 0 100px; }
  .hero-inner { padding: 0 24px; }
  .hero-ctas { gap: 16px; }
  .problem, .value, .services, .proof, .workshops { padding: 96px 0; }
  .problem-inner { padding: 0 24px; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step { min-height: 280px; }
  .step-num { font-size: 6rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service { padding: 40px 28px; min-height: auto; }
  .stories { grid-template-columns: 1fr; gap: 24px; }
  .story { padding: 40px 28px; }
  .workshops-grid { grid-template-columns: 1fr; gap: 48px; }
  .newsletter { padding: 32px 24px; }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--navy-deepest);
  padding: 22px 0;
  text-align: center;
  position: relative;
  z-index: 5;
}
.trust-strip p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  padding: 0 24px;
}

/* ---------- CLIENT STORIES (additions) ---------- */
.proof-sub {
  text-align: center;
  max-width: 600px;
  margin: -64px auto 80px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.story-flagship { border-top: 3px solid var(--lime); }
.outcomes-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-bottom: 72px;
}
.outcome { background: #fff; padding: 32px 28px; }
.outcome strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.outcome span { font-size: 0.92rem; color: #555; line-height: 1.6; }
.proof-testimonial {
  text-align: center;
  font-family: 'Prompt', sans-serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.35;
}
.proof-testimonial cite {
  display: block;
  font-style: normal;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .proof-sub { margin: -40px auto 56px; }
  .outcomes-strip { grid-template-columns: 1fr; }
}

/* ===================================================================
   HOMEPAGE REDESIGN (2026-06) — light statement, image rows, teach
   callout, proof opener. Reuses theme tokens + .container + .reveal.
   =================================================================== */

/* italic Prompt kicker */
.rd-kicker {
  font-family: 'Prompt', sans-serif; font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--magenta);
  display: block; margin-bottom: 16px;
}

/* C — light statement ("The work you love is getting buried") */
.rd-statement { background: var(--bg-warm); padding: 150px 0 140px; }
.rd-statement h2 {
  font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.02;
  letter-spacing: -0.04em; color: var(--navy); max-width: 18ch;
}
.rd-statement h2 .accent { color: var(--magenta); }
.rd-statement .rd-lede {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 300;
  color: #4a4a4a; max-width: 60ch; line-height: 1.6; margin-top: 32px;
}
.rd-statement .rd-pivot {
  font-family: 'Prompt', sans-serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--navy);
  margin-top: 44px; padding-top: 30px;
  border-top: 1px solid var(--hairline-strong); max-width: 34ch;
}

/* C — section opener ("What we build for you") */
.rd-opener { padding: 120px 0 56px; }
.rd-opener h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.04;
  letter-spacing: -0.035em; color: var(--navy); max-width: 18ch;
}
.rd-opener h2 .accent { color: var(--magenta); }
.rd-opener .rd-lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 300;
  color: var(--navy-dark); max-width: 56ch; line-height: 1.6; margin-top: 26px;
}

/* A — alternating image rows */
.rd-ways { padding: 24px 0 130px; }
.rd-way {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px;
  align-items: center; margin-bottom: 88px;
}
.rd-way:last-of-type { margin-bottom: 0; }
.rd-way--reverse .rd-way-media { order: -1; }
.rd-way-label {
  font-family: 'Prompt', sans-serif; font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--magenta);
  display: block; margin-bottom: 16px;
}
.rd-way h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 18px; color: var(--navy);
}
.rd-way p { font-size: 1.05rem; line-height: 1.75; color: #555; max-width: 46ch; margin-bottom: 22px; }
.rd-way-link {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.92rem;
  color: var(--navy); display: inline-flex; gap: 8px; align-items: center;
  border-bottom: 1px solid var(--navy); padding-bottom: 2px; transition: gap 0.2s;
}
.rd-way-link:hover { gap: 14px; }
.rd-way-media {
  aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  border: 1px solid var(--hairline);
}

/* teach callout — closes the section */
.rd-teach {
  margin-top: 80px; background: #fff;
  border: 1px solid var(--hairline); border-left: 4px solid var(--lime);
  padding: 48px 52px; box-shadow: 0 24px 60px -40px rgba(15,26,56,0.45);
}
.rd-teach .rd-kicker { margin-bottom: 14px; }
.rd-teach h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 18px; color: var(--navy);
}
.rd-teach p { font-size: 1.12rem; line-height: 1.7; color: #555; max-width: 66ch; }
.rd-teach a {
  color: var(--navy); font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
  border-bottom: 1px solid var(--navy); padding-bottom: 2px; white-space: nowrap;
}

/* proof opener header (left-aligned; overrides centered .proof h2) */
.proof .rd-proofhead { text-align: left; max-width: 820px; margin: 0 0 72px; }
.proof .rd-proofhead h2 {
  text-align: left; font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: none;
  margin: 0; color: var(--navy); letter-spacing: -0.035em; line-height: 1.04;
}
.proof .rd-proofhead h2 .accent { color: var(--magenta); }
.proof .rd-proofhead .rd-lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 300;
  color: var(--navy-dark); max-width: 56ch; line-height: 1.6; margin-top: 24px;
}

/* redesign responsive */
@media (max-width: 900px) {
  .rd-statement { padding: 96px 0 80px; }
  .rd-opener { padding: 80px 0 36px; }
  .rd-ways { padding: 16px 0 90px; }
  .rd-way { grid-template-columns: 1fr; gap: 26px; margin-bottom: 56px; }
  .rd-way--reverse .rd-way-media { order: 0; }
  .rd-teach { margin-top: 56px; padding: 36px 28px; }
  .proof .rd-proofhead { margin-bottom: 48px; }
}

/* --- promise bridge, looks bullets, notes --- */
.rd-promise { background: var(--lime); padding: 100px 0; text-align: center; }
.rd-promise p {
  max-width: 900px; margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  letter-spacing: -0.015em; font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  line-height: 1.4; color: var(--navy);
}
.rd-promise p .accent { color: var(--navy); }

.rd-looks-label {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--navy);
  font-weight: 700; margin-bottom: 14px;
}
.rd-looks { list-style: none; margin: 0 0 26px; padding: 0; max-width: 46ch; }
.rd-looks li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  font-size: 1rem; line-height: 1.55; color: var(--navy);
}
.rd-looks li::before {
  content: ''; position: absolute; left: 2px; top: 7px;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--magenta); border-bottom: 2.5px solid var(--magenta);
  transform: rotate(-45deg);
}

.rd-notes { background: var(--bg-warm); padding: 100px 0; }
.rd-notes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1000px; margin: 0 auto;
}
.rd-note h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); color: var(--navy);
  margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.1;
}
.rd-note p { font-size: 1.05rem; line-height: 1.75; color: #555; }

/* "Ready when you are" final CTA — homepage only (home.css loads on front page) */
.final-cta { padding-top: 160px; padding-bottom: 160px; }

@media (max-width: 900px) {
  .rd-promise { padding: 72px 0; }
  .rd-notes { padding: 72px 0; }
  .rd-notes-grid { grid-template-columns: 1fr; gap: 40px; }
  .final-cta { padding-top: 96px; padding-bottom: 96px; }
}

/* ---------- WORK WITH US — strategy-call form (dark section) ---------- */
.work-form {
  max-width: 560px;
  margin: 36px auto 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.work-form-row { display: flex; gap: 14px; }
.work-form-row input { flex: 1; min-width: 0; }
.work-form input,
.work-form textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #fff;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.work-form textarea { resize: vertical; line-height: 1.6; }
.work-form input::placeholder,
.work-form textarea::placeholder { color: rgba(255, 255, 255, 0.55); }
.work-form input:focus,
.work-form textarea:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.12);
}
.work-form .btn { width: auto; align-self: flex-start; margin-top: 6px; }
.work-form-hp {
  position: absolute !important;
  left: -9999px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.work-form-status { font-size: 0.95rem; margin: 4px 0 0; min-height: 1.2em; }
.work-form-status.is-ok { color: var(--lime); }
.work-form-status.is-error { color: #ffb4b4; }
@media (max-width: 700px) {
  .work-form-row { flex-direction: column; }
  .work-form .btn { width: 100%; justify-content: center; align-self: stretch; }
}
