:root {
  --bg: #f2f4f7;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: #d8dee8;
  --accent: #174ea6;
  --accent-dark: #0b2f66;
  --accent-soft: #e6edf8;
  --danger: #8a2d2d;
  --graphite: #202632;
  --shadow: 0 24px 70px rgb(17 24 39 / 0.14);
  --radius: 14px;
  --max: 1180px;
  font-family:
    "Outfit",
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #e9edf5;
  background:
    linear-gradient(180deg, #050b16 0%, #0d1422 18%, #0f1626 38%, #101826 100%);
  background-size: auto;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 4%, rgb(23 78 166 / 0.14), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgb(255 255 255 / 0.05), transparent 22rem);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  background: rgb(6 11 22 / 0.66);
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(18px) saturate(120%);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  border-radius: var(--radius);
  background: #d9b47a;
  color: #111827;
  font-weight: 900;
  font-size: 14px;
  z-index: 100;
  transition: top 0.2s;
  white-space: nowrap;
}

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

.announcement-bar {
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 8px 14px;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 12px;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.brand,
.nav,
.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
  color: #f8f9fc;
}

.brand-mark {
  justify-content: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
}

.nav {
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgb(255 255 255 / 0.74);
  font-size: 14px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: #ffffff;
  background: rgb(255 255 255 / 0.1);
}

.nav a.active {
  font-weight: 700;
}

.header-cta {
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(180deg, #d8b67c 0%, #b88a4d 100%);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.25);
}

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

.hero-band {
  position: relative;
  overflow: clip;
  padding: 22px 0 26px;
  color: #f8f9fc;
  background:
    radial-gradient(circle at 76% 18%, rgb(187 137 77 / 0.18), transparent 24rem),
    radial-gradient(circle at 18% 12%, rgb(59 130 246 / 0.18), transparent 18rem),
    linear-gradient(180deg, #060b16 0%, #0d1220 44%, #12192a 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 24%, rgb(255 255 255 / 0.04), transparent 18rem),
    radial-gradient(circle at 82% 58%, rgb(255 255 255 / 0.03), transparent 16rem);
  opacity: 0.95;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 28px 0 18px;
}

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

.hero-band h1,
.hero-band .hero-lead {
  color: #f8f9fc;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d9b47a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 60px);
}

.hero-copy h1 span {
  color: #d9b47a;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-lead,
.section-heading p,
.consultation-copy p,
.risk-card p {
  color: rgb(233 237 245 / 0.74);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 18px;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(15px, 1.35vw, 17px);
}

.hero-actions,
.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 2px solid #d9b47a;
  outline-offset: 3px;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #4f79ef 0%, #365dc8 100%);
  box-shadow: 0 16px 34px rgb(54 93 200 / 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #5f88f3 0%, #2f52b4 100%);
}

.button-secondary {
  color: #f8f9fc;
  border-color: rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.06);
}

.hero-panel {
  position: relative;
  max-width: 600px;
  padding-top: 6px;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 5 / 5.9;
  object-fit: cover;
  object-position: center right;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.48);
  background: #0a1020;
}

.case-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(278px, 72%);
  padding: 16px 16px 15px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  color: #f8f9fc;
  background: rgb(15 22 36 / 0.82);
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.36);
  backdrop-filter: blur(16px);
}

.case-note span,
.case-note small {
  display: block;
  color: rgb(255 255 255 / 0.72);
}

.case-note strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 28px;
  line-height: 1;
  color: #d9b47a;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.05);
  box-shadow: 0 18px 56px rgb(0 0 0 / 0.18);
  backdrop-filter: blur(10px);
}

.hero-metrics div {
  padding-right: 10px;
}

.hero-metrics div + div {
  border-left: 1px solid rgb(255 255 255 / 0.12);
  padding-left: 10px;
}

.hero-metrics strong {
  margin-bottom: 4px;
  color: #d9b47a;
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-metrics span {
  color: rgb(255 255 255 / 0.72);
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 24px 0 84px;
}

.section-heading {
  max-width: 560px;
}

.section-heading h2,
.section-heading p,
.consultation-copy h2,
.consultation-copy p,
.footer,
.footer strong,
.footer span {
  color: #e9edf5;
}

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

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

.problem-grid article,
.case-grid article,
.timeline article {
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.04);
  color: #eef2f8;
  box-shadow: 0 16px 42px rgb(0 0 0 / 0.18);
}

.problem-grid article {
  min-height: 196px;
  padding: 22px;
}

.problem-grid span,
.case-grid span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 900;
}

