:root {
  --bg: #080604;
  --bg-2: #0f0b07;
  --card: rgba(19, 15, 10, 0.82);
  --card-strong: rgba(28, 22, 14, 0.96);
  --line: rgba(232, 190, 92, 0.18);
  --line-strong: rgba(232, 190, 92, 0.36);
  --text: #fff8ea;
  --muted: #c6bca6;
  --muted-2: #96886f;
  --gold: #e8be5c;
  --gold-2: #f7d884;
  --gold-3: #a66d1d;
  --danger: #ff7676;
  --success: #9df2bd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1160px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 4%, rgba(232, 190, 92, 0.14), transparent 26rem),
    radial-gradient(circle at 84% 10%, rgba(166, 109, 29, 0.14), transparent 24rem),
    linear-gradient(180deg, #080604 0%, #0c0804 42%, #050403 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 190, 92, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 190, 92, 0.048) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, transparent, rgba(0, 0, 0, 0.42) 68%);
  z-index: -2;
}

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

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

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 6.75rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  max-width: 920px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #130c03;
  transform: translateY(-150%);
  z-index: 10000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 6, 4, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-2);
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 30%, rgba(247, 216, 132, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(232, 190, 92, 0.18), rgba(166, 109, 29, 0.06));
  box-shadow: 0 0 34px rgba(232, 190, 92, 0.16);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
}

.brand strong {
  display: block;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand small {
  color: var(--muted-2);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(232, 190, 92, 0.08);
  outline: none;
}

.nav-menu .nav-cta {
  color: #1a1004;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(232, 190, 92, 0.16);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: #1a1004;
  background: linear-gradient(135deg, #ffe8a3, var(--gold));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 110px 0;
  position: relative;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 68px 0 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.78;
}

.orb-one {
  right: 7vw;
  top: 4vh;
  background: radial-gradient(circle, rgba(232, 190, 92, 0.18), transparent 65%);
}

.orb-two {
  left: -160px;
  bottom: 2vh;
  background: radial-gradient(circle, rgba(166, 109, 29, 0.16), transparent 68%);
}

.signal-line {
  position: absolute;
  height: 1px;
  width: 54vw;
  background: linear-gradient(90deg, transparent, rgba(247, 216, 132, 0.38), transparent);
  opacity: 0.56;
  transform: rotate(-12deg);
}

.line-one {
  right: -7vw;
  top: 30%;
}

.line-two {
  right: 8vw;
  top: 47%;
  width: 38vw;
}

.line-three {
  left: -5vw;
  bottom: 22%;
  width: 46vw;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 740px;
  margin-top: 26px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #150d04;
  background: linear-gradient(135deg, #ffe8a3, var(--gold) 55%, #b97822);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 48px rgba(232, 190, 92, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(232, 190, 92, 0.08);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  color: var(--muted);
  padding: 9px 12px;
  border: 1px solid rgba(232, 190, 92, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  font-size: 0.84rem;
  font-weight: 800;
}

.signal-card,
.service-card,
.problem-card,
.process-step,
.package-card,
.pricing-note,
.audit-form,
.contact-card,
.founder-profile,
.founder-values article,
.faq-list details {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow);
}

.signal-card {
  border-radius: 34px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 190, 92, 0.16), transparent 52%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.signal-card > * {
  position: relative;
  z-index: 1;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-2);
}

.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 20px rgba(247, 216, 132, 0.9);
}

.score-ring {
  width: 210px;
  height: 210px;
  margin: 30px auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(8, 6, 4, 0.92) 0 58%, transparent 59%),
    conic-gradient(var(--gold-2) calc(var(--score) * 1%), rgba(232, 190, 92, 0.14) 0);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), 0 0 48px rgba(232, 190, 92, 0.12);
}

.score-ring span {
  font-size: 3.15rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

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

.signal-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(232, 190, 92, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.signal-list strong {
  color: var(--gold-2);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signal-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.goal-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(232, 190, 92, 0.08);
  border: 1px solid rgba(232, 190, 92, 0.14);
}

.goal-box small,
.contact-card span {
  display: block;
  color: var(--gold-2);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.goal-box p {
  font-size: 0.96rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 1.05rem;
}

.cards-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.problem-card,
.process-step,
.package-card,
.pricing-note,
.audit-form,
.faq-list details {
  border-radius: var(--radius);
}

.service-card {
  min-height: 310px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.package-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 190, 92, 0.72), transparent);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border-radius: 15px;
  color: var(--gold-2);
  border: 1px solid rgba(232, 190, 92, 0.2);
  background: rgba(232, 190, 92, 0.07);
  font-weight: 950;
}

.service-card p,
.problem-card p,
.process-step p,
.package-card p {
  margin-top: 16px;
}

.split-section {
  background: linear-gradient(180deg, transparent, rgba(232, 190, 92, 0.035), transparent);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.problem-card {
  padding: 24px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 190, 92, 0.34), transparent);
}

