:root {
  --blue: #0D1B3E;
  --gold: #CA972B;
  --white: #FFFFFF;
  --text: #1B1B1B;
  --muted: #666D7A;
  --line: rgba(13, 27, 62, 0.12);
  --soft: #F5F7FB;
  --blue-2: #132A5C;
  --gold-soft: rgba(202, 151, 43, 0.14);
  --shadow: 0 24px 70px rgba(13, 27, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.ready {
  opacity: 1;
  transition: opacity 0.45s ease;
}

body.ready:not(.page-entered) .page-hero-layout > *,
body.ready:not(.page-entered) .contact-layout > *,
body.ready:not(.page-entered) .report-hero .hero-layout > * {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
}

body.page-entered .page-hero-layout > *,
body.page-entered .contact-layout > *,
body.page-entered .report-hero .hero-layout > * {
  animation: pageHeroEnter 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.page-entered .page-hero-layout > *:nth-child(2),
body.page-entered .contact-layout > *:nth-child(2),
body.page-entered .report-hero .hero-layout > *:nth-child(2) {
  animation-delay: 0.12s;
}

body.page-entered .page-hero .eyebrow,
body.page-entered .page-hero h1,
body.page-entered .page-hero p,
body.page-entered .page-hero .btn,
body.page-entered .contact-hero .eyebrow,
body.page-entered .contact-hero h1,
body.page-entered .contact-hero p,
body.page-entered .contact-proof,
body.page-entered .report-hero .eyebrow,
body.page-entered .report-hero h1,
body.page-entered .report-hero p,
body.page-entered .report-hero .hero-actions {
  animation: heroRise 0.86s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.page-entered .page-hero h1,
body.page-entered .contact-hero h1,
body.page-entered .report-hero h1 { animation-delay: 0.06s; }

body.page-entered .page-hero p,
body.page-entered .contact-hero p,
body.page-entered .report-hero p { animation-delay: 0.14s; }

body.page-entered .page-hero .btn,
body.page-entered .contact-proof,
body.page-entered .report-hero .hero-actions { animation-delay: 0.22s; }

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(13, 27, 62, 0.78);
  backdrop-filter: blur(18px);
  color: var(--white);
  transition: box-shadow 0.25s ease, background 0.25s ease, top 0.25s ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(13, 27, 62, 0.94);
  box-shadow: 0 16px 40px rgba(13, 27, 62, 0.24);
}

.brand {
  display: grid;
  line-height: 1.05;
  min-width: 145px;
}

.brand span {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand small {
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.header-cta {
  position: relative;
  overflow: hidden;
  padding: 11px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.88rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 0.7s ease;
}

.header-cta:hover::after,
.btn:hover::after {
  transform: translateX(120%) skewX(-18deg);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
}

.hero,
.page-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 90px;
  background: var(--blue);
  color: var(--white);
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
}

.home-hero::before,
.report-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.92), rgba(13, 27, 62, 0.72)),
    url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.report-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.95), rgba(13, 27, 62, 0.74)),
    url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1f?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-lines {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 4%;
  top: 18%;
  border: 1px solid rgba(202, 151, 43, 0.22);
  border-radius: 50%;
  animation: rotateSoft 24s linear infinite;
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.hero-lines::after {
  inset: 150px;
  border-color: rgba(202, 151, 43, 0.32);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.hero-copy > * {
  animation: heroRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.24s; }

.hero-copy h1,
.page-hero h1,
.contact-hero h1 {
  margin: 12px 0 20px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.55rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.page-hero h1,
.contact-hero h1 {
  font-size: clamp(2rem, 3.25vw, 3.55rem);
}

.hero-copy p,
.page-hero p,
.contact-hero p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(202, 151, 43, 0.24);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hero-dashboard,
.report-mockup {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.hero-dashboard {
  animation: floatPanel 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hero-dashboard .metric-card,
.hero-dashboard .score-card,
.hero-dashboard .map-card {
  animation: cardSettle 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-dashboard .map-card { animation-delay: 0.16s; }
.hero-dashboard .metric-card:nth-child(1) { animation-delay: 0.24s; }
.hero-dashboard .metric-card:nth-child(2) { animation-delay: 0.31s; }
.hero-dashboard .metric-card:nth-child(3) { animation-delay: 0.38s; }
.hero-dashboard .metric-card:nth-child(4) { animation-delay: 0.45s; }
.hero-dashboard .score-card { animation-delay: 0.52s; }

.map-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.map-card strong,
.score-card strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.map-card small,
.score-card span,
.metric-card span,
.finance-grid small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.map-visual {
  position: relative;
  height: 112px;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 31%, rgba(255, 255, 255, 0.14) 32%, transparent 33%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.14) 49%, transparent 50%),
    rgba(13, 27, 62, 0.82);
}

.map-pin,
.radius {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.map-pin {
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(202, 151, 43, 0.2);
}

.radius {
  border: 1px solid rgba(202, 151, 43, 0.42);
  border-radius: 50%;
  animation: pulseRadius 3.8s ease-in-out infinite;
}

.r1 { width: 38px; height: 38px; }
.r2 { width: 72px; height: 72px; animation-delay: 0.7s; }
.r3 { width: 104px; height: 104px; animation-delay: 1.4s; }

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.metric-card,
.score-card {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
  line-height: 1.05;
}

.metric-card strong span {
  font-size: inherit;
}

.score-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  background:
    radial-gradient(circle at center, var(--blue) 54%, transparent 55%),
    conic-gradient(var(--gold) calc(var(--score) * 1%), rgba(255, 255, 255, 0.16) 0);
}

.section {
  padding: 104px 0;
}

.motion-watch > .container,
.motion-watch > .hero-grid + .container {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-watch.motion-in > .container,
.motion-watch.motion-in > .hero-grid + .container {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.motion-watch.motion-in .feature-card,
.motion-watch.motion-in .service-card,
.motion-watch.motion-in .application-grid article,
.motion-watch.motion-in .timeline article,
.motion-watch.motion-in .principles-grid article,
.motion-watch.motion-in .audience-grid span,
.motion-watch.motion-in .question-grid span {
  animation: softPop 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-watch.motion-in .feature-card:nth-child(2),
.motion-watch.motion-in .service-card:nth-child(2),
.motion-watch.motion-in .application-grid article:nth-child(2),
.motion-watch.motion-in .timeline article:nth-child(2),
.motion-watch.motion-in .principles-grid article:nth-child(2),
.motion-watch.motion-in .audience-grid span:nth-child(2),
.motion-watch.motion-in .question-grid span:nth-child(2) { animation-delay: 0.06s; }

.motion-watch.motion-in .feature-card:nth-child(3),
.motion-watch.motion-in .service-card:nth-child(3),
.motion-watch.motion-in .application-grid article:nth-child(3),
.motion-watch.motion-in .timeline article:nth-child(3),
.motion-watch.motion-in .principles-grid article:nth-child(3),
.motion-watch.motion-in .audience-grid span:nth-child(3),
.motion-watch.motion-in .question-grid span:nth-child(3) { animation-delay: 0.12s; }

.motion-watch.motion-in .feature-card:nth-child(4),
.motion-watch.motion-in .service-card:nth-child(4),
.motion-watch.motion-in .application-grid article:nth-child(4),
.motion-watch.motion-in .timeline article:nth-child(4),
.motion-watch.motion-in .audience-grid span:nth-child(4),
.motion-watch.motion-in .question-grid span:nth-child(4) { animation-delay: 0.18s; }

.motion-watch.motion-in .feature-card:nth-child(5),
.motion-watch.motion-in .service-card:nth-child(5),
.motion-watch.motion-in .application-grid article:nth-child(5),
.motion-watch.motion-in .timeline article:nth-child(5),
.motion-watch.motion-in .audience-grid span:nth-child(5),
.motion-watch.motion-in .question-grid span:nth-child(5) { animation-delay: 0.24s; }

.motion-watch.motion-in .feature-card:nth-child(6),
.motion-watch.motion-in .service-card:nth-child(6),
.motion-watch.motion-in .application-grid article:nth-child(6),
.motion-watch.motion-in .audience-grid span:nth-child(6),
.motion-watch.motion-in .question-grid span:nth-child(6) { animation-delay: 0.30s; }

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

h2 {
  margin: 10px 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--blue);
}

h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  color: var(--blue);
}

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

.split-layout,
.report-layout,
.lead-layout,
.indicators-layout,
.about-copy,
.founder-card,
.contact-layout,
.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.problem-section {
  background: var(--white);
}

.problem-section p {
  font-size: 1.12rem;
}

.solution-section,
.applications-section,
.indicators-section,
.contact-hero {
  background: var(--soft);
}

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

.feature-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card,
.principles-grid article {
  position: relative;
  min-height: 216px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(13, 27, 62, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.service-card:hover,
.principles-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(202, 151, 43, 0.42);
  box-shadow: var(--shadow);
}

.feature-card svg,
.service-card svg,
.principles-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--gold);
}

.report-highlight {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.96), rgba(13, 27, 62, 0.84)),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.report-highlight h2,
.report-highlight p {
  color: var(--white);
}

.chip-list,
.indicator-cloud,
.audience-grid,
.question-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.chip-list span,
.indicator-cloud span,
.audience-grid span,
.question-grid span {
  padding: 10px 13px;
  border-radius: 6px;
  border: 1px solid rgba(202, 151, 43, 0.28);
  background: rgba(202, 151, 43, 0.1);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.report-highlight .chip-list span,
.indicator-cloud span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mockup-header span {
  color: rgba(255, 255, 255, 0.62);
}

.mockup-header strong {
  color: var(--gold);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 180px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(13, 27, 62, 0.54);
}

.bar-chart span {
  width: 100%;
  height: var(--h);
  min-height: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(202, 151, 43, 0.36));
  animation: growBar 1.4s ease both;
}

.motion-watch.motion-in .bar-chart span {
  animation: growBar 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.finance-grid div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.finance-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}

.scenario-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.scenario-table th,
.scenario-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.scenario-table th {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline article {
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
  font-family: "Sora", sans-serif;
}

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

.application-grid article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
}

.application-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.06) brightness(0.7);
  transition: transform 0.35s ease;
}

.application-grid article:hover img {
  transform: scale(1.06);
}

.application-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  font-weight: 800;
}

