:root {
  --bg: #071018;
  --bg-2: #0c1824;
  --ink: #12202c;
  --paper: #f3efe6;
  --paper-2: #e7e1d4;
  --cyan: #02bfff;
  --cyan-2: #7ae7ff;
  --sand: #e4b07a;
  --text: #e8eef3;
  --muted: #93a3b0;
  --line: rgba(232, 238, 243, 0.12);
  --danger: #ff6b6b;
  --ok: #1f8a4c;
  --shadow: 0 24px 60px rgba(4, 10, 16, 0.35);
  --header: 84px;
  --font: "Manrope", sans-serif;
  --display: "Unbounded", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #050b12;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.topbar a:hover { color: var(--cyan-2); }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(7, 16, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header .wrap {
  display: flex;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  flex-shrink: 0;
}
.header-cta { flex-shrink: 0; }
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.14em;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  margin-top: 3px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
}
.nav {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 8px;
  font-size: 14px;
  font-weight: 600;
}
.nav a { color: #d5dee6; position: relative; }
.nav a:hover { color: white; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-cyan { background: var(--cyan); color: #04202b; }
.btn-cyan:hover { background: var(--cyan-2); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-dark { background: var(--ink); color: white; }
.menu-btn {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
}
.photo-wrap { margin-top: 28px; }
.form .btn { margin-top: 16px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; overflow-wrap: anywhere; }
h1 {
  margin: 14px 0 16px;
  font-size: clamp(32px, 8.5vw, 68px);
  line-height: 1.02;
}
.lead {
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions { display: flex; gap: 12px; margin: 28px 0 34px; flex-wrap: wrap; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}
.stat {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 18px;
}
.stat span { color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
}
.route-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(320px, 80%);
  background: rgba(7, 16, 24, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.route-card small { color: var(--muted); }
.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-weight: 800;
}
.route-line em {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  font-style: normal;
}

.marquee {
  margin-top: 42px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 36s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.marquee-group span {
  white-space: nowrap;
  padding-right: 64px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section { padding: 88px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}
.section-head p { max-width: 420px; color: var(--muted); margin: 0; }
h2 { font-size: clamp(32px, 4vw, 48px); margin: 8px 0 0; line-height: 1.05; }

.paper {
  background: var(--paper);
  color: var(--ink);
}
.paper .kicker { color: #0a7ea8; }
.paper .section-head p, .paper .muted { color: #5d6b76; }

.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.card {
  background: white;
  border-radius: 22px;
  padding: 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 0 rgba(18,32,44,0.04);
}
.card.wide { grid-row: span 2; padding: 0; overflow: hidden; background: #101820; color: white; min-height: 420px; }
.card.wide img { height: 230px; width: 100%; object-fit: cover; }
.card.wide div { padding: 22px; }
.num {
  font-family: var(--display);
  color: var(--cyan);
  font-size: 13px;
}
.paper .num { color: #0a7ea8; }
.card h3 { margin: 10px 0 8px; font-size: 22px; }
.card p { margin: 0; color: #5d6b76; }
.card.wide p { color: #b7c3cc; }

.lanes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.lane-list { display: grid; gap: 10px; }
.lane {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}
.lane b { color: var(--cyan-2); font-size: 13px; letter-spacing: 0.08em; }
.lane span { color: var(--muted); font-size: 14px; }
.photo-stack { position: relative; }
.photo-stack img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
}
.float-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 230px;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: white;
  border-radius: 22px;
  padding: 22px;
  min-height: 220px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  color: #0a7ea8;
  font-size: 13px;
}
.step h3 { margin: 18px 0 8px; font-size: 20px; }
.step p { margin: 0; color: #5d6b76; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.about-copy p { color: var(--muted); font-size: 17px; }
.reqs {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.reqs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.reqs span { color: var(--muted); }
.side-photo {
  border-radius: 28px;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact {
  background:
    radial-gradient(600px 280px at 90% 0%, rgba(2,191,255,0.16), transparent 60%),
    var(--bg-2);
}
.form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d7d0c3;
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid #0a7ea8;
  border-color: transparent;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 13px;
  color: #3e4c57;
}
.check input { width: auto; margin-top: 3px; }
.form-note { min-height: 22px; margin: 10px 0 0; font-size: 14px; }
.form-note.ok { color: var(--ok); }
.form-note.err { color: #b42318; }
.hp { position: absolute; left: -9999px; }

footer {
  padding: 28px 0 22px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
  background: #050b12;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 32px;
  padding: 36px 0 28px;
  text-align: center;
}
.footer-brand {
  min-width: 0;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.footer-nav a:hover { color: white; }
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-contacts a { color: var(--cyan-2); font-weight: 700; }
.footer-meta {
  display: flex;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
footer .brand-sub { display: block; }

@media (max-width: 1180px) {
  .nav, .header-cta { display: none; }
  .header { position: sticky; }
  .header .wrap { gap: 12px; width: min(1180px, calc(100% - 32px)); }
  .brand { min-width: 0; }
  .header .brand-sub { display: none; }
  footer .brand-sub { display: block; }
  .menu-btn { display: inline-flex; }
  .header.open .nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #071018;
    padding: 8px 22px 18px;
    border-bottom: 1px solid var(--line);
    gap: 0;
    margin: 0;
  }
  .header.open .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .bento { grid-template-columns: 1fr 1fr; }
  .card.wide { grid-column: 1 / -1; grid-row: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero-grid, .lanes, .split { gap: 28px; }
}

@media (max-width: 860px) {
  .wrap { width: min(1180px, calc(100% - 32px)); }
  section { padding: 64px 0; }
  .hero { padding: 36px 0 20px; }
  .hero-grid, .lanes, .split, .fields { grid-template-columns: 1fr; }
  .hero-grid > *, .lanes > *, .split > *, .bento > * { min-width: 0; }
  .hero-visual img { height: 280px; }
  .route-card { left: 12px; right: 12px; width: auto; bottom: 12px; }
  .stats { grid-template-columns: 1fr; max-width: none; }
  .section-head { flex-direction: column; align-items: start; }
  .photo-stack img, .side-photo { height: 260px; min-height: 0; }
  .float-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .lane { grid-template-columns: 56px 1fr; }
  .lane span { grid-column: 2; }
  .reqs div { flex-direction: column; align-items: flex-start; gap: 4px; }
  .form { padding: 18px; border-radius: 20px; }
  .hero-actions .btn, .form .btn { width: 100%; }
  h1 { font-size: clamp(30px, 9vw, 42px); }
  h2 { font-size: clamp(28px, 7vw, 40px); }
}

@media (max-width: 640px) {
  .bento, .steps { grid-template-columns: 1fr; }
  .card.wide { grid-column: auto; }
  .topbar .wrap { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 14px; letter-spacing: 0.08em; }
  .card, .step { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