.process-step {
  padding: 30px;
  position: relative;
  background: var(--card-strong);
}

.process-step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: #130c03;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 950;
  box-shadow: 0 0 34px rgba(232, 190, 92, 0.18);
}


/* Founder section */
.founder-section {
  background:
    radial-gradient(circle at 16% 44%, rgba(232, 190, 92, 0.1), transparent 27rem),
    linear-gradient(180deg, transparent, rgba(232, 190, 92, 0.035), transparent);
  overflow: hidden;
}

.founder-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -300px;
  top: 50%;
  border: 1px solid rgba(232, 190, 92, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 72px rgba(232, 190, 92, 0.025),
    0 0 0 144px rgba(232, 190, 92, 0.018);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: center;
}

.founder-profile {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  overflow: hidden;
}

.founder-profile::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 216, 132, 0.8), transparent);
}

.founder-visual {
  position: relative;
  min-height: 390px;
  border-radius: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(247, 216, 132, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(232, 190, 92, 0.1), rgba(6, 4, 2, 0.98) 74%);
  border: 1px solid rgba(232, 190, 92, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.founder-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.02) 0%, rgba(10, 8, 6, 0.14) 55%, rgba(10, 8, 6, 0.46) 100%),
    linear-gradient(135deg, rgba(232, 190, 92, 0.1), transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.founder-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(247, 216, 132, 0.18);
  pointer-events: none;
  z-index: 2;
}

.founder-photo {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center 24%;
  display: block;
}

.founder-photo-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 6, 4, 0.68);
  border: 1px solid rgba(232, 190, 92, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.founder-photo-badge span,
.founder-photo-badge strong {
  display: block;
}

.founder-photo-badge span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-photo-badge strong {
  margin-top: 6px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.founder-identity {
  padding: 25px 10px 20px;
}

.founder-kicker {
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.founder-identity h3 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.founder-identity p:last-child {
  margin-top: 10px;
  font-size: 0.94rem;
}

.founder-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(232, 190, 92, 0.14);
}

.founder-proof div {
  padding: 20px 10px 12px;
}

.founder-proof div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(232, 190, 92, 0.14);
}

.founder-proof strong,
.founder-proof span {
  display: block;
}

.founder-proof strong {
  color: var(--gold-2);
  font-size: 0.95rem;
}

.founder-proof span {
  color: var(--muted-2);
  margin-top: 6px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.founder-copy h2 {
  max-width: 760px;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 790px;
  margin-top: 20px;
}

.founder-copy .founder-lead {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.founder-values {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.founder-values article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: none;
}

.founder-values article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-2);
  background: rgba(232, 190, 92, 0.08);
  border: 1px solid rgba(232, 190, 92, 0.18);
  font-size: 0.75rem;
  font-weight: 950;
}

.founder-values h3 {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.founder-values p {
  margin-top: 6px;
  font-size: 0.91rem;
  line-height: 1.6;
}

.founder-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 30px;
}

.founder-signoff {
  max-width: 320px;
  color: var(--muted-2);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.5;
}

.packages-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 190, 92, 0.08), transparent 42rem),
    transparent;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: rgba(247, 216, 132, 0.5);
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 190, 92, 0.15), transparent 48%),
    var(--card-strong);
  transform: translateY(-12px);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #1a1004;
  background: linear-gradient(135deg, #ffe8a3, var(--gold));
  font-weight: 950;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-head {
  min-height: 160px;
}

.package-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.package-card li {
  color: var(--muted);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  line-height: 1.5;
}

.package-card li::before {
  content: "✓";
  color: var(--gold-2);
  font-weight: 950;
}

.package-link {
  color: var(--gold-2);
  font-weight: 950;
}

.pricing-note {
  margin-top: 18px;
  padding: 28px;
}

.pricing-note p {
  margin-top: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 950;
  font-size: 1.05rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold-2);
  font-size: 1.35rem;
  line-height: 0.8;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-top: 14px;
}