.value-section {
  background: var(--blue);
}

.value-card {
  max-width: 920px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.value-card h2,
.value-card p {
  color: var(--white);
}

.audience-grid span,
.question-grid span {
  color: var(--blue);
  background: var(--white);
}

.lead-section {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 27, 62, 0.14);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  background: #FAFBFE;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 151, 43, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.page-hero {
  padding-bottom: 76px;
}

.page-hero-layout img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  filter: saturate(0.82) contrast(1.05) brightness(0.84);
}

.service-card h2 {
  font-size: 1.25rem;
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
}

.cta-band,
.price-section {
  text-align: center;
  background: var(--blue);
}

.cta-band h2,
.cta-band p,
.price-card h2,
.price-card p {
  color: var(--white);
}

.deliverables-section {
  background: var(--soft);
}

.question-grid {
  margin-top: 0;
}

.question-grid span {
  flex: 1 1 290px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.06);
}

.indicators-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.95), rgba(13, 27, 62, 0.8)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.indicators-section h2,
.indicators-section p {
  color: var(--white);
}

.go-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(202, 151, 43, 0.12);
}

.go-line span {
  color: rgba(255, 255, 255, 0.66);
}

.go-line strong {
  color: var(--gold);
}

.price-card {
  max-width: 760px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.96), rgba(13, 27, 62, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.about-copy p {
  font-size: 1.06rem;
}

.founder-section {
  background: var(--soft);
}

.founder-card {
  padding: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.94), rgba(13, 27, 62, 0.78)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80") center/cover;
  min-height: calc(100vh - 1px);
  display: flex;
  align-items: center;
}

