:root {
  --bg: #02050b;
  --bg-soft: #07111f;
  --panel: rgba(11, 20, 36, 0.82);
  --panel-strong: #0d1728;
  --ink: #f5f8ff;
  --text: #edf4ff;
  --muted: #c1d0e4;
  --line: rgba(142, 176, 230, 0.16);
  --white: #ffffff;
  --blue: #4f8cff;
  --blue-strong: #2f6de3;
  --blue-fade: rgba(79, 140, 255, 0.16);
  --glow: rgba(79, 140, 255, 0.32);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(79, 140, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(19, 44, 92, 0.34), transparent 30rem),
    linear-gradient(180deg, #02050b 0%, #07111f 42%, #030814 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(109, 145, 197, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 145, 197, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 92%);
}

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

img {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--bg-soft);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
}

.header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1320px, calc(100% - 32px));
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(4, 10, 18, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.brand,
.nav,
.hero-actions,
.footer-links,
.stack-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.04em;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: clamp(250px, 31vw, 420px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #78a9ff, var(--blue-strong));
  box-shadow: 0 12px 28px var(--glow);
}

.brand-name {
  font-size: 1.02rem;
}

.nav {
  flex: 0 0 auto;
  gap: 24px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.footer-links a,
.text-link {
  position: relative;
}

.nav a::after,
.footer-links a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-dark {
  color: var(--white);
  background: linear-gradient(135deg, #12233f, #0b1630);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: linear-gradient(135deg, #17315b, #0f2143);
}

.button-accent {
  color: var(--white);
  background: linear-gradient(135deg, #5a96ff, var(--blue-strong));
  box-shadow: 0 18px 38px var(--glow);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: linear-gradient(135deg, #78a9ff, #3f80f2);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #1f5ed6;
  background: var(--white);
}

.header-cta {
  justify-self: end;
  min-height: 56px;
  padding-inline: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  background: linear-gradient(135deg, #5a96ff, #2f6de3);
  box-shadow:
    0 18px 38px var(--glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-cta.button {
  display: flex;
  max-width: max-content;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(135deg, #78a9ff, #3f80f2);
  box-shadow:
    0 22px 46px rgba(79, 140, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 72px 0 60px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #94b8ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 5.6vw, 5.2rem);
  line-height: 0.94;
}

.mobile-headline {
  display: none;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

p,
li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text,
.section-heading p {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 18px;
}

.microcopy {
  max-width: 54ch;
  font-size: 0.95rem;
}

.hero-panel,
.future-panel,
.contact-card,
.cta-band,
.service-summary {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.92), rgba(6, 12, 22, 0.86));
  box-shadow: var(--shadow);
}

.service-summary {
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-panel {
  padding: 32px;
  border-radius: 32px;
}

.panel-label {
  margin-bottom: 12px;
  color: #94b8ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-list,
.service-item ul,
.contact-points {
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.signal-list li,
.service-item li {
  position: relative;
  padding-left: 18px;
}

.signal-list li::before,
.service-item li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.stack-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.stack-row span {
  position: relative;
  padding: 9px 12px;
  border: 1px solid rgba(118, 158, 224, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: help;
  background: rgba(79, 140, 255, 0.1);
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.stack-row span::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: min(220px, 48vw);
  padding: 10px 12px;
  border: 1px solid rgba(118, 158, 224, 0.22);
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  content: attr(data-tooltip);
  background: rgba(8, 15, 28, 0.98);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.stack-row span::before {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(118, 158, 224, 0.22);
  border-bottom: 1px solid rgba(118, 158, 224, 0.22);
  content: "";
  background: rgba(8, 15, 28, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 160ms ease;
}

.stack-row span:hover::after,
.stack-row span:hover::before,
.stack-row span:focus-visible::after,
.stack-row span:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.stack-row span:hover,
.stack-row span:focus-visible {
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--bg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.14);
  transform: translateY(-2px) scale(1.05);
}

.stack-row span:focus-visible {
  outline: 3px solid rgba(79, 140, 255, 0.2);
  outline-offset: 2px;
}

.hero-panel-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(118, 158, 224, 0.16);
  border-radius: 22px;
  background: rgba(79, 140, 255, 0.08);
  color: var(--text);
  line-height: 1.65;
}

.section {
  padding: 34px 0 96px;
  scroll-margin-top: 72px;
}

.section-heading {
  margin-bottom: 32px;
}

.problem-grid,
.outcome-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.metric-card,
.process-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.92), rgba(6, 12, 24, 0.8));
}

.problem-section .info-card {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.problem-section .info-card:hover,
.problem-section .info-card:focus-within {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #ffffff, #eef3fb);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.problem-section .info-card:hover h3,
.problem-section .info-card:focus-within h3,
.problem-section .info-card:hover p,
.problem-section .info-card:focus-within p {
  color: #07111f;
}

.service-layout,
.example-grid,
.about-layout,
.contact-layout,
.footer-row {
  display: grid;
  gap: 24px;
}

.service-layout {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  align-items: start;
}

.service-item,
.service-summary {
  padding: 28px;
  border-radius: 28px;
}

.service-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.92), rgba(6, 12, 24, 0.8));
}

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

.service-tier {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.tier-title {
  display: grid;
  gap: 8px;
}

.tier-title .panel-label {
  margin-bottom: 0;
}

.tier-title h3 {
  margin-bottom: 0;
}

.tier-price {
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #07111f;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.1);
}

.tier-copy {
  margin-bottom: 0;
}

.deliverable-note {
  margin: -2px 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.tier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tier-meta span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(9, 16, 30, 0.86);
}

.tier-button {
  margin-top: auto;
}

.implementation-note {
  display: grid;
  width: 100%;
  max-width: 800px;
  gap: 12px;
  margin: 24px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 15, 28, 0.62);
}

.implementation-note h3 {
  margin-bottom: 2px;
}

.implementation-note p {
  max-width: 78ch;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.text-link {
  color: #9dc0ff;
  font-weight: 700;
}

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

.example-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.92), rgba(6, 12, 24, 0.8));
}

.example-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.example-card strong {
  color: var(--ink);
}

.example-points {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.example-report-card {
  position: relative;
  gap: 0;
  min-height: var(--report-card-height, 640px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #f7f9fd);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  perspective: 1600px;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.example-report-card:hover,
.example-report-card:focus-visible {
  transform: rotateX(2deg) rotateY(-5deg) translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.example-report-card:focus-visible {
  outline: 2px solid rgba(79, 140, 255, 0.48);
  outline-offset: 4px;
}

.example-report-card.is-flipped {
  transform: none;
}

.report-card-inner {
  position: relative;
  min-height: var(--report-card-height, 640px);
  overflow: hidden;
  transition: min-height 240ms ease;
}

.report-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.report-face-back {
  opacity: 0;
  pointer-events: none;
  transform: rotateY(-180deg);
}

.example-report-card.is-flipped .report-face-front {
  opacity: 0;
  pointer-events: none;
  transform: rotateY(180deg);
}

.example-report-card.is-flipped .report-face-back {
  opacity: 1;
  pointer-events: auto;
  transform: rotateY(0deg);
}

.report-flip-hint {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 50%;
  color: #0f1c30;
  opacity: 0;
  transform: translateY(calc(-50% + 10px));
  pointer-events: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(9, 20, 38, 0.16);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.report-flip-hint::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #0f1c30;
  border-right: 2px solid #0f1c30;
  transform: rotate(45deg) translate(-1px, 1px);
}

.example-report-card:hover .report-flip-hint,
.example-report-card:focus-visible .report-flip-hint {
  opacity: 1;
  transform: translateY(-50%);
}

.example-report-card.is-flipped .report-flip-hint {
  opacity: 0;
  transform: translateY(calc(-50% + 10px));
}

.example-report-card .panel-label {
  color: #07111f;
}

.report-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.report-badge {
  padding: 8px 12px;
  border: 1px solid rgba(10, 22, 42, 0.08);
  border-radius: 999px;
  color: #0f1c30;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(15, 28, 48, 0.06);
}

.report-list {
  margin: 0;
  padding: 6px 0 22px;
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
}

.report-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 10px 0;
}

.report-list dt {
  color: #6f7f98;
  font-weight: 700;
  white-space: nowrap;
}

.report-list dd {
  margin: 0;
  color: #07111f;
  font-weight: 700;
  text-align: right;
}

.report-detail-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.report-detail-copy {
  grid-column: 1 / -1;
  position: relative;
  margin-top: -2px;
  margin-left: 30px;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 14px;
  color: rgba(7, 17, 31, 0.42);
  background: rgba(7, 17, 31, 0.035);
  filter: blur(3px);
  user-select: none;
}

.report-detail-copy::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.58) 48%,
    rgba(255, 255, 255, 0.1)
  );
}

.report-note {
  margin: 22px 0 0;
  color: #5f7089;
  font-size: 0.95rem;
}

.report-top-back {
  margin-bottom: 28px;
}

.report-top-back h3 {
  margin-bottom: 0;
  color: #07111f;
}

.report-face-back .report-note {
  margin-top: 2px;
}

.report-metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.report-metric {
  display: grid;
  grid-column: span 2;
  place-items: center;
  gap: 12px;
  min-height: 116px;
  padding: 20px 16px;
  border: 1px solid rgba(79, 140, 255, 0.22);
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 255, 0.92));
  box-shadow: 0 14px 30px rgba(24, 39, 75, 0.08);
}

.report-metric:nth-child(7) {
  grid-column: 2 / span 2;
}

.report-metric:nth-child(8) {
  grid-column: 4 / span 2;
}

.report-metric span {
  color: #5c6d88;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.report-metric strong {
  color: #0c1830;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

@media (min-width: 1400px) {
  .report-face {
    padding: 20px;
  }

  .report-top {
    margin-bottom: 16px;
  }

  .report-top-back {
    margin-bottom: 16px;
  }

  .report-list {
    padding-top: 2px;
    padding-bottom: 14px;
  }

  .report-list div {
    padding: 6px 0;
  }

  .report-metrics-grid {
    gap: 8px;
    margin-bottom: 2px;
  }

  .report-metric {
    min-height: 84px;
    padding: 14px 12px;
  }

  .example-report-card,
  .report-card-inner {
    max-height: 550px;
  }

  .report-face-back {
    display: grid;
    grid-template-rows: auto auto 1fr;
  }

  .report-face-back .report-note {
    align-self: center;
    margin: 0;
  }
}

@media (max-width: 1120px) {
  .report-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-metric,
  .report-metric:nth-child(7),
  .report-metric:nth-child(8) {
    grid-column: auto;
  }
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.92), rgba(6, 12, 24, 0.82));
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(118, 158, 224, 0.2);
  border-radius: 50%;
  color: #94b8ff;
  content: "+";
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  background: rgba(79, 140, 255, 0.08);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 78ch;
  margin: -4px 24px 22px;
  font-size: 0.98rem;
}

.faq-item[open] p {
  animation: faq-answer-in 520ms cubic-bezier(0.16, 1, 0.3, 1) 110ms both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item[open] p {
    animation: none;
  }

  .example-report-card,
  .report-card-inner,
  .report-flip-hint {
    transition: none;
  }
}

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

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.outcome-section .metric-card {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.outcome-section .metric-card:hover,
.outcome-section .metric-card:focus-within {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #ffffff, #eef3fb);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.outcome-section .metric-card:hover p,
.outcome-section .metric-card:focus-within p,
.outcome-section .metric-card:hover strong,
.outcome-section .metric-card:focus-within strong {
  color: #07111f;
}

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

.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #94b8ff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-section .process-card {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.process-section .process-card:hover,
.process-section .process-card:focus-within {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #ffffff, #eef3fb);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.process-section .process-card:hover h3,
.process-section .process-card:focus-within h3,
.process-section .process-card:hover p,
.process-section .process-card:focus-within p,
.process-section .process-card:hover span,
.process-section .process-card:focus-within span {
  color: #07111f;
}

.future-panel,
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 44px;
  border-radius: 34px;
}

.future-panel {
  grid-template-columns: minmax(0, 1fr);
}

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

.about-credibility {
  grid-column: 1 / -1;
  max-width: 72ch;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.contact-form {
  padding: 30px;
  border-radius: 30px;
}

.contact-form {
  width: min(100%, 760px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.94), rgba(6, 12, 24, 0.86));
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(118, 158, 224, 0.18);
  border-radius: 18px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form select {
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7590ae;
}

.contact-form select option {
  color: #07111f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(79, 140, 255, 0.18);
  outline-offset: 2px;
}

.full-width {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-direct-contact {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-direct-contact a {
  color: var(--ink);
  font-weight: 700;
}

.form-status.is-success {
  color: #8ff0c5;
}

.form-status.is-error {
  color: #ff8f8f;
}

.contact-points {
  display: grid;
  gap: 18px;
}

.contact-points li {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-points span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-points strong,
.contact-points a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-note {
  margin-top: 22px;
}

.site-footer {
  padding: 18px 0 60px;
}

.mobile-sticky-cta {
  display: none;
}

.footer-row {
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-row p {
  max-width: 54ch;
  margin: 16px 0 0;
}

.footer-brand-logo {
  width: clamp(220px, 24vw, 340px);
  height: 52px;
}

.footer-links {
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@media (min-width: 961px) and (max-height: 900px) {
  .site-header {
    padding-top: 12px;
  }

  .header-bar {
    gap: 18px;
    padding: 12px 16px;
  }

  .nav {
    gap: 18px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero {
    gap: 36px;
    min-height: calc(100vh - 96px);
    padding: 38px 0 32px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.85rem, 5.2vw, 4.55rem);
  }

  h2 {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
  }

  .hero-text,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-actions {
    margin: 20px 0 12px;
  }

  .hero-panel,
  .future-panel,
  .cta-band,
  .service-summary,
  .service-item,
  .info-card,
  .metric-card,
  .process-card,
  .example-card,
  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-panel-note {
    margin-top: 18px;
    padding: 16px;
  }

  .section {
    padding: 26px 0 72px;
  }

  .section-heading {
    margin-bottom: 26px;
  }
}

@media (max-width: 960px) {
  .header-bar,
  .hero,
  .problem-grid,
  .service-layout,
  .example-grid,
  .outcome-grid,
  .process-grid,
  .about-layout,
  .contact-layout,
  .footer-row,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .header-bar {
    border-radius: 28px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand {
    justify-self: center;
  }

  .nav {
    display: none;
  }

  .header-cta,
  .header-cta.button {
    display: none;
  }

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

  .outcome-grid,
  .process-grid {
    gap: 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 86px;
  }

  .shell {
    width: min(100% - 28px, 1140px);
  }

  .site-header {
    padding-top: 12px;
  }

  .header-bar {
    justify-items: center;
  }

  .nav {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 50;
    display: block;
  }

  .mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    padding: 16px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, #5a96ff, #2f6de3);
    box-shadow: 0 18px 38px var(--glow);
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .desktop-headline {
    display: none;
  }

  .mobile-headline {
    display: inline;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-panel,
  .contact-form,
  .future-panel,
  .cta-band,
  .service-item,
  .service-summary,
  .info-card,
  .metric-card,
  .process-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  .report-metric strong {
    font-size: 1.7rem;
  }

  .report-flip-hint {
    right: 16px;
    width: 46px;
    height: 46px;
  }
}

