:root {
  --lp-width: 552px;
  --header-height: 64px;
  --cta-height: clamp(84px, 23vw, 128px);
  --ink: #17202a;
  --paper: #f8f7f2;
  --accent: #0b8f8c;
  --warm: #f0b84d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(11, 143, 140, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(240, 184, 77, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #eef7f5 0%, #f8f7f2 48%, #fff3df 100%);
  background-size: 28px 28px, 28px 28px, auto;
  background-attachment: fixed;
  padding-bottom: calc(var(--cta-height) + env(safe-area-inset-bottom) + 16px);
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  display: none;
  width: calc((100vw - var(--lp-width)) / 2);
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.4)),
    repeating-linear-gradient(135deg, rgba(23, 32, 42, 0.05) 0 1px, transparent 1px 14px);
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

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

.page-shell {
  width: 100%;
  max-width: var(--lp-width);
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 32px rgba(23, 32, 42, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  min-height: var(--header-height);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(210px, 58vw);
  min-height: 40px;
}

.brand img {
  width: 100%;
  height: auto;
}

.lp-main,
.lp-sections {
  width: 100%;
}

.lp-sections img {
  width: 100%;
  height: auto;
  margin: 0;
}

.lp-panel {
  position: relative;
  width: 100%;
}

.inline-cta {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 7vw, 42px);
  display: block;
  width: min(91%, 504px);
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 8px;
  transform: translateX(-50%);
}

.inline-cta:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

.inline-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.first-panel .inline-cta {
  bottom: max(-20px, -3vw);
}

.sixth-panel .inline-cta {
  bottom: max(-34px, -5vw);
}

.access-map {
  position: absolute;
  left: 8.15%;
  top: 59.55%;
  width: 83.9%;
  height: 28.95%;
  border: 0;
  border-radius: 4px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 36px 20px 44px;
  background: #17202a;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: min(170px, 50vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer small {
  font-size: 12px;
  letter-spacing: 0;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100vw - 24px), var(--lp-width));
  height: var(--cta-height);
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.24);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.fixed-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.fixed-cta:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

.fixed-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  :root {
    --header-height: 72px;
    --cta-height: 118px;
  }

  body::before,
  body::after {
    display: block;
  }

  .page-shell {
    min-height: 100vh;
  }

  .site-header {
    min-height: var(--header-height);
  }
}
