:root {
  --cream: #F2F0EA;
  --brown-dark: #07162D;
  --gold-light: #D9D8D2;
  --rose-gold: #C8C5BD;
  --soft-shadow: #8A94A3;
  --brown-medium: #AEB4BE;
  --warm-gold: #7A8493;
  --brown-muted: #526073;
  --bg: var(--cream);
  --bg-2: #E4E2DC;
  --card: rgba(242, 240, 234, 0.88);
  --muted-card: #D9D8D2;
  --text: var(--brown-dark);
  --muted: var(--brown-muted);
  --gold: var(--warm-gold);
  --gold-dark: var(--brown-medium);
  --gold-soft: var(--warm-gold);
  --title: #132947;
  --border: rgba(7, 22, 45, 0.16);
  --max: 1114px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(174, 180, 190, 0.32), transparent 24rem),
    radial-gradient(circle at 12% 44%, rgba(7, 22, 45, 0.08), transparent 22rem),
    var(--bg);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.top-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  padding: 13px 18px;
  color: var(--cream);
  background: linear-gradient(90deg, #07162D, #132947);
  box-shadow: 0 12px 28px rgba(7, 22, 45, 0.28);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: fixed;
  top: 48px;
  left: 0;
  z-index: 35;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(242, 240, 234, 0.95), rgba(242, 240, 234, 0.42));
  backdrop-filter: blur(10px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(242, 240, 234, 0.95);
  box-shadow: 0 16px 36px rgba(7, 22, 45, 0.16);
}

.brand,
.header-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.brand {
  gap: 10px;
  text-transform: uppercase;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.brand-wordmark {
  width: 190px;
  height: 22px;
  object-fit: contain;
  object-position: center;
}

.header-link {
  border: 1px solid rgba(7, 22, 45, 0.18);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--brown-dark);
  background: rgba(217, 216, 210, 0.64);
  font-size: 0.84rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 112px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 240, 234, 0.98) 0%, rgba(242, 240, 234, 0.88) 46%, rgba(242, 240, 234, 0.26) 100%),
    radial-gradient(circle at 78% 42%, rgba(174, 180, 190, 0.32), transparent 24rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 36px), var(--max));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  align-items: center;
  gap: 34px;
  padding: 48px 0 56px;
}

.hero-copy {
  max-width: 610px;
}

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--warm-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 10vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  color: var(--brown-dark);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 6.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  color: var(--title);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 590px;
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.cta-stack {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-primary {
  color: var(--cream);
  background: linear-gradient(90deg, var(--brown-dark), var(--brown-muted));
  box-shadow: 0 16px 42px rgba(7, 22, 45, 0.24);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-primary::after {
  position: absolute;
  inset: -42% auto -42% -55%;
  width: 46%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(242, 240, 234, 0.42), transparent);
  transform: skewX(-20deg);
  animation: sheen 4s ease-in-out infinite;
}

.btn:hover,
.btn:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  outline: none;
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.scarcity {
  color: var(--warm-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-person {
  position: relative;
  align-self: end;
}

.hero-person::before {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: 72%;
  height: 58%;
  border-radius: 50%;
  background: rgba(7, 22, 45, 0.14);
  filter: blur(42px);
  content: "";
}

.hero-person img {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(7, 22, 45, 0.18);
  box-shadow: 0 30px 90px rgba(7, 22, 45, 0.22);
}

.section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 78px 0;
}

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

.section-head p {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.06rem;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.testimonial-track,
.pillar-grid,
.audience-grid,
.process-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

.testimonial-card,
.dark-card,
.step,
.authority-card {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(7, 22, 45, 0.1);
}

.testimonial-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  padding: 18px;
}

.avatar {
  display: grid;
  width: 100%;
  height: 84px;
  place-items: center;
  margin: -18px -18px 18px;
  width: calc(100% + 36px);
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 38%, rgba(217, 216, 210, 0.58), transparent 16%),
    linear-gradient(145deg, var(--brown-medium), var(--brown-dark));
  font-size: 2rem;
  font-weight: 900;
}

.testimonial-card p {
  min-height: 132px;
  margin-bottom: 16px;
  color: var(--brown-dark);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dark-card {
  min-height: 140px;
  border-radius: 12px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.dark-card:hover {
  border-color: rgba(82, 96, 115, 0.44);
  transform: translateY(-4px);
}

.number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--warm-gold);
  font-weight: 900;
}

.products {
  padding-top: 40px;
}

.services {
  padding-top: 42px;
}

.service-grid .dark-card {
  display: flex;
  min-height: 112px;
  align-items: center;
}

.service-grid h3 {
  margin-bottom: 0;
}

.split-offer {
  display: grid;
  gap: 28px;
  align-items: center;
}

.product-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(217, 216, 210, 0.46), rgba(242, 240, 234, 0.88)),
    var(--card);
  box-shadow: 0 18px 48px rgba(7, 22, 45, 0.12);
}

