/* Penny Wesley LLC — shared styles
   Brand tokens: assets/brand/theme-active.css (SSOT from PW Marketing). Portable static CSS. */

@import url("assets/brand/theme-active.css");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
  --ink: var(--pw-text);
  --ink-soft: var(--pw-bg-elevated);
  --slate: var(--pw-text-muted);
  --muted: var(--pw-text-muted);
  --line: var(--pw-border);
  --paper: var(--pw-surface);
  --white: #ffffff;
  --accent: var(--pw-accent);
  --accent-hover: var(--pw-primary-hover);
  --accent-soft: var(--pw-accent-soft);
  --focus: var(--pw-focus);
  --radius: var(--pw-radius-card);
  --shadow: var(--pw-shadow-card);
  --max: 72rem;
  --font: var(--pw-font-body);
  --font-display: var(--pw-font-display);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 168px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: none !important;
}

.nav-cta:hover {
  background: var(--ink-soft);
  color: var(--white) !important;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(184, 115, 51, 0.12), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.lede {
  font-size: 1.175rem;
  color: var(--slate);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.hero-panel h2 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--slate);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 35%, transparent 36%),
    var(--accent);
  flex-shrink: 0;
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: var(--paper);
  color: var(--ink);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-head h2,
.page-hero h1 + .lede,
.content-block h2 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

.section-head h2,
.content-block h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.section-head p,
.content-block > p {
  margin: 0;
  color: var(--slate);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 28, 46, 0.04);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.callout {
  background: var(--ink);
  color: var(--white);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem;
}

.callout h2,
.callout h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--white);
}

.callout p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.86);
}

.callout .btn-primary {
  background: var(--accent);
}

.note {
  background: var(--accent-soft);
  border: 1px solid #e5d0b5;
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.note strong {
  color: var(--ink);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .lede {
  margin-bottom: 0;
}

/* Content */
.content-block {
  max-width: 46rem;
}

.content-block + .content-block {
  margin-top: 2.5rem;
}

.content-block ul,
.content-block ol {
  color: var(--slate);
  padding-left: 1.25rem;
}

.content-block li + li {
  margin-top: 0.45rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-list .tag {
  display: inline-flex;
  align-items: center;
  height: fit-content;
  margin-top: 0.15rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature-list p {
  margin: 0;
  color: var(--slate);
  font-size: 0.97rem;
}

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c5d0de;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
}

input:hover,
textarea:hover {
  border-color: #9eafc4;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-hint {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.email-plain {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.email-plain a {
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.75rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.55rem;
}

.footer-grid p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-grid h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li + li {
  margin-top: 0.45rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.legal-note {
  color: rgba(255, 255, 255, 0.55);
  max-width: 42rem;
}

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.1rem;
    gap: 0.15rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.25rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    width: 100%;
  }

  .header-inner {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

/* ============================================================
   Homepage marketing — Harbor motion & layout (index.html)
   ============================================================ */

.page-home .site-header {
  background: rgba(247, 244, 239, 0.88);
}

.nav-link-quiet {
  color: var(--slate) !important;
  font-weight: 600 !important;
}

.nav-link-quiet:hover {
  color: var(--ink) !important;
}

/* Hero — first viewport */
.hero-home {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  padding: 4.75rem 0 4.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(27, 79, 114, 0.08), transparent 50%),
    linear-gradient(165deg, #0B1F33 0%, #122A42 42%, #1B4F72 100%);
  border-bottom: none;
  color: var(--pw-text-on-dark);
}

.hero-home .hero-glow {
  pointer-events: none;
  position: absolute;
  inset: -20% 20% auto -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.22), transparent 65%);
  filter: blur(40px);
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero-home .eyebrow {
  color: var(--pw-accent-soft);
}

.hero-home h1 {
  color: var(--pw-text-on-dark);
}

.hero-home .lede {
  color: rgba(247, 244, 239, 0.82);
}

.hero-meta {
  margin: 1.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(247, 244, 239, 0.55);
}

.hero-home .btn-primary {
  background: var(--pw-accent);
  color: var(--pw-bg);
}

.hero-home .btn-primary:hover {
  background: var(--pw-accent-soft);
  color: var(--pw-bg);
}

.hero-home .btn-secondary {
  color: var(--pw-text-on-dark);
  border-color: rgba(247, 244, 239, 0.35);
  background: transparent;
}

.hero-home .btn-secondary:hover {
  background: rgba(247, 244, 239, 0.1);
  color: var(--pw-text-on-dark);
}

/* Floating brief mock */
.hero-visual {
  position: relative;
  z-index: 1;
}

.float-stage {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-orb {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.45), transparent 70%);
  filter: blur(28px);
  animation: orb-pulse 6s ease-in-out infinite;
}

.brief-card {
  position: relative;
  z-index: 2;
  width: min(100%, 22.5rem);
  background: linear-gradient(160deg, #F7F4EF 0%, #E8E2D8 100%);
  color: var(--pw-text);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.15rem;
  box-shadow:
    0 24px 48px rgba(11, 31, 51, 0.35),
    0 0 0 1px rgba(196, 163, 90, 0.35);
  animation: float-y 7s ease-in-out infinite;
}

.brief-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.brief-badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--pw-bg);
  color: var(--pw-accent-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brief-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pw-text-muted);
}

.brief-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: var(--pw-text);
  line-height: 1.25;
}

