*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0b0d10;
  --bg-soft: #111418;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f1ec;
  --muted: #a5abb4;
  --muted-strong: #7f8691;
  --accent: #88a1ff;
  --accent-soft: rgba(136, 161, 255, 0.14);
  --white: #ffffff;
  --container: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(136, 161, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #0b0d10 0%, #0d1014 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(11, 13, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9eb2ff, #6f8cff);
  color: var(--white);
  font-family: "Instrument Serif", serif;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(111, 140, 255, 0.22);
}

.brand-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-pill {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  padding: 96px 0 76px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(136, 161, 255, 0.08), transparent 20%),
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.04), transparent 18%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 24px;
  font-size: clamp(46px, 8vw, 88px);
  font-weight: 600;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  max-width: 680px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-text,
.section-text,
.info-card p,
.step-card p,
.statement-text,
.contact-value,
.footer-copy,
.footer-note {
  color: var(--muted);
}

.hero-text {
  margin-top: 24px;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.75;
}

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

.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #93aaff, #7894ff);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(120, 148, 255, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9cb2ff, #86a0ff);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-panel {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.panel-card,
.info-card,
.step-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 22px;
  min-height: 180px;
}

.panel-label,
.section-label,
.contact-label,
.step-number {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-label,
.section-label,
.contact-label {
  color: var(--muted-strong);
}

.panel-card p,
.info-card p,
.step-card p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.panel-card h3 {
  margin-top: 14px;
}

.section {
  padding: 92px 0;
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.025));
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-label {
  margin-bottom: 14px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.52);
}

.section-text {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
}

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

.info-card {
  padding: 28px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 16px;
}

.step-card {
  padding: 26px;
}

.step-number {
  color: var(--accent);
  margin-bottom: 12px;
}

.statement-panel {
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(136, 161, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #121720, #0f1319);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.statement-text {
  font-size: 18px;
  line-height: 1.85;
  max-width: 640px;
}

.contact-grid {
  align-items: center;
}

.contact-card {
  padding: 30px;
}

.contact-row {
  display: grid;
  gap: 6px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-value {
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
}

.footer-note {
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .statement-grid,
  .card-grid.three-col,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(17, 20, 24, 0.98);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 76px;
    padding-bottom: 62px;
  }

  .section {
    padding: 72px 0;
  }

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

  .hero-panel,
  .statement-panel,
  .info-card,
  .step-card,
  .contact-card,
  .panel-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 46px);
  }
}