.product-card.featured {
  display: grid;
  gap: 28px;
  margin-bottom: 18px;
  border-color: rgba(82, 96, 115, 0.34);
  background:
    radial-gradient(circle at 88% 12%, rgba(174, 180, 190, 0.24), transparent 18rem),
    linear-gradient(145deg, rgba(242, 240, 234, 0.96), rgba(217, 216, 210, 0.7));
}

.product-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 5vw, 2.7rem);
}

.product-card h3 {
  color: var(--brown-dark);
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
}

.product-content p,
.product-card p {
  width: 100%;
}

.product-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(7, 22, 45, 0.16);
  border-radius: 14px;
  padding: 22px;
  background: rgba(242, 240, 234, 0.68);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--brown-dark);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--warm-gold);
  content: "✓";
  font-weight: 900;
}

.deliverables {
  display: grid;
  gap: 26px;
  align-items: start;
}

.deliverables-copy {
  max-width: 640px;
}

.deliverables-list {
  display: grid;
  gap: 12px;
}

.deliverables-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 17px;
  color: var(--brown-dark);
  background: var(--card);
  font-weight: 650;
}

.deliverables-list span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.authority-card {
  display: grid;
  gap: 26px;
  align-items: center;
  border-radius: 14px;
  padding: 22px;
}

.authority-photo {
  overflow: hidden;
  border-radius: 12px;
  background: var(--muted-card);
}

.authority-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.step {
  min-height: 190px;
  border-radius: 12px;
  padding: 24px;
}

.step > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--cream);
  background: linear-gradient(90deg, var(--brown-dark), var(--brown-muted));
  font-weight: 900;
}

.final-cta {
  width: min(calc(100% - 36px), var(--max));
  margin: 40px auto 0;
  border: 1px solid rgba(7, 22, 45, 0.18);
  border-radius: 16px;
  padding: 42px 22px;
  background:
    linear-gradient(90deg, rgba(174, 180, 190, 0.28), transparent),
    var(--card);
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--brown-muted);
  font-size: 0.82rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sheen {
  0%,
  42% {
    left: -55%;
  }
  58%,
  100% {
    left: 118%;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 16px 42px rgba(7, 22, 45, 0.24);
  }
  50% {
    box-shadow: 0 20px 58px rgba(7, 22, 45, 0.34);
  }
}

@media (min-width: 760px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  }

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

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

  .deliverables {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }

  .authority-card {
    grid-template-columns: 310px minmax(0, 1fr);
    padding: 32px;
  }

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

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

  .product-card.featured {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    padding: 34px;
  }

  .split-offer {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  }

  .final-cta {
    padding: 62px;
  }
}

@media (min-width: 1100px) {
  .testimonial-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .top-ribbon {
    padding: 10px 14px;
    font-size: 0.74rem;
  }

  .site-header {
    top: 40px;
    padding: 14px 18px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark {
    width: 142px;
    height: 18px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(242, 240, 234, 0.99) 0%, rgba(242, 240, 234, 0.88) 58%, rgba(242, 240, 234, 0.26) 100%),
      radial-gradient(circle at 50% 76%, rgba(174, 180, 190, 0.28), transparent 18rem);
  }

  .btn {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-stack {
    justify-items: stretch;
  }

  .scarcity {
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

  .testimonial-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
