:root {
  --blue: #114ca6;
  --blue-deep: #071f4d;
  --teal: #18ceb3;
  --teal-ink: #03332d;
  --ink: #0e1a2b;
  --muted: #5a6573;
  --line: #e6ebf2;
  --bg: #f4f7fb;
  --max: 1120px;
  --sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
}
.skip:focus { top: 10px; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.freebar {
  background: var(--teal);
  color: var(--teal-ink);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 16px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img { height: 40px; width: auto; }
.brand strong {
  display: block;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}
.brand small {
  display: block;
  color: #0c8b7a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.nav-links a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--teal);
  color: var(--teal-ink);
}
.btn:hover { filter: brightness(.96); }
.btn-lg { padding: 15px 24px; font-size: 16px; }

.hero {
  color: #fff;
  background:
    radial-gradient(640px 280px at 85% 0%, rgba(24,206,179,.2), transparent 55%),
    linear-gradient(150deg, #061833, var(--blue-deep) 42%, var(--blue));
  padding: 56px 0 64px;
}
.hero-grid {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
}
.hero-main {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  min-width: 0;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 10px;
  color: #fff;
}
.hero-kicker {
  margin: 0 0 22px;
  color: #18ceb3;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: .02em;
  line-height: 1.2;
}
.hero-points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.hero-points li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--teal);
}
.hero p {
  margin: 0 0 28px;
  max-width: 38ch;
  font-size: 17px;
  color: rgba(255,255,255,.84);
}
.hero-copy {
  margin: 0;
  max-width: none;
}
.hero-copy p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.84);
}
.hero-copy p:last-child {
  margin-bottom: 0;
}
.hero-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
}

.giant {
  background: var(--teal);
  color: var(--teal-ink);
  text-align: center;
  padding: 28px 16px;
  font-weight: 700;
}

section { padding: 72px 0; }
.section-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.02em;
  color: var(--blue);
}
.lead {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 48ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg);
  border-radius: 16px;
  padding: 22px;
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.band { background: var(--bg); }

.torger {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.torger img {
  width: 100%;
  border-radius: 20px;
}
.specs {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.specs li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.specs strong { color: var(--blue); }

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}
.gallery .tall {
  grid-row: span 2;
  height: 490px;
}

.cta {
  background: linear-gradient(160deg, #061833, var(--blue));
  color: #fff;
  text-align: center;
}
.cta h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
}
.cta p {
  margin: 0 auto 24px;
  max-width: 38ch;
  color: rgba(255,255,255,.82);
}

.dock { display: none; }

.footer {
  background: #05152e;
  color: #c9d7ea;
  padding: 40px 0 22px;
  font-size: 14px;
}
.footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 18px;
}
.footer strong { color: var(--teal); }
.copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
  font-size: 13px;
}

@media (max-width: 800px) {
  .nav-links,
  .nav-cta { display: none; }
  .hero-grid, .hero-main, .torger, .cards, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .hero-photo, .gallery img, .gallery .tall { height: 220px; }
  section { padding: 52px 0; }
  .dock {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .dock .btn { width: 100%; }
  body { padding-bottom: 78px; }
}
