:root {
  --bg: #05090d;
  --surface: #0d1319;
  --surface-2: #111920;
  --ink: #f2f6f8;
  --muted: #87939f;
  --brand: #55c8ff;
  --line: #1e2a34;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header,
.hero,
.domain-tabs,
.directions,
.drive-panel,
.facts,
.news,
.request-section,
.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  margin-right: auto;
  font-size: 17px;
  font-weight: 800;
  color: var(--brand);
}
.brand span { color: #fff; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #a6b0ba;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--brand); }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 11px;
}
.menu-button span { display: block; height: 2px; margin: 4px 0; background: #fff; }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: .9fr .95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 640px;
  height: 640px;
  border: 1px solid #173244;
  border-radius: 50%;
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
}
.hero h1 {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 62px;
  line-height: .98;
}
.hero p {
  max-width: 560px;
  color: #b1bac3;
  font-size: 19px;
  line-height: 1.58;
}
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--brand);
  font-weight: 800;
  cursor: pointer;
}
.primary-button { background: var(--brand); color: #041018; }
.ghost-button { color: #fff; background: transparent; }
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: end;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #0e2735 0%, rgba(14,39,53,.15) 48%, transparent 70%);
}
.hero-visual img {
  width: 86%;
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 38px 45px rgba(0,0,0,.45));
}

.domain-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.domain-tabs a {
  min-height: 58px;
  padding: 20px;
  color: #8c98a4;
  border-right: 1px solid var(--line);
  font-size: 13px;
}
.domain-tabs a:last-child { border-right: 0; }
.domain-tabs a:hover { color: var(--brand); background: #071019; }

.directions,
.facts,
.news {
  padding: 96px 0;
}
.directions h2,
.facts h2 {
  margin: 0 0 24px;
  max-width: 960px;
  font-size: 46px;
  line-height: 1.12;
}
.section-lead {
  margin: 0 0 54px;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.direction-card {
  min-height: 285px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.direction-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 22px;
  line-height: 1.14;
}
.direction-card img {
  position: absolute;
  right: -16px;
  bottom: -18px;
  width: 88%;
  height: 190px;
  object-fit: contain;
  opacity: .95;
}

.drive-panel {
  margin-top: 72px;
  min-height: 500px;
  padding: 54px;
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 70px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
}
.drive-panel > img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 36px 42px rgba(0,0,0,.5));
}
.drive-panel h2 {
  margin: 0 0 22px;
  font-size: 44px;
  line-height: 1.1;
}
.drive-panel p { color: var(--muted); line-height: 1.6; }
.drive-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.drive-panel li {
  padding: 16px 10px;
  border-bottom: 1px solid var(--line);
  color: #aeb8c1;
  font-weight: 700;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.facts-grid strong {
  display: block;
  color: var(--brand);
  font-size: 36px;
  line-height: 1;
}
.facts-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-row h2 { margin: 0; font-size: 38px; }
.section-row span { color: var(--muted); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.news-card {
  min-height: 260px;
  width: 100%;
  border: 1px solid var(--line);
  padding: 22px;
  text-align: left;
  font: inherit;
  color: #fff;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.news-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.86)); }
.news-card time, .news-card h3 { position: relative; z-index: 1; }
.news-card time { margin-bottom: 8px; color: rgba(255,255,255,.68); font-size: 13px; }
.news-card h3 { margin: 0; font-size: 18px; line-height: 1.3; }

.request-section {
  max-width: none;
  width: 100%;
  margin: 36px 0 72px;
  padding: 62px max(48px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 44px;
  align-items: start;
  background: linear-gradient(100deg, #0a6f9a, #082038);
}
.request-section h2 {
  margin: 0;
  max-width: 690px;
  font-size: 42px;
  line-height: 1.12;
}
.request-form {
  display: grid;
  gap: 12px;
}
.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}
.request-form input::placeholder,
.request-form textarea::placeholder { color: #9db5c5; }
.request-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8d1df;
  font-size: 13px;
  line-height: 1.35;
}
.request-form input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--brand);
}
.form-status { margin: 0; min-height: 18px; color: var(--brand); font-weight: 800; }

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

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.7);
}
.news-modal.open { display: flex; }
.news-modal__panel {
  position: relative;
  width: min(720px, 100%);
  padding: 34px;
  background: #101820;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.news-modal__panel time { display: block; margin-bottom: 12px; color: var(--brand); font-weight: 800; }
.news-modal__panel h2 { margin: 0 0 18px; font-size: 30px; line-height: 1.2; }
.news-modal__panel p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.news-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header, .hero, .domain-tabs, .directions, .drive-panel, .facts, .news, .footer {
    width: min(100% - 32px, 1180px);
  }
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    border: 1px solid var(--line);
    background: #071019;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .hero, .drive-panel, .request-section { grid-template-columns: 1fr; }
  .direction-grid, .facts-grid, .news-grid, .domain-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: 46px; }
  .hero::after { display: none; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; padding: 44px 0; }
  .hero h1, .directions h2, .facts h2, .drive-panel h2, .request-section h2 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 340px; }
  .domain-tabs, .direction-grid, .facts-grid, .news-grid, .drive-panel ul { grid-template-columns: 1fr; }
  .drive-panel { padding: 28px; gap: 24px; }
  .drive-panel > img { height: 260px; }
  .request-section { padding: 34px 18px; }
  .footer { flex-direction: column; align-items: flex-start; padding: 24px 0; }
}