.audit-section {
  padding-bottom: 130px;
}

.audit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-sm);
}

.contact-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.4;
}

.audit-form {
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(232, 190, 92, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

select {
  color-scheme: dark;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(247, 216, 132, 0.7);
  box-shadow: 0 0 0 4px rgba(232, 190, 92, 0.09);
  background: rgba(255, 255, 255, 0.065);
}

input::placeholder,
textarea::placeholder {
  color: rgba(198, 188, 166, 0.55);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  margin-top: 15px;
  font-size: 0.92rem;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.footer-grid p {
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 640ms ease, transform 640ms ease;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 980px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 6, 4, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 16px;
  }

  .hero-grid,
  .split-grid,
  .founder-grid,
  .faq-grid,
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .signal-card {
    max-width: 560px;
  }

  .founder-profile {
    max-width: 560px;
  }

  .cards-three,
  .process-line,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .process-line::before {
    display: none;
  }

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

  .package-head {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 82px 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    min-height: 56px;
  }

  .problem-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    min-height: 320px;
  }

  .founder-photo {
    min-height: 320px;
    object-position: center 18%;
  }

  .founder-photo-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .founder-proof {
    grid-template-columns: 1fr;
  }

  .founder-proof div + div {
    padding-left: 10px;
    border-left: 0;
    border-top: 1px solid rgba(232, 190, 92, 0.14);
  }

  .founder-actions,
  .founder-actions .btn {
    width: 100%;
  }

  .service-card,
  .problem-card,
  .process-step,
  .package-card,
  .pricing-note,
  .audit-form {
    padding: 22px;
  }

  .score-ring {
    width: 180px;
    height: 180px;
  }

  .score-ring span {
    font-size: 2.65rem;
  }
}

/* Hidden spam trap for bots. Real users do not see or use this field. */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
}

.form-status.loading {
  color: #e8d79a;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}


/* Formspree honeypot spam trap. Real users do not see this. */
.honeypot-input {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* Multi-page expansion */
.nav-menu a.active {
  color: var(--gold-2);
  background: rgba(232, 190, 92, 0.08);
}

.service-card-link {
  display: block;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 20% 0%, rgba(232, 190, 92, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  outline: none;
}

.service-explore {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-grid-expanded {
  grid-template-columns: minmax(230px, 1fr) auto auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-2);
  outline: none;
}

.footer-meta {
  text-align: right;
}

.footer-meta p + p {
  margin-top: 3px;
}

.inner-page main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  padding-top: 92px;
  padding-bottom: 96px;
  overflow: hidden;
}

.page-hero-grid,
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 62px;
  align-items: center;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
}

.page-hero-copy .hero-text {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted-2);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--gold-2);
  outline: none;
}

.service-visual-card,
.about-photo-card,
.feature-card,
.comparison-card,
.signal-list-panel,
.leak-grid article,
.principle-card,
.experience-panel,
.quote-panel,
.inner-cta {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow);
}

.service-visual-card {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  overflow: hidden;
}

.service-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232, 190, 92, 0.16), transparent 52%);
  pointer-events: none;
}

.service-visual-card > * {
  position: relative;
  z-index: 1;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.browser-mockup,
.search-mockup {
  margin-top: 24px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(232, 190, 92, 0.16);
  background: rgba(3, 3, 3, 0.56);
}

.browser-dots {
  display: flex;
  gap: 6px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(232, 190, 92, 0.1);
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247, 216, 132, 0.42);
}

.mockup-hero {
  padding: 28px 18px 24px;
  border-radius: 15px;
  margin-top: 14px;
  background: radial-gradient(circle at 70% 20%, rgba(232, 190, 92, 0.14), transparent 36%), rgba(255, 255, 255, 0.026);
}

.mockup-hero span {
  display: block;
  border-radius: 999px;
}

.mockup-kicker { width: 30%; height: 7px; background: rgba(247, 216, 132, 0.58); margin-bottom: 16px; }
.mockup-title { width: 86%; height: 15px; background: rgba(255, 248, 234, 0.82); margin-bottom: 8px; }
.mockup-title.short { width: 62%; }
.mockup-copy { width: 72%; height: 8px; background: rgba(198, 188, 166, 0.4); margin-top: 18px; }
.mockup-button { width: 34%; height: 27px; background: linear-gradient(90deg, var(--gold-2), var(--gold)); margin-top: 22px; }

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 11px;
}

