:root {
  --bg: #eef2f7;
  --paper: rgba(255, 255, 255, 0.74);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --ink: #102033;
  --muted: #607286;
  --line: rgba(16, 32, 51, 0.1);
  --red: #b11d2a;
  --red-deep: #8c1620;
  --blue: #173f77;
  --blue-deep: #10294f;
  --blue-soft: #d8e4f7;
  --cream: #f8f1ec;
  --shadow: 0 30px 80px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 16px 36px rgba(16, 32, 51, 0.08);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --site-width: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(177, 29, 42, 0.14), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(23, 63, 119, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #e9eef5 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 63, 119, 0.12), transparent 66%);
}

body::after {
  bottom: -10rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 29, 42, 0.1), transparent 68%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image: radial-gradient(rgba(16, 32, 51, 0.25) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

.site-shell {
  position: relative;
  z-index: 2;
  width: min(var(--site-width), calc(100% - 30px));
  margin: 14px auto 32px;
}

.site-header,
.section,
.proof-ribbon,
.site-footer {
  backdrop-filter: blur(22px);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: white;
  background: linear-gradient(145deg, var(--red) 0%, var(--blue) 100%);
  box-shadow: 0 18px 34px rgba(23, 63, 119, 0.22);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.site-nav a,
.hero-text,
.section p,
.section li,
.floating-note p,
.footer-links a,
.site-footer p,
.card-tag,
.plan-sub,
.note-kicker,
.proof-ribbon span {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.header-actions,
.hero-actions,
.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(145deg, var(--blue) 0%, #245dab 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(23, 63, 119, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(23, 63, 119, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: 44px;
  align-items: center;
  padding: 84px 4px 30px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.hero-text {
  max-width: 57ch;
  margin: 26px 0;
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero-stage {
  position: relative;
  min-height: 760px;
}

.hero-stage-frame,
.floating-note,
.manifesto-panel,
.difference-grid article,
.offer-grid article,
.pricing-card,
.industry-card,
.process-grid article,
.intake-form,
.faq-grid article,
.proof-ribbon,
.section,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-stage-frame {
  position: absolute;
  inset: 0 26px 88px 78px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper-strong);
}

.hero-stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 51, 0.03), transparent 28%, transparent 72%, rgba(16, 32, 51, 0.08));
  z-index: 1;
}

.hero-stage-frame img,
.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  width: min(270px, 72%);
  padding: 20px 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.note-kicker,
.card-tag,
.plan-name,
.panel-index,
.featured-badge {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.note-kicker,
.card-tag,
.plan-name {
  margin-bottom: 10px;
}

.floating-note strong,
.proof-ribbon strong,
.process-grid strong,
.site-footer strong {
  display: block;
}

.floating-note strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.floating-note-rating {
  top: 22px;
  left: 0;
}

.floating-note-waste {
  right: 0;
  bottom: 0;
}

.proof-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
  padding: 22px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.proof-ribbon div {
  display: grid;
  gap: 4px;
}

.proof-ribbon strong {
  font-size: 1rem;
}

.section {
  margin-top: 28px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--paper);
}

.section-manifesto {
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(248,241,236,0.82) 100%);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.manifesto-copy p {
  max-width: 66ch;
  line-height: 1.82;
}

.manifesto-panel {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(17,48,95,0.96) 0%, rgba(12,31,55,0.98) 100%);
  color: white;
}

.panel-inner {
  padding: 28px;
}

.panel-index {
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.manifesto-panel h3,
.manifesto-panel li {
  color: white;
}

.manifesto-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.92;
}

.section-heading-wide {
  justify-content: space-between;
  margin-bottom: 24px;
}

.difference-grid,
.offer-grid,
.faq-grid,
.process-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.difference-grid article,
.offer-grid article,
.pricing-card,
.industry-card,
.process-grid article,
.faq-grid article,
.intake-form {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.difference-grid article,
.offer-grid article,
.pricing-card,
.industry-card,
.process-grid article,
.faq-grid article {
  padding: 22px;
}

.section-offer-band {
  background: linear-gradient(135deg, rgba(23,63,119,0.95) 0%, rgba(177,29,42,0.93) 100%);
  color: white;
}

.section-offer-band .eyebrow,
.section-offer-band p,
.section-offer-band li,
.section-offer-band .card-tag {
  color: rgba(255,255,255,0.82);
}

.offer-band-copy {
  margin-bottom: 26px;
}

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

.offer-grid article {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.offer-grid h3,
.offer-grid p {
  color: white;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-name {
  color: var(--red);
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.plan-sub {
  min-height: 46px;
}

.pricing-card ul,
.industry-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.88;
}

.pricing-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(16,41,79,0.98) 0%, rgba(12,31,55,1) 100%);
  color: white;
  transform: translateY(-8px);
}

.pricing-card-featured .plan-name,
.pricing-card-featured .plan-sub,
.pricing-card-featured li {
  color: rgba(255,255,255,0.86);
}

.featured-badge {
  margin-top: 18px;
  color: #ffd7da;
}

.industry-layout {
  display: grid;
  gap: 24px;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.industry-card-image {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}

.section-process {
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(216,228,247,0.66) 100%);
}

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

.process-grid article {
  min-height: 170px;
}

.process-grid strong {
  margin-bottom: 18px;
  font-size: 2rem;
  color: var(--blue);
}

.section-intake {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.intake-copy p {
  max-width: 62ch;
  line-height: 1.82;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.intake-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.field-wide {
  grid-column: 1 / -1;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.12);
  background: #fbfdff;
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 14px;
  font: inherit;
}

.intake-form textarea {
  resize: vertical;
}

.consent-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

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

.site-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1220px) {
  .hero,
  .manifesto-grid,
  .section-intake,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-stage-frame {
    inset: 0 18px 70px 40px;
  }

  .offer-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-nav,
  .header-actions {
    justify-content: center;
  }

  .proof-ribbon,
  .difference-grid,
  .offer-grid,
  .pricing-grid,
  .faq-grid,
  .process-grid,
  .intake-form {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .section,
  .site-footer {
    padding: 24px;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: calc(100% - 14px);
    margin-top: 8px;
  }

  .site-header {
    top: 8px;
    padding: 14px;
    border-radius: 20px;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding-top: 44px;
    gap: 24px;
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-stage-frame {
    inset: 0 8px 54px 14px;
  }

  .floating-note {
    width: min(220px, 84%);
    padding: 14px 14px 16px;
  }

  .section,
  .site-footer,
  .proof-ribbon {
    border-radius: 22px;
  }

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

@media (min-width: 1500px) {
  .site-shell {
    width: min(1480px, calc(100% - 40px));
  }

  .hero {
    gap: 60px;
  }

  .hero-stage {
    min-height: 820px;
  }
}
