:root {
  --ink: #0b0d10;
  --ink-soft: #2d3138;
  --paper: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --muted: #6e7480;
  --line: rgba(11, 13, 16, 0.1);
  --line-strong: rgba(11, 13, 16, 0.16);
  --accent: #b02822;
  --accent-soft: #f7e8e6;
  --blue: #0b5cad;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(245, 245, 247, 0.74);
  backdrop-filter: saturate(180%) blur(22px);
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 21px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-word span {
  color: var(--accent);
}

.brand-word small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(11, 13, 16, 0.72);
  font-size: 13px;
  font-weight: 620;
}

nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  border-color: rgba(11, 13, 16, 0.12);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #f7f8fb;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 44%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.18) 68%),
    linear-gradient(90deg, rgba(247, 248, 251, 0.94), rgba(247, 248, 251, 0.56) 42%, rgba(247, 248, 251, 0.08));
}

.hero-inner {
  padding: 124px 0 86px;
}

.page-hero {
  padding: 126px 0 72px;
  background:
    linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 780;
  line-height: 0.94;
}

.page-hero h1 {
  color: var(--ink);
}

h2 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 760;
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 720;
  line-height: 1.12;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 430;
  line-height: 1.35;
}

.page-hero .hero-copy {
  color: var(--muted);
}

.actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 112px 0;
  background: var(--paper);
}

.statement {
  padding: 132px 0;
  background: #fff;
}

.statement p {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 730;
  line-height: 1.04;
  text-align: center;
}

.statement strong {
  color: var(--accent);
}

.quiet {
  background: var(--paper);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 28px 90px rgba(10, 15, 25, 0.08);
  backdrop-filter: blur(22px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 110px rgba(10, 15, 25, 0.12);
}

.feature-card span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.feature-card h3 {
  max-width: 320px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.feature-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.glass-section {
  padding: 128px 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(176, 40, 34, 0.13), transparent 30%),
    linear-gradient(180deg, #fff, #f5f5f7);
}

.glass-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 56px;
  align-items: center;
  min-height: 560px;
  padding: clamp(32px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 36px 120px rgba(10, 15, 25, 0.12);
  backdrop-filter: blur(28px) saturate(140%);
}

.glass-list {
  display: grid;
  gap: 12px;
}

.glass-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-weight: 700;
}

.glass-list a::after {
  content: ">";
  color: var(--muted);
}

.section:nth-of-type(even),
.intro,
.support,
.cities {
  background: #fff;
}

.split,
.support-panel,
.process-layout,
.cta-inner,
.footer-inner,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.lead,
.section-head p,
.card p,
.steps p,
.proof-grid p,
.cta p,
.footer p,
.faq p,
td span {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.38;
}

.narrow {
  max-width: 900px;
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.card-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card,
.proof-grid article,
.faq details {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card span,
.steps span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.support-panel {
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #0b0d10;
  box-shadow: var(--shadow);
}

.support-panel h2 {
  color: #fff;
}

.support-panel .lead {
  color: rgba(255, 255, 255, 0.68);
}

.check-grid {
  display: grid;
  gap: 12px;
}

.check-grid div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

.detail-layout .check-grid div {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-soft);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 640;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

td strong,
td span,
td a {
  display: block;
}

td strong {
  color: var(--ink);
}

td a {
  margin-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 640;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 21px 24px;
  color: var(--ink);
  font-weight: 720;
}

.faq p {
  padding: 0 24px 22px;
}

.cta {
  padding: 96px 0;
  background: #0b0d10;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}

.cta .button.primary {
  background: #fff;
  color: var(--ink);
}

.footer {
  padding: 56px 0 42px;
  background: #fff;
}

.footer-inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.45fr) minmax(220px, 0.55fr);
}

.footer-brand {
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 620;
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

  .split,
  .support-panel,
  .process-layout,
  .cta-inner,
  .footer-inner,
  .detail-layout,
  .card-grid,
  .proof-grid,
  .feature-row,
  .glass-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 56px;
  }

  .brand-word {
    font-size: 20px;
  }

  .brand-word small {
    font-size: 10px;
  }

  .header-cta {
    min-height: 36px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    padding: 106px 0 54px;
  }

  .page-hero {
    padding: 104px 0 54px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .actions,
  .section-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .cta {
    padding: 72px 0;
  }

  .statement {
    padding: 82px 0;
  }

  .statement p {
    text-align: left;
  }

  .feature-card {
    min-height: 340px;
    padding: 26px;
    border-radius: 24px;
  }

  .glass-section {
    padding: 82px 0;
  }

  .glass-panel {
    min-height: 0;
    padding: 26px;
    border-radius: 26px;
  }

  .support-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .card,
  .steps article {
    padding: 24px;
    border-radius: 18px;
  }
}