.brief-sub {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--pw-text-muted);
}

.brief-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.brief-lines li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--pw-text);
}

.brief-lines li span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--pw-accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.25);
}

.pulse-line {
  opacity: 0;
  transform: translateX(8px);
  animation: line-in 0.55s ease forwards;
}

.pulse-line.d2 { animation-delay: 0.35s; }
.pulse-line.d3 { animation-delay: 0.55s; }
.pulse-line.d4 { animation-delay: 0.75s; }
.pulse-line.d5 { animation-delay: 0.95s; }

.brief-foot {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--pw-border);
  font-size: 0.78rem;
  color: var(--pw-text-muted);
}

.brief-foot img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.float-chip {
  position: absolute;
  z-index: 3;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.95);
  color: var(--pw-bg);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(11, 31, 51, 0.2);
  animation: float-y 5.5s ease-in-out infinite;
}

.chip-a {
  top: 12%;
  right: 0;
  animation-delay: -1.5s;
}

.chip-b {
  bottom: 14%;
  left: 0;
  animation-delay: -3s;
}

/* Problem strip */
.problem-strip {
  padding: 3rem 0;
  background: var(--pw-surface);
  border-bottom: 1px solid var(--line);
}

.problem-strip .section-head {
  margin-bottom: 0;
  max-width: 44rem;
}

/* Benefits */
.benefits {
  padding-top: 4.25rem;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-color: var(--line);
}

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 31, 51, 0.1);
  border-color: var(--pw-accent-soft);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: var(--pw-bg);
  color: var(--pw-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* How steps motion accent */
.steps-motion .step {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.steps-motion .step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.08);
}

.steps-motion .step::before {
  background: linear-gradient(135deg, var(--pw-bg), var(--pw-primary));
  box-shadow: 0 0 0 4px rgba(196, 163, 90, 0.2);
}

.section-more {
  margin: 1.75rem 0 0;
  font-weight: 600;
}

.section-more a {
  text-decoration: none;
}

.section-more a:hover {
  text-decoration: underline;
}

/* Brief contents */
.brief-contents {
  padding: 4.25rem 0;
}

.checklist-lg li {
  font-size: 1.02rem;
}

.sample-card {
  align-self: stretch;
}

.sample-card-inner {
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(196, 163, 90, 0.2), transparent 55%),
    var(--pw-bg);
  color: var(--pw-text-on-dark);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.85rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sample-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pw-accent-soft);
}

.sample-card-inner h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pw-text-on-dark);
}

.sample-card-inner p {
  margin: 0;
  color: rgba(247, 244, 239, 0.8);
  flex: 1;
}

.sample-card-inner .btn-secondary {
  align-self: flex-start;
  margin-top: 0.5rem;
  color: var(--pw-text-on-dark);
  border-color: rgba(247, 244, 239, 0.35);
}

.sample-card-inner .btn-secondary:hover {
  background: rgba(247, 244, 239, 0.1);
  color: var(--pw-text-on-dark);
}

/* Soft social proof */
.proof-band {
  padding: 3.5rem 0;
  background: var(--pw-surface);
  border-block: 1px solid var(--line);
  text-align: center;
}

.proof-band .section-head,
.proof-band h2 {
  margin-inline: auto;
}

.proof-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 0.35rem 0 0.75rem;
  letter-spacing: -0.015em;
}

.proof-lede {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  color: var(--slate);
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.proof-pills span {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

/* Final CTA */
.cta-band {
  padding: 3.5rem 0 4.5rem;
}

.cta-panel {
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(196, 163, 90, 0.18), transparent 55%),
    linear-gradient(135deg, #0B1F33, #1B4F72);
  color: var(--pw-text-on-dark);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.5rem 2rem;
  text-align: center;
}

.cta-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--pw-text-on-dark);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.cta-panel p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: rgba(247, 244, 239, 0.82);
}

.cta-panel a:not(.btn) {
  color: var(--pw-accent-soft);
}

.cta-panel .btn-row {
  justify-content: center;
}

.btn-on-dark {
  background: var(--pw-accent) !important;
  color: var(--pw-bg) !important;
}

.btn-on-dark:hover {
  background: var(--pw-accent-soft) !important;
  color: var(--pw-bg) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--pw-text-on-dark) !important;
  border-color: rgba(247, 244, 239, 0.35);
}

.btn-ghost:hover {
  background: rgba(247, 244, 239, 0.1);
  color: var(--pw-text-on-dark) !important;
}

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

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

/* Reveal / stagger */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Keyframes */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes glow-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(6%, 8%); }
}

@keyframes line-in {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-home {
    min-height: 0;
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }

  .chip-a,
  .chip-b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-glow,
  .glow-orb,
  .brief-card,
  .float-chip,
  .pulse-line {
    animation: none !important;
  }

  .pulse-line {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card-lift,
  .steps-motion .step {
    transition: none;
  }

  .card-lift:hover,
  .steps-motion .step:hover {
    transform: none;
  }
}
