:root {
  color-scheme: dark;
  --bg: #080a0d;
  --surface: #10141a;
  --surface-2: #151a21;
  --text: #f3f5f7;
  --muted: #a9b0ba;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e7b34d;
  --accent-bright: #ffd174;
  --accent-ink: #171108;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(231, 179, 77, 0.11), transparent 28rem),
    linear-gradient(180deg, #0a0d11 0%, var(--bg) 40%, #090c10 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:hover {
  color: var(--accent-bright);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 84px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  min-width: 110px;
  min-height: 44px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-width: 108px;
  min-height: 38px;
  overflow: hidden;
}

.brand-fallback {
  grid-area: 1 / 1;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand img {
  grid-area: 1 / 1;
  z-index: 1;
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 46px;
  background: #090c10;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.header-contact {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(231, 179, 77, 0.14);
  color: var(--accent-ink);
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
  box-shadow: 0 16px 38px rgba(231, 179, 77, 0.22);
  color: var(--accent-ink);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: var(--text);
}

.hero {
  position: relative;
  padding: clamp(74px, 10vw, 144px) 0 clamp(84px, 11vw, 154px);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  top: 12%;
  right: max(-15vw, -210px);
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(231, 179, 77, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 68px rgba(231, 179, 77, 0.025),
    0 0 0 136px rgba(231, 179, 77, 0.018);
  content: "";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  align-items: end;
  gap: clamp(52px, 8vw, 110px);
}

.status {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  gap: 10px;
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status::before {
  width: 32px;
  height: 1px;
  background: var(--accent);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 970px;
  font-size: clamp(2.65rem, 7vw, 6.65rem);
  font-weight: 790;
  letter-spacing: -0.055em;
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(2.45rem, 6.2vw, 5.8rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 730;
  letter-spacing: -0.042em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 740px;
  margin: 32px 0 0;
  color: #c8cdd4;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
  gap: 18px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  font-weight: 700;
}

.hero-note {
  padding: 24px 0 4px 24px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-note strong {
  display: block;
  margin-bottom: 13px;
  color: var(--text);
  font-size: 0.79rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
  border-top: 1px solid var(--line);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.63fr);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 76px);
  gap: clamp(32px, 8vw, 100px);
}

.section-intro p,
.prose p,
.card p,
.timeline p,
.contact-panel p {
  color: var(--muted);
}

.section-intro p {
  margin: 0;
  font-size: 1.05rem;
}

.section-intro p + p {
  margin-top: 16px;
}

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

.card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}

.card::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(231, 179, 77, 0.13);
  transform: rotate(45deg);
  content: "";
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card p {
  margin: 16px 0 0;
}

.callout {
  position: relative;
  padding: clamp(38px, 7vw, 80px);
  overflow: hidden;
  border: 1px solid rgba(231, 179, 77, 0.25);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 95% 0%, rgba(231, 179, 77, 0.18), transparent 28rem),
    #11151b;
}

.callout h2 {
  max-width: 760px;
}

.callout p {
  max-width: 670px;
  margin: 24px 0 32px;
  color: #c6ccd4;
  font-size: 1.08rem;
}

.region-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: start;
  gap: clamp(40px, 9vw, 120px);
}

.region-label {
  color: var(--accent-bright);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 730;
  letter-spacing: -0.03em;
}

.region-grid p,
.content-grid p {
  color: var(--muted);
}

.region-grid p:first-child,
.content-grid p:first-child {
  margin-top: 0;
}

.fact-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li,
.check-list li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid var(--line);
  color: #d7dbe0;
}

.fact-list li::before,
.check-list li::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.faq-list {
  max-width: 920px;
  margin-top: 48px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: var(--muted);
}

.breadcrumbs {
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #626a74;
  content: "/";
}

.breadcrumbs a {
  color: var(--muted);
}

.prose {
  max-width: 790px;
}

.prose h2 {
  margin: 72px 0 24px;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
}

.prose h3 {
  margin: 38px 0 14px;
}

.prose p {
  margin: 0 0 22px;
  font-size: 1.03rem;
}

.prose a {
  color: var(--text);
}

.timeline {
  counter-reset: timeline;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 112px;
  padding: 0 0 36px 82px;
  counter-increment: timeline;
}

.timeline li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(231, 179, 77, 0.42);
  border-radius: 50%;
  color: var(--accent);
  content: counter(timeline, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 800;
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline h3 {
  margin-bottom: 10px;
}

.timeline p {
  margin: 0;
}

.contact-panel {
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-row {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-of-type {
  margin-bottom: 30px;
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-value {
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
}

.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: #07090c;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding-bottom: 42px;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.footer-copy {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin: 0;
  padding: 0;
  gap: 10px 36px;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #ccd1d7;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  gap: 16px 32px;
  color: #7f8791;
  font-size: 0.86rem;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 84px);
  place-items: center;
  padding: 72px 0;
}

.not-found-code {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.not-found h1 {
  max-width: 800px;
}

.not-found p {
  max-width: 560px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.reveal {
  animation: reveal 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-delay {
  animation-delay: 110ms;
}

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

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .nav-list {
    flex-wrap: wrap;
    padding: 0 0 18px;
    gap: 4px 8px;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: block;
  }

  .header-contact {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-note {
    max-width: 560px;
  }

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

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

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand img {
    max-width: 132px;
    max-height: 38px;
  }

  .brand-fallback {
    font-size: 1.25rem;
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-list a {
    width: 100%;
    min-height: 46px;
    padding-inline: 8px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero::after {
    top: 7%;
    right: -48vw;
    width: 100vw;
  }

  .status {
    font-size: 0.69rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2.45rem, 13.2vw, 4rem);
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .email-link {
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .section-intro,
  .region-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .card {
    min-height: 0;
  }

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

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand {
    min-width: 98px;
  }

  .brand-mark {
    min-width: 94px;
  }

  .brand img {
    max-width: 112px;
  }

  .card,
  .contact-panel {
    padding: 24px;
  }

  .timeline li {
    padding-left: 68px;
  }

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

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

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

  .reveal,
  .reveal-delay {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