.contact-layout {
  padding-top: 40px;
}

.contact-proof {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.contact-proof svg {
  color: var(--gold);
}

.contact-form {
  align-self: stretch;
}

.site-footer {
  padding: 44px 0;
  background: #08132E;
  color: var(--white);
}

.proposal-page {
  background: var(--white);
}

.proposal-header .site-nav a {
  font-weight: 700;
}

.proposal-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.96), rgba(13, 27, 62, 0.76)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
}

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

.proposal-brief {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  animation: floatPanel 7s ease-in-out infinite;
}

.proposal-brief-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.proposal-brief-top strong {
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.proposal-brief-body {
  display: grid;
  gap: 14px;
}

.brief-row {
  padding: 20px;
  border-radius: 8px;
  background: rgba(13, 27, 62, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brief-row small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.brief-row strong {
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.brief-note {
  position: relative;
  padding: 22px 22px 22px 26px;
  border-radius: 8px;
  background: rgba(202, 151, 43, 0.14);
  border: 1px solid rgba(202, 151, 43, 0.32);
}

.brief-note::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: var(--gold);
}

.brief-note span {
  color: var(--white);
  font-weight: 700;
}

.proposal-pillars,
.proposal-deliverables {
  background: var(--soft);
}

.proposal-scope {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.96), rgba(13, 27, 62, 0.82)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.proposal-scope h2,
.proposal-scope p {
  color: var(--white);
}

.proposal-scope-layout,
.investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.scope-list {
  display: grid;
  gap: 14px;
}

.scope-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.scope-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.scope-list strong {
  color: var(--white);
  font-family: "Sora", sans-serif;
}

.scope-list small {
  color: rgba(255, 255, 255, 0.7);
}

.proposal-reference {
  background: var(--blue);
}

.reference-card,
.final-card {
  max-width: 980px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.reference-card h2,
.reference-card p,
.final-card h2,
.final-card p {
  color: var(--white);
}

.proposal-timeline article {
  min-height: 300px;
}

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

.deliverable-grid span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 10px 34px rgba(13, 27, 62, 0.05);
}

.proposal-investment {
  background: var(--white);
}

.investment-card {
  padding: 34px;
  border-radius: 8px;
  border: 1px solid rgba(202, 151, 43, 0.36);
  background:
    linear-gradient(135deg, rgba(202, 151, 43, 0.12), transparent 46%),
    var(--blue);
  box-shadow: var(--shadow);
  color: var(--white);
}

.investment-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.investment-card strong {
  display: block;
  margin: 10px 0 16px;
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1;
}

.investment-card p {
  color: rgba(255, 255, 255, 0.76);
}

.proposal-final {
  background:
    linear-gradient(90deg, rgba(13, 27, 62, 0.96), rgba(13, 27, 62, 0.76)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-transition {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(202, 151, 43, 0.16), transparent 42%),
    var(--blue);
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
}

.page-transition.is-leaving::before {
  animation: goldScan 0.48s ease both;
}

.page-transition.is-leaving {
  transform: translateY(0);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}

.footer-layout p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-layout nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-layout nav a {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes rotateSoft {
  to { transform: rotate(360deg); }
}

@keyframes pulseRadius {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes growBar {
  from { height: 0; }
  to { height: var(--h); }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes cardSettle {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pageHeroEnter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes goldScan {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

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

  .motion-watch > .container,
  .motion-watch > .hero-grid + .container {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    position: absolute;
    display: grid;
    gap: 0;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 100%;
    justify-self: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(13, 27, 62, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  }

  .site-nav.open a {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-layout,
  .page-hero-layout,
  .contact-layout,
  .lead-layout,
  .split-layout,
  .report-layout,
  .indicators-layout,
  .about-copy,
  .founder-card,
  .proposal-scope-layout,
  .investment-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .timeline,
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline article {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid,
  .feature-grid.six,
  .services-grid,
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    width: calc(100% - 24px);
    top: 10px;
  }

  .hero,
  .page-hero,
  .contact-hero {
    padding: 126px 0 68px;
  }

  .hero-copy h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  .hero-copy p,
  .page-hero p,
  .contact-hero p {
    font-size: 1rem;
  }

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

  .hero-dashboard,
  .report-mockup,
  .lead-form,
  .value-card,
  .price-card,
  .founder-card,
  .reference-card,
  .final-card,
  .investment-card {
    padding: 18px;
  }

  .metric-card {
    padding: 22px 24px;
  }

  .metric-card span {
    font-size: 0.95rem;
  }

  .metric-card strong {
    margin-top: 14px;
    font-size: 2.35rem;
  }

  .metric-card strong span {
    font-size: 1em;
  }

  .map-card,
  .metric-panel,
  .finance-grid,
  .lead-form,
  .feature-grid,
  .feature-grid.six,
  .services-grid,
  .principles-grid,
  .timeline,
  .application-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .proposal-hero {
    min-height: auto;
  }

  .scope-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scope-list span {
    grid-row: auto;
  }

  .investment-card strong {
    font-size: 3.2rem;
  }

  .timeline article {
    min-height: auto;
    border-right: 0;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero-layout img {
    height: 300px;
  }

  .footer-layout {
    display: grid;
  }

  .footer-layout nav {
    justify-content: start;
  }
}
