:root {
  --ink: #10283d;
  --muted: #657381;
  --line: #e7ded1;
  --paper: #fffaf3;
  --soft: #f4eadc;
  --white: #ffffff;
  --green: #10283d;
  --green-2: #c14a33;
  --lime: #f0e1cd;
  --clay: #c14a33;
  --shadow: 0 20px 60px rgba(16, 40, 61, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 8px 10px 8px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(231, 222, 209, 0.92);
  border-radius: 8px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled .header-shell {
  border-color: #dbcdbd;
  box-shadow: 0 10px 32px rgba(16, 40, 61, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav a.active {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--clay);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 70px 0 44px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 7.4vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4.3vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.24;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.consult-head,
.score,
.mini-grid article,
.card-link {
  border-radius: 8px;
}

.consult-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.consult-head strong {
  color: var(--lime);
}

.score {
  margin: 14px 0;
  padding: 18px;
  background: var(--soft);
}

.score span {
  color: var(--muted);
  font-weight: 700;
}

.score strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 3.6rem;
  line-height: 1;
}

.meter {
  overflow: hidden;
  height: 10px;
  background: #dacbbb;
  border-radius: 999px;
}

.meter span {
  display: block;
  width: 52%;
  height: 100%;
  background: var(--green);
}

.mini-grid {
  display: grid;
  gap: 10px;
}

.mini-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  padding: 14px;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.mini-grid svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--green);
  background: var(--soft);
  border-radius: 8px;
}

.mini-grid span,
.mini-grid strong {
  font-size: 0.94rem;
}

.mini-grid span {
  color: var(--muted);
  font-weight: 700;
}

.card-link {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 14px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.logo-strip {
  padding: 18px 0;
}

.strip-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strip-shell span {
  color: var(--muted);
  font-weight: 800;
}

.strip-shell span:first-child {
  color: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.visual-story {
  padding-top: clamp(40px, 6vw, 72px);
}

.growth-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.story-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
}

.page-hero {
  padding: clamp(72px, 10vw, 132px) 0 clamp(42px, 7vw, 86px);
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
}

.detail-grid,
.outcome-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-panel,
.outcome-card,
.value-card,
.cta-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel,
.outcome-card,
.value-card {
  padding: clamp(24px, 4vw, 34px);
}

.feature-panel > svg,
.outcome-card > svg,
.value-card > svg {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  padding: 12px;
  color: var(--green);
  background: var(--soft);
  border-radius: 8px;
}

.feature-panel > span {
  display: inline-grid;
  min-width: 44px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.feature-panel p,
.outcome-card p,
.value-card p {
  color: var(--muted);
}

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

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.cta-panel {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(36px, 7vw, 68px);
  text-align: center;
}

.cta-panel h2 {
  max-width: 780px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.timeline-item p {
  max-width: 760px;
  color: var(--muted);
}

.faq-page-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.large-copy {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
}

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

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

.section-heading p,
.service-row p,
.method-card p,
.result-list p,
.value-card p,
.faq-list p,
.agenda-copy p,
.footer p {
  color: var(--muted);
}

.service-rows {
  display: grid;
  gap: 12px;
}

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 54px;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-row > span,
.method-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.service-row > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: var(--green);
  background: var(--soft);
  border-radius: 8px;
}

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

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-card {
  min-height: 240px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-card > span {
  margin-bottom: 34px;
}

.result-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1fr;
  gap: 16px;
}

.result-card,
.result-list article {
  border-radius: 8px;
}

.result-card {
  min-height: 460px;
  padding: clamp(28px, 5vw, 44px);
}

.result-card.dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(193, 74, 51, 0.84), rgba(16, 40, 61, 0.96)),
    linear-gradient(45deg, var(--clay), var(--green));
}

.result-card .eyebrow {
  color: var(--lime);
}

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

.result-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.result-list svg {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  padding: 10px;
  color: var(--green);
  background: var(--soft);
  border-radius: 8px;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 40px;
}

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

details {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.agenda-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-options a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(33, 76, 58, 0.18);
  border-color: var(--green);
}

.form-button {
  width: 100%;
  cursor: pointer;
}

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

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

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

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

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

@media (max-width: 920px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    top: 84px;
    right: 20px;
    left: 20px;
    z-index: 30;
    display: none;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: var(--soft);
  }

  .hero-shell,
  .split,
  .story-grid,
  .page-hero-shell,
  .result-shell,
  .faq-shell,
  .agenda-shell {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .detail-grid,
  .outcome-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .brand-logo {
    width: 126px;
  }

  .site-header {
    padding: 10px 0;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

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

  .service-row,
  .method-grid,
  .detail-grid,
  .outcome-grid,
  .values-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .service-row > svg {
    display: none;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

/* Tech redesign layer */
:root {
  --ink: #f9efe0;
  --muted: #b8c2cb;
  --line: rgba(240, 225, 205, 0.18);
  --paper: #061421;
  --soft: rgba(16, 40, 61, 0.72);
  --white: rgba(255, 255, 255, 0.92);
  --green: #10283d;
  --green-2: #ff795e;
  --lime: #f0e1cd;
  --clay: #ff6b4d;
  --cyan: #72e8ff;
  --violet: #8f7cff;
  --glass: rgba(8, 25, 39, 0.72);
  --glass-strong: rgba(10, 31, 49, 0.88);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --glow: 0 0 34px rgba(255, 107, 77, 0.24), 0 0 80px rgba(114, 232, 255, 0.12);
}

body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--cursor-x, 72%) var(--cursor-y, 18%), rgba(255, 107, 77, 0.18), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(114, 232, 255, 0.16), transparent 24%),
    radial-gradient(circle at 78% 10%, rgba(255, 107, 77, 0.24), transparent 30%),
    radial-gradient(circle at 50% 86%, rgba(143, 124, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #061421 0%, #081826 48%, #040b13 100%);
}

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

body::before {
  background:
    linear-gradient(rgba(240, 225, 205, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 225, 205, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 121, 94, 0.9) 0 2px, transparent 3px) 12% 20% / 220px 220px,
    radial-gradient(circle, rgba(114, 232, 255, 0.65) 0 1px, transparent 3px) 80% 28% / 180px 180px,
    linear-gradient(115deg, transparent 0%, rgba(114, 232, 255, 0.06) 42%, transparent 56%);
  opacity: 0.72;
  animation: lightDrift 18s linear infinite;
}

@keyframes lightDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-22px, 18px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.site-header {
  background: rgba(4, 11, 19, 0.62);
}

.header-shell,
.consult-card,
.strip-shell,
.story-card,
.feature-panel,
.outcome-card,
.value-card,
.cta-panel,
.service-row,
.method-card,
.result-list article,
details,
.contact-form,
.timeline-item {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--glass);
  border-color: rgba(240, 225, 205, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.header-shell::before,
.consult-card::before,
.service-row::before,
.method-card::before,
.result-list article::before,
.value-card::before,
.outcome-card::before,
.feature-panel::before,
.story-card::before,
.contact-form::before,
details::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(114, 232, 255, 0.14) 45%, transparent 68%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 700ms ease;
}

.consult-card:hover::before,
.service-row:hover::before,
.method-card:hover::before,
.result-list article:hover::before,
.value-card:hover::before,
.outcome-card:hover::before,
.feature-panel:hover::before,
.story-card:hover::before,
.contact-form:hover::before,
details:hover::before {
  opacity: 1;
  transform: translateX(38%);
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(255, 121, 94, 0.34);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35), 0 0 28px rgba(255, 107, 77, 0.12);
}

.brand-logo {
  filter: drop-shadow(0 0 14px rgba(240, 225, 205, 0.22));
}

.nav,
.footer-links,
.strip-shell span,
.score span,
.mini-grid span,
.hero-text,
.section-heading p,
.service-row p,
.method-card p,
.result-list p,
.value-card p,
.faq-list p,
.agenda-copy p,
.footer p,
.feature-panel p,
.outcome-card p,
.story-card p,
.timeline-item p,
details p {
  color: var(--muted);
}

.nav a.active,
.nav a:hover,
.footer-links a:hover,
.contact-options a {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(114, 232, 255, 0.34);
}

.eyebrow {
  color: var(--clay);
  text-shadow: 0 0 20px rgba(255, 107, 77, 0.32);
}

h1,
h2,
h3,
.large-copy,
.score strong,
.panel-metric strong {
  color: var(--ink);
}

h1 {
  text-shadow: 0 0 42px rgba(240, 225, 205, 0.08);
}

.hero,
.page-hero {
  position: relative;
}

.hero::before,
.page-hero::before {
  position: absolute;
  top: 8%;
  right: 6%;
  width: min(34vw, 430px);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(114, 232, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(114, 232, 255, 0.12), 0 0 70px rgba(255, 107, 77, 0.12);
  animation: pulseRing 4.8s ease-in-out infinite;
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

.button,
.header-cta,
.card-link {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--clay), #d84f38 55%, #7b2aff);
  box-shadow: 0 14px 34px rgba(255, 107, 77, 0.26), 0 0 34px rgba(143, 124, 255, 0.14);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 225, 205, 0.2);
}

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

.consult-head,
.service-row > span,
.method-card > span,
.timeline-item > span,
.feature-panel > span {
  background: linear-gradient(135deg, rgba(255, 107, 77, 0.96), rgba(16, 40, 61, 0.96));
  box-shadow: 0 0 28px rgba(255, 107, 77, 0.22);
}

.score,
.mini-grid article,
.soft,
.footer {
  background: rgba(7, 20, 33, 0.68);
}

.meter {
  background: rgba(240, 225, 205, 0.16);
}

.meter span {
  background: linear-gradient(90deg, var(--cyan), var(--clay));
  box-shadow: 0 0 18px rgba(114, 232, 255, 0.38);
}

.mini-grid svg,
.service-row > svg,
.result-list svg,
.feature-panel > svg,
.outcome-card > svg,
.value-card > svg {
  color: var(--cyan);
  background: rgba(114, 232, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(114, 232, 255, 0.08), 0 0 22px rgba(114, 232, 255, 0.12);
}

.visual-story {
  position: relative;
}

.growth-image,
.strategy-image {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(114, 232, 255, 0.24);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 60px rgba(114, 232, 255, 0.12);
  transform: perspective(1400px) rotateX(1.2deg);
}

.page-visual {
  padding-top: 0;
  padding-bottom: clamp(40px, 6vw, 78px);
}

.strategy-image {
  display: block;
  width: 100%;
  height: auto;
  background: rgba(9, 27, 43, 0.78);
  border: 1px solid rgba(114, 232, 255, 0.22);
  border-radius: 8px;
}

.result-card.dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(114, 232, 255, 0.24), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(255, 107, 77, 0.3), transparent 30%),
    linear-gradient(150deg, rgba(15, 44, 68, 0.94), rgba(4, 11, 19, 0.96));
  border: 1px solid rgba(240, 225, 205, 0.16);
  box-shadow: var(--shadow), var(--glow);
}

.result-card.dark::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(114, 232, 255, 0.16);
  border-radius: 8px;
}

input,
select,
textarea {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 225, 205, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: rgba(184, 194, 203, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(114, 232, 255, 0.14);
  border-color: rgba(114, 232, 255, 0.58);
}

.reveal {
  transform: translateY(22px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@media (max-width: 920px) {
  .mobile-menu {
    background: rgba(6, 20, 33, 0.96);
    border-color: rgba(240, 225, 205, 0.2);
  }
}