.mockup-cards span {
  height: 66px;
  border: 1px solid rgba(232, 190, 92, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(232, 190, 92, 0.11);
  border-radius: 16px;
  overflow: hidden;
}

.visual-metrics div {
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.visual-metrics div + div {
  border-left: 1px solid rgba(232, 190, 92, 0.11);
}

.visual-metrics strong,
.visual-metrics span {
  display: block;
}

.visual-metrics strong { color: var(--gold-2); font-size: 0.86rem; }
.visual-metrics span { color: var(--muted-2); font-size: 0.7rem; margin-top: 5px; }

.search-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(232, 190, 92, 0.13);
  font-size: 0.82rem;
}

.search-field strong { color: var(--gold-2); font-size: 1.2rem; }

.map-pack {
  position: relative;
  height: 180px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(27deg, transparent 44%, rgba(232, 190, 92, 0.11) 45% 46%, transparent 47%),
    linear-gradient(152deg, transparent 52%, rgba(232, 190, 92, 0.09) 53% 54%, transparent 55%),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    rgba(255,255,255,.025);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  color: #130c03;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 0.72rem;
  font-weight: 950;
  box-shadow: 0 8px 24px rgba(232,190,92,.22);
}
.map-pin::before { content: attr(class); display:none; }
.map-pin { text-indent: 0; }
.map-pin.pin-one { left: 22%; top: 26%; }
.map-pin.pin-two { left: 58%; top: 48%; }
.map-pin.pin-three { left: 74%; top: 18%; }
.map-pin { line-height: 30px; }
.map-pin > * { transform: rotate(45deg); }

.rank-row {
  display: grid;
  grid-template-columns: 28px 1fr 72px;
  gap: 10px;
  align-items: center;
  padding: 11px 4px;
  color: var(--muted);
  font-size: 0.76rem;
}
.rank-row strong { color: var(--gold-2); }
.rank-row i { height: 5px; border-radius: 99px; background: linear-gradient(90deg, var(--gold), rgba(232,190,92,.15)); }

.funnel-visual {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 30px 0 22px;
}

.funnel-stage {
  padding: 14px 18px;
  border: 1px solid rgba(232,190,92,.17);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  text-align: center;
}
.funnel-stage.wide { width: 100%; }
.funnel-stage.medium { width: 78%; }
.funnel-stage.narrow { width: 56%; background: rgba(232,190,92,.1); border-color: rgba(247,216,132,.34); }
.funnel-stage strong, .funnel-stage span { display:block; }
.funnel-stage strong { color: var(--text); }
.funnel-stage span { color: var(--muted-2); margin-top: 5px; font-size:.72rem; }
.funnel-arrow { color: var(--gold-2); font-weight:900; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.principle-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 24px;
}

.feature-card > span,
.principle-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 13px;
  color: var(--gold-2);
  background: rgba(232,190,92,.07);
  border: 1px solid rgba(232,190,92,.17);
  font-size: .75rem;
  font-weight: 950;
}

.feature-card p,
.principle-card p { margin-top: 14px; }

.page-content-grid,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: start;
}

.comparison-stack {
  display: grid;
  gap: 16px;
}

.comparison-card {
  padding: 27px;
  border-radius: 24px;
}

.comparison-card > span {
  color: var(--muted-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.comparison-card h3 { margin-top: 13px; }
.comparison-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); }
.comparison-card li { position: relative; padding-left: 21px; line-height: 1.55; }
.comparison-card li::before { content: "•"; position:absolute; left:0; color: var(--gold-2); }
.muted-card { opacity: .82; }
.gold-card { border-color: var(--line-strong); background: radial-gradient(circle at 100% 0%, rgba(232,190,92,.13), transparent 34%), var(--card-strong); }

.compact-process .process-step { min-height: 285px; }

.signal-list-panel {
  display: grid;
  gap: 1px;
  padding: 10px;
  border-radius: 26px;
}

.signal-list-panel article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 23px 20px;
  border-radius: 18px;
}
.signal-list-panel article + article { border-top: 1px solid rgba(232,190,92,.11); }
.signal-list-panel article > strong { color: var(--gold-2); font-size: .82rem; }
.signal-list-panel p { margin-top: 7px; }

