:root {
  --bg: #eef5ff;
  --paper: #ffffff;
  --paper-soft: #f5f9ff;
  --ink: #15233a;
  --muted: #5d6b83;
  --line: #d7e5fb;
  --accent: #2f6df6;
  --accent-2: #5aa7ff;
  --accent-3: #123a87;
  --shadow: 0 22px 50px rgba(20, 46, 94, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(47,109,246,0.14), transparent 0 24%),
    radial-gradient(circle at 88% 18%, rgba(90,167,255,0.18), transparent 0 20%),
    linear-gradient(180deg, #edf5ff 0%, #e4efff 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: radial-gradient(rgba(0,0,0,.35) .45px, transparent .55px);
  background-size: 9px 9px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0;
  backdrop-filter: blur(10px);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 28px rgba(28, 38, 48, 0.08);
}

.logo-link img { width: 148px; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
}
.main-nav a:hover { color: var(--ink); }

.header-btn,
.cta-primary,
.footer-btn,
.cta-secondary {
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-btn,
.cta-primary,
.footer-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47,109,246,0.22);
}
.cta-secondary {
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.header-btn:hover,
.cta-primary:hover,
.footer-btn:hover,
.cta-secondary:hover { transform: translateY(-1px); }

.intro { padding: 30px 0 22px; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: 26px;
  align-items: center;
}
.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}
.intro h1,
.editorial-main h2,
.section-top h2,
.showcase-text h2,
.faq-head h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.intro h1 { font-size: clamp(38px, 5.2vw, 72px); }
.intro-lead,
.editorial-main p,
.editorial-side li,
.benefit-card p,
.showcase-text p,
.faq-head p,
.faq-list p,
.site-footer p,
.quote-band p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}
.intro-lead { margin: 18px 0 0; max-width: 690px; }
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}
.intro-media {
  position: relative;
}
.image-frame {
  padding: 14px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.image-frame img { border-radius: 24px; width: 100%; }
.mini-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  min-width: 210px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 36px rgba(27,39,53,0.12);
}
.mini-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 800;
}
.mini-card a { font-weight: 800; color: var(--accent); }

.quote-band { padding: 8px 0 22px; }
.quote-band p {
  margin: 0;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.72);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
}

.editorial,
.benefits,
.showcase,
.faq-section { padding: 18px 0 26px; }
.editorial-grid,
.showcase-grid,
.faq-layout {
  display: grid;
  gap: 22px;
}
.editorial-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}
.editorial-main,
.editorial-side,
.benefit-card,
.showcase-text,
.showcase-poster,
.faq-head,
.faq-list,
.site-footer {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.editorial-main,
.editorial-side,
.benefit-card,
.showcase-text,
.faq-head,
.faq-list,
.site-footer,
.showcase-poster { padding: 26px; }
.editorial-main h2,
.section-top h2,
.showcase-text h2,
.faq-head h2 { font-size: clamp(30px, 3.6vw, 50px); }
.editorial-main p + p,
.showcase-text p + p { margin-top: 16px; }
.editorial-side h3,
.benefit-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}
.editorial-side ul { margin: 0; padding-left: 20px; display: grid; gap: 10px; }

.section-top {
  max-width: 860px;
  margin-bottom: 18px;
}
.section-top > span,
.faq-head > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.accent-card {
  background: linear-gradient(180deg, rgba(31,138,112,0.12), rgba(255,255,255,0.9));
}

.showcase-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
  align-items: center;
}
.showcase-poster img {
  width: 100%;
  border-radius: 22px;
}

.faq-layout { grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); align-items: start; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
}
.faq-list details + details { padding-top: 18px; }
.faq-list details:last-child { border-bottom: 0; padding-bottom: 0; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
  padding-right: 32px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
}
.faq-list details[open] summary::after { content: '–'; }
.faq-list p { margin: 12px 0 0; }

.site-footer {
  margin: 10px auto 30px;
  width: min(1160px, calc(100% - 32px));
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.site-footer p { margin: 0; max-width: 760px; }

@media (max-width: 1024px) {
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-grid,
  .editorial-grid,
  .showcase-grid,
  .faq-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { position: static; padding: 12px 0 0; }
  .header-row {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 26px;
  }
  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .benefit-grid { grid-template-columns: 1fr; }
  .mini-card {
    position: static;
    margin-top: 14px;
  }
  .intro h1 { font-size: clamp(34px, 10vw, 50px); }
  .editorial-main h2,
  .section-top h2,
  .showcase-text h2,
  .faq-head h2 { font-size: clamp(28px, 9vw, 38px); }
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}


.section-note {
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--accent);
  font-weight:800;
}

.routes-block { padding: 18px 0 26px; }
.routes-grid {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
  gap:22px;
}
.routes-copy, .routes-points {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.routes-copy h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  letter-spacing: -.03em;
  font-size: clamp(30px, 3.2vw, 48px);
}
.routes-copy p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 17px;
}
.routes-points {
  display:grid;
  gap:14px;
  align-content:center;
}
.route-item {
  padding:18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245,249,255,0.96), rgba(234,243,255,0.96));
  border:1px solid var(--line);
}
.route-item strong { display:block; margin-bottom:6px; font-size:18px; }
.route-item span { color: var(--muted); line-height:1.6; }

.js-domain-link.is-copied { color: var(--accent-3); }

@media (max-width: 900px) {
  .routes-grid { grid-template-columns: 1fr; }
}
