:root {
  --accent-blue: #2563eb;
  --accent-blue-light: #dbeafe;
  --accent-on-text: #ffffff;
  --accent-teal: #0ea5e9;
  --brand-cyan: #00bae2;
  --brand-cyan-deep: #0098be;
  --border-subtle: #e2e8f0;
  --page-bg: #ffffff;
  --surface-1: #f5f7fa;
  --surface-2: #edf0f5;
  --surface-3: #e2e7ef;
  --text-primary: #0f1729;
  --text-secondary: #4a5568;
  --text-muted: #8896ab;
  --shadow-soft: 0 22px 60px rgba(15, 23, 41, 0.08);
  --shadow-card: 0 24px 56px rgba(15, 23, 41, 0.06);
  --gradient-accent: linear-gradient(180deg, var(--brand-cyan) 0%, var(--brand-cyan-deep) 100%);
  --radius-card: 0;
  --site-width: 1440px;
  --gutter: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: "JetBrains Mono", monospace;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  width: min(var(--site-width), 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu > a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.nav-menu > a:hover,
.nav-menu > a:focus-visible {
  color: var(--text-primary);
}

.button-nav {
  padding: 10px 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 580px;
  gap: 48px;
  align-items: center;
  min-height: 720px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-block: 80px;
}

.eyebrow-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #e0f7fc;
  color: var(--brand-cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-cyan);
}

.hero h1,
.section-header h2,
.cta-stack h2,
.location-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(50px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero p,
.section-copy,
.feature-body p,
.address-block p,
.contact-list span,
.hours-block p,
.footer-brand p,
.footer-links a,
.footer-bottom p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero p {
  max-width: 560px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease,
    color 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  background: var(--gradient-accent);
  color: var(--accent-on-text);
  box-shadow: 0 14px 34px rgba(0, 152, 190, 0.22);
}

.button-secondary,
.button-outline {
  border-color: var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
}

.button-outline {
  color: var(--text-primary);
}

.button-block {
  width: 100%;
}

.hero-media img,
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  height: 580px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.divider,
.pricing-rule,
.footer-rule {
  height: 1px;
  background: var(--border-subtle);
}

.space-section,
.cta-band {
  background: var(--surface-1);
}

.space-stack,
.pricing-stack,
.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-block: 100px;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-block: 80px;
  text-align: center;
}

.pricing-section,
.location-section {
  background: var(--page-bg);
}

.location-section {
  padding-block: 80px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header.centered {
  align-items: center;
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--brand-cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
}

.section-header h2,
.cta-stack h2 {
  font-size: clamp(40px, 5.3vw, 56px);
  line-height: 1;
}

.section-copy {
  max-width: 700px;
  font-size: 14px;
  line-height: 1.7;
}

.section-copy.compact {
  max-width: 580px;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-card);
}

.feature-card img {
  height: 260px;
  object-fit: cover;
}

.feature-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}

.feature-index {
  color: var(--brand-cyan);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.feature-body h3,
.pricing-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-body p {
  font-size: 13px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  justify-content: center;
  gap: 24px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--border-subtle);
  background: var(--page-bg);
  box-shadow: var(--shadow-card);
}

.pricing-card-featured {
  border-width: 2px;
  border-color: var(--brand-cyan);
}

.pricing-tag,
.term-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
}

.pricing-tag-muted,
.term-pill-muted {
  background: var(--surface-3);
  color: var(--text-secondary);
}

.pricing-tag-accent,
.term-pill-accent {
  background: var(--gradient-accent);
  color: var(--accent-on-text);
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.price {
  font-family: "Oswald", sans-serif;
  font-size: clamp(44px, 6vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.price-unit {
  color: var(--text-muted);
  font-size: 16px;
}

.term-switcher {
  display: flex;
  gap: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  font-size: 13px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(var(--brand-cyan), var(--brand-cyan)) center/2px 8px no-repeat,
    linear-gradient(var(--brand-cyan), var(--brand-cyan)) center/8px 2px no-repeat;
  transform: rotate(45deg);
}

.cta-actions {
  justify-content: center;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 64px;
  align-items: center;
}

.location-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-title {
  font-size: 40px;
}

.address-block,
.contact-list,
.hours-block,
.footer-brand,
.footer-links > div {
  display: flex;
  flex-direction: column;
}

.address-block {
  gap: 8px;
  font-size: 14px;
}

.contact-list {
  gap: 12px;
}

.contact-list a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 13px;
}

.contact-list svg,
.social-links svg {
  width: 16px;
  height: 16px;
  color: var(--brand-cyan);
}

.hours-block {
  gap: 4px;
}

.hours-block span,
.footer-links span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.hours-block p {
  font-size: 13px;
}

.map-card {
  height: 340px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: var(--page-bg);
}

.footer-stack {
  gap: 40px;
  padding-block: 48px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  gap: 12px;
}

.footer-logo {
  font-size: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links > div {
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom {
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 11px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links .fill-current {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 32px;
  }

  .hero,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block: 32px 48px;
  }

  .hero-copy {
    order: 2;
    padding-block: 0;
  }

  .hero-media {
    order: 1;
    height: min(70vw, 580px);
  }

  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    justify-items: stretch;
  }

  .pricing-card {
    max-width: none;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .nav {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 20px;
    background: var(--page-bg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .section-header h2,
  .cta-stack h2,
  .location-title {
    font-size: 40px;
  }

  .space-stack,
  .pricing-stack {
    padding-block: 80px;
    gap: 48px;
  }

  .feature-card img {
    height: 220px;
  }

  .pricing-card {
    padding: 28px;
  }

  .term-switcher,
  .hero-actions,
  .cta-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-nav {
    width: 100%;
  }

  .map-card {
    height: 260px;
  }
}