.outcome-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: radial-gradient(circle at 50% 0%, rgba(232,190,92,.13), transparent 55%), var(--card-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.outcome-band span { padding: 28px 20px; color: var(--text); text-align: center; font-weight: 900; }
.outcome-band span + span { border-left: 1px solid var(--line); }

.leak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.leak-grid article { padding: 23px; border-radius: 21px; }
.leak-grid article > span { color: var(--gold-2); font-size: .75rem; font-weight: 950; }
.leak-grid h3 { margin-top: 16px; }
.leak-grid p { margin-top: 10px; font-size: .9rem; }

.inner-cta-section { padding-top: 42px; }
.inner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px;
  border-radius: 30px;
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 12% 40%, rgba(232,190,92,.15), transparent 32%),
    linear-gradient(135deg, rgba(232,190,92,.08), rgba(255,255,255,.018)),
    var(--card-strong);
}
.inner-cta h2 { max-width: 780px; font-size: clamp(2rem, 4vw, 3.5rem); }
.inner-cta .btn { flex: 0 0 auto; }

.about-photo-card {
  position: relative;
  padding: 16px;
  border-radius: 32px;
  overflow: hidden;
}
.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(247,216,132,.17);
  pointer-events: none;
}
.about-photo-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 22px;
}
.about-photo-card > div {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(8,6,4,.74);
  border: 1px solid rgba(232,190,92,.18);
  backdrop-filter: blur(14px);
}
.about-photo-card p { color: var(--gold-2); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing:.11em; }
.about-photo-card strong, .about-photo-card span { display:block; }
.about-photo-card strong { margin-top: 6px; font-size: 1.05rem; }
.about-photo-card span { margin-top: 5px; color: var(--muted-2); font-size: .76rem; }

.longform-copy { max-width: 760px; }
.longform-copy p { font-size: 1.05rem; }
.longform-copy p + p { margin-top: 20px; }

.experience-panel {
  padding: 34px;
  border-radius: 28px;
}
.experience-number {
  display: block;
  margin: 20px 0 8px;
  color: var(--gold-2);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: .8;
  letter-spacing: -.09em;
}
.experience-panel h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.experience-panel > p:last-child { margin-top: 20px; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-section { padding-top: 40px; }
.quote-panel {
  padding: 56px;
  border-radius: 30px;
  text-align: center;
  border-color: var(--line-strong);
  background: radial-gradient(circle at 50% 0%, rgba(232,190,92,.16), transparent 54%), var(--card-strong);
}
.quote-panel p { max-width: 900px; margin: 0 auto; color: var(--text); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 800; line-height:1.18; letter-spacing:-.04em; }
.quote-panel span { display:block; margin-top: 22px; color: var(--gold-2); font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; }

@media (max-width: 980px) {
  .page-hero-grid,
  .about-hero-grid,
  .page-content-grid,
  .story-grid { grid-template-columns: 1fr; }
  .service-visual-card,
  .about-photo-card { max-width: 620px; }
  .feature-grid,
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid-expanded { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 680px) {
  .page-hero { padding-top: 58px; padding-bottom: 76px; }
  .page-hero-copy h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .feature-grid,
  .principles-grid,
  .leak-grid,
  .outcome-band { grid-template-columns: 1fr; }
  .outcome-band span + span { border-left: 0; border-top: 1px solid var(--line); }
  .visual-metrics { grid-template-columns: 1fr; }
  .visual-metrics div + div { border-left: 0; border-top: 1px solid rgba(232,190,92,.11); }
  .inner-cta { flex-direction: column; align-items: flex-start; padding: 28px; }
  .inner-cta .btn { width: 100%; }
  .about-photo-card img { height: 420px; }
  .quote-panel { padding: 36px 24px; }
}


/* Proof / Projects expansion */
.proof-preview-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(232,190,92,.12), transparent 26rem),
    linear-gradient(180deg, transparent, rgba(232,190,92,.035), transparent);
}

.proof-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: 44px;
  align-items: center;
}

.case-preview-card,
.featured-case-card,
.proof-score-card,
.case-score-panel,
.visual-proof-card,
.score-breakdown-card,
.transparency-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: var(--shadow);
}

.case-preview-card,
.featured-case-card {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-preview-card:hover,
.case-preview-card:focus-visible,
.featured-case-card:hover,
.featured-case-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .52);
  outline: none;
}