.problem-grid p,
.case-grid p,
.timeline p,
.faq-list p,
.fit-list span,
.form-note {
  color: rgb(233 237 245 / 0.72);
}

.fit-band {
  padding: 78px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 12%, rgb(217 180 122 / 0.12), transparent 20rem),
    linear-gradient(135deg, #0b111d 0%, #121a2a 100%);
}

.fit-band .eyebrow,
.risk-card .eyebrow {
  color: #d9b47a;
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.fit-list div {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.05);
}

.fit-list strong,
.fit-list span {
  display: block;
}

.fit-list strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.fit-list span {
  color: rgb(255 255 255 / 0.72);
}

.steps {
  padding: 84px 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.02), rgb(255 255 255 / 0));
}

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

.timeline article {
  min-height: 252px;
  padding: 20px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
  font-weight: 900;
}

.risk-section {
  padding: 82px 0;
  background:
    radial-gradient(circle at 82% 26%, rgb(217 180 122 / 0.12), transparent 18rem),
    linear-gradient(135deg, #0e1421 0%, #111a2a 100%);
}

.risk-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.risk-card {
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: 20px;
  color: #ffffff;
  background: rgb(255 255 255 / 0.04);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.24);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.risk-card p {
  color: rgb(255 255 255 / 0.76);
}

.risk-points {
  display: grid;
  gap: 12px;
}

.risk-points div {
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.05);
  color: #eef2f8;
  font-weight: 800;
}

.cases {
  padding: 84px 0;
}

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

.case-grid article {
  padding: 22px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.03));
}

.case-grid span {
  margin-bottom: 38px;
  font-size: 14px;
}

.case-grid strong {
  display: block;
  margin-top: 20px;
  color: #d9b47a;
}

.fears {
  padding: 8px 0 84px;
}

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

.faq-list details {
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.04);
  color: #eef2f8;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: #d9b47a;
  font-size: 24px;
  line-height: 1;
}

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

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 22px 22px;
  color: rgb(233 237 245 / 0.72);
}

.faq-list details[open] p {
  animation: faq-reveal 0.22s ease;
}

@keyframes faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consultation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 72px clamp(18px, 4vw, 42px);
  margin-bottom: 84px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 0%, rgb(217 180 122 / 0.12), transparent 18rem),
    linear-gradient(180deg, #0f1626 0%, #111b2b 100%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.28);
  border: 1px solid rgb(255 255 255 / 0.08);
}

.consultation .button-secondary {
  color: #f8f9fc;
  border-color: rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.06);
}

.consultation .button-secondary:hover,
.consultation .button-secondary:focus-visible {
  background: rgb(255 255 255 / 0.1);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 10px;
  color: #f8f9fc;
  background: rgb(255 255 255 / 0.05);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #d9b47a;
  box-shadow: 0 0 0 4px rgb(217 180 122 / 0.16);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  color: #d9b47a;
  font-weight: 900;
}

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  color: rgb(233 237 245 / 0.72);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: #f8f9fc;
}

.footer a {
  color: #d9b47a;
  font-weight: 900;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgb(233 237 245 / 0.48);
  font-size: 12px;
  font-weight: 400;
}

.footer-legal a:hover {
  color: rgb(233 237 245 / 0.72);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  background: rgb(8 13 24 / 0.84);
  box-shadow: 0 18px 54px rgb(0 0 0 / 0.32);
  backdrop-filter: blur(14px);
}

.floating-contact a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #7ab5ff 0%, #4d86d6 100%);
  font-size: 14px;
  font-weight: 900;
}

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .announcement-bar {
    width: calc(100% - 32px);
  }

  .site-header {
    align-items: stretch;
    border-radius: var(--radius);
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero-stage,
  .split-section,
  .fit-layout,
  .risk-layout,
  .consultation {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .timeline,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics div + div {
    border-left: 0;
    padding-left: 0;
  }

}

@media (max-width: 640px) {
  .announcement-bar {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

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

  .header-cta {
    flex: 1;
  }

  .section-shell,
  .footer {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding: 44px 0 32px;
  }

  .hero-stage {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 42px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-actions,
  .messengers {
    flex-direction: column;
  }

  .hero-metrics,
  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .case-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

  .split-section,
  .steps,
  .cases,
  .fears {
    padding-bottom: 64px;
  }

  .fit-band,
  .risk-section {
    padding: 64px 0;
  }

  .consultation {
    padding: 48px 16px;
    margin-bottom: 72px;
  }

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

  .floating-contact {
    left: 12px;
    right: 12px;
    justify-content: center;
  }

  .floating-contact a {
    flex: 1;
    text-align: center;
  }
}
