
:root {
  --ink: #050914;
  --navy: #071120;
  --panel: rgba(8, 18, 33, .76);
  --panel-soft: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .14);
  --line-bright: rgba(44, 214, 226, .35);
  --text: #f3f7fb;
  --muted: #98a8bb;
  --blue: #0077d9;
  --blue-bright: #00a2ff;
  --teal: #1fd1d7;
  --teal-deep: #07929d;
  --gold: #d6a44a;
  --gold-bright: #f1d383;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 5%, rgba(31, 209, 215, .16), transparent 30rem),
    radial-gradient(circle at 85% 10%, rgba(0, 119, 217, .20), transparent 34rem),
    radial-gradient(circle at 50% 105%, rgba(214, 164, 74, .10), transparent 32rem),
    linear-gradient(135deg, #02060d 0%, #071120 44%, #03060c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
  opacity: .28;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .65;
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

.ambient-one {
  width: 32rem;
  height: 32rem;
  left: -14rem;
  top: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,209,215,.12), transparent 65%);
}

.ambient-two {
  width: 36rem;
  height: 36rem;
  right: -16rem;
  top: -8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,162,255,.15), transparent 65%);
}

.page {
  position: relative;
  z-index: 1;
  width: min(100% - 38px, var(--max));
  margin: 0 auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #eaf4ff;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(214, 164, 74, .36);
  box-shadow: 0 0 28px rgba(31, 209, 215, .14);
}

.brand span {
  font-size: 13px;
  letter-spacing: .15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a,
.nav-links button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: .18s ease;
}

.nav-links a:hover,
.nav-links button:hover {
  color: #fff;
  border-color: var(--line);
  background: rgba(255,255,255,.045);
}

.nav-links button {
  color: #ecfbff;
  border-color: rgba(31, 209, 215, .32);
  background: rgba(31, 209, 215, .08);
}

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 46px;
  padding: 52px 0 76px;
}

.hero-logo-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: clamp(22px, 4vw, 44px);
  background:
    radial-gradient(circle at 50% 20%, rgba(31,209,215,.12), transparent 42%),
    radial-gradient(circle at 50% 85%, rgba(214,164,74,.10), transparent 46%),
    rgba(3, 8, 17, .66);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, .44),
    inset 0 1px 0 rgba(255,255,255,.10);
  overflow: hidden;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(214, 164, 74, .20);
  pointer-events: none;
}

.hero-logo-card img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.42));
}

.eyebrow,
.section-kicker,
.section-heading p {
  margin: 0 0 16px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .93;
  letter-spacing: -.075em;
  font-weight: 900;
  text-wrap: balance;
}

.lead {
  margin: 28px 0 0;
  max-width: 650px;
  color: #c8d5e4;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 22px;
  cursor: pointer;
  color: #eef8ff;
  background: rgba(255,255,255,.055);
  font-weight: 850;
  transition: .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.085);
}

.button.primary {
  border-color: rgba(31, 209, 215, .52);
  background:
    linear-gradient(135deg, rgba(0, 162, 255, .36), rgba(31, 209, 215, .19)),
    rgba(255,255,255,.05);
  box-shadow: 0 16px 48px rgba(0, 162, 255, .16);
}

.button.secondary {
  border-color: rgba(214, 164, 74, .30);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 24px 90px rgba(0,0,0,.24);
}

.signal-strip div {
  min-height: 118px;
  padding: 26px;
  background: rgba(5, 12, 24, .78);
  backdrop-filter: blur(20px);
}

.signal-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 900;
}

.signal-strip strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.section,
.method,
.contact {
  padding: 108px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}

.section h2,
.method h2,
.contact h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(34px, 5.4vw, 70px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 900;
  text-wrap: balance;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(31,209,215,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .45;
}

.card span {
  display: inline-flex;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 76px;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 56px;
  align-items: start;
}

.method-copy p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.method-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(5, 12, 24, .70);
  backdrop-filter: blur(22px);
}

.method-panel div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.method-panel div:last-child { border-bottom: 0; }

.method-panel span {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.method-panel p {
  margin: 0;
  color: #c9d5e4;
  line-height: 1.55;
}

.statement {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.statement p {
  margin: 0 auto;
  max-width: 1000px;
  font-family: Cinzel, serif;
  font-size: clamp(36px, 6.5vw, 86px);
  line-height: 1.04;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue-bright), var(--teal), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.contact-link {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--teal);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -.045em;
  font-weight: 900;
}

.footer {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p { margin: 0; }
.footer a { color: #edf8ff; font-weight: 800; }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.is-open { display: flex; }

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, .80);
  backdrop-filter: blur(16px);
}

.contact-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(214, 164, 74, .24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 0%, rgba(31,209,215,.16), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(0,162,255,.13), transparent 32%),
    linear-gradient(180deg, rgba(12, 24, 43, .97), rgba(4, 9, 18, .98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, .58);
  padding: 28px;
}

.contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: #eaf4ff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.contact-panel h2 {
  margin: 0;
  padding-right: 48px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -.055em;
}

.modal-lead {
  margin: 12px 0 24px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 590px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #d8e7f6;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  color: #f1f7ff;
  padding: 13px 14px;
  outline: none;
  transition: .18s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31,209,215,.72);
  box-shadow: 0 0 0 4px rgba(31,209,215,.10);
}

.field select option { color: #07111f; }

.form-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.form-status {
  min-height: 22px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.form-status.error { color: #fca5a5; }

.submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.submit-row .button { border: 0; }

@media (max-width: 940px) {
  .hero,
  .method,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .signal-strip,
  .cards {
    grid-template-columns: 1fr;
  }

  .card { min-height: 235px; }
  .card span { margin-bottom: 42px; }
  .nav-links a { display: none; }
}

@media (max-width: 640px) {
  .page { width: min(100% - 28px, var(--max)); }
  .brand span { display: none; }
  .hero-logo-card { border-radius: 26px; }
  .hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px 18px; border-radius: 24px; }
  .contact { align-items: flex-start; flex-direction: column; }
  .footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}