.case-image-wrap {
  position: relative;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(247,216,132,.13), transparent 48%),
    rgba(255,255,255,.018);
}

.case-image-wrap img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(232,190,92,.16);
}

.case-image-wrap.large img {
  border-radius: 22px;
}

.case-preview-content,
.featured-case-copy {
  position: relative;
  padding: 28px;
}

.case-preview-content h3,
.featured-case-copy h3 {
  margin-top: 8px;
}

.case-preview-content p:not(.eyebrow),
.featured-case-copy p:not(.eyebrow) {
  margin-top: 14px;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(232,190,92,.13);
  border-radius: 18px;
  overflow: hidden;
}

.case-stats span {
  display: grid;
  gap: 5px;
  padding: 16px 10px;
  color: var(--muted-2);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  background: rgba(255,255,255,.026);
}

.case-stats strong {
  color: var(--gold-2);
  font-size: 1.2rem;
  letter-spacing: -.04em;
}

.proof-score-card,
.case-score-panel,
.transparency-panel {
  border-radius: 30px;
  padding: 30px;
}

.proof-score-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.proof-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.proof-mini-grid div {
  padding: 16px;
  border: 1px solid rgba(232,190,92,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.026);
}

.proof-mini-grid strong,
.proof-mini-grid span {
  display: block;
}

.proof-mini-grid strong {
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.proof-mini-grid span {
  color: var(--muted);
  margin-top: 6px;
  font-weight: 800;
}

.featured-case-grid {
  display: grid;
}

.featured-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
  align-items: center;
}

.case-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.case-tag-row span {
  color: var(--muted);
  padding: 8px 11px;
  border: 1px solid rgba(232,190,92,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: .78rem;
  font-weight: 850;
}

.case-score-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(232,190,92,.16), transparent 54%),
    var(--card-strong);
}

.score-shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 18px 0 22px;
}

.score-shift-grid div {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(232,190,92,.15);
  background: rgba(255,255,255,.028);
}

.score-shift-grid span,
.score-shift-grid small {
  color: var(--muted-2);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.score-shift-grid strong {
  color: var(--gold-2);
  font-size: clamp(3.3rem, 7vw, 5.4rem);
  line-height: .82;
  letter-spacing: -.08em;
}

.score-shift-grid b {
  color: var(--gold-2);
  font-size: 1.8rem;
}

.visual-proof-section {
  padding-top: 10px;
}

.visual-proof-card {
  border-radius: 32px;
  padding: 16px;
  overflow: hidden;
}

.visual-proof-card img {
  width: 100%;
  border-radius: 23px;
  border: 1px solid rgba(232,190,92,.16);
}

.visual-proof-caption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 10px 4px;
}

.visual-proof-caption strong {
  color: var(--gold-2);
}

.visual-proof-caption span {
  color: var(--muted);
  text-align: right;
}

.case-split-grid {
  grid-template-columns: .82fr 1.18fr;
}

.case-change-grid,
.score-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-change-grid .feature-card {
  min-height: 280px;
}

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

.score-breakdown-card {
  padding: 24px;
  border-radius: 24px;
}

.score-breakdown-card span {
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.score-breakdown-card strong {
  display: block;
  margin-top: 15px;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: -.03em;
}

.score-breakdown-card p {
  margin-top: 12px;
  font-size: .92rem;
  line-height: 1.62;
}

.transparency-section {
  padding-top: 52px;
}

.transparency-panel {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(232,190,92,.16), transparent 55%),
    var(--card-strong);
}

.transparency-panel h2 {
  margin-inline: auto;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.transparency-panel p:not(.eyebrow) {
  max-width: 790px;
  margin: 18px auto 0;
}

.transparency-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 1120px) {
  .nav-menu a { padding-inline: 10px; font-size: .86rem; }
}

@media (max-width: 980px) {
  .proof-preview-grid,
  .featured-case-card,
  .case-split-grid,
  .featured-case-card,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .case-change-grid,
  .score-breakdown-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .case-stats,
  .proof-mini-grid,
  .case-change-grid,
  .score-breakdown-grid,
  .score-shift-grid {
    grid-template-columns: 1fr;
  }
  .score-shift-grid b { text-align: center; transform: rotate(90deg); }
  .visual-proof-caption { display: block; }
  .visual-proof-caption span { display: block; text-align: left; margin-top: 6px; }
}
