:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5c6a66;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --line: #d9ddd5;
  --teal: #0e766f;
  --teal-dark: #064e49;
  --amber: #c27a1a;
  --leaf: #dcead2;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(217, 221, 213, 0.78);
  background: rgba(247, 244, 237, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #f7f4ed;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  max-width: 420px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(14, 118, 111, 0.1);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(460px, 54svh);
  align-items: center;
  overflow: hidden;
  padding: clamp(54px, 7vw, 88px) clamp(20px, 7vw, 90px);
  background-image: url("/static/hero-infra.png");
  background-position: center right;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 16, 0.88) 0%, rgba(10, 18, 16, 0.72) 36%, rgba(10, 18, 16, 0.18) 74%),
    linear-gradient(0deg, rgba(10, 18, 16, 0.42), rgba(10, 18, 16, 0.04));
}

.hero-content {
  position: relative;
  max-width: 660px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
.plan-button {
  background: var(--teal);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

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

.identity-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.identity-band div {
  min-width: 0;
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--surface);
}

.identity-band span,
.spec-list dt,
.fine-print,
.note {
  color: var(--muted);
}

.identity-band span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-band strong {
  display: block;
  line-height: 1.3;
}

.section,
.policy-page,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0;
}

.plans-section {
  padding-top: clamp(34px, 5vw, 58px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading h2,
.service-band h2,
.contact-section h2,
.policy-content h2,
.site-footer h2 {
  margin: 0;
  letter-spacing: 0;
}

.section-heading h2,
.service-band h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section-heading p,
.service-points p,
.contact-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(23, 33, 31, 0.08);
}

.plan-card.featured {
  border-color: rgba(14, 118, 111, 0.38);
  box-shadow: var(--shadow);
}

.plan-label {
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--leaf);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.plan-tagline {
  min-height: 76px;
  color: var(--muted);
}

.price {
  margin: 8px 0 20px;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.12;
}

.price span,
.price small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.spec-list dt {
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  text-align: right;
}

.feature-list,
.footer-links {
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--amber);
  content: "";
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.note {
  margin: 20px 0 0;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 7vw, 90px);
  background: #17211f;
  color: #ffffff;
}

.service-band .eyebrow {
  color: #e3a849;
}

.service-points {
  display: grid;
  gap: 16px;
}

.service-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.policy-link {
  display: grid;
  min-height: 156px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  text-decoration: none;
}

.policy-link:hover {
  border-color: rgba(14, 118, 111, 0.48);
  box-shadow: 0 16px 40px rgba(23, 33, 31, 0.08);
}

.policy-link span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 36px;
  align-items: start;
}

address {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--teal);
  padding: 6px 0 6px 20px;
  color: var(--muted);
  font-style: normal;
}

address span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.page-hero {
  padding: clamp(72px, 10vw, 122px) clamp(20px, 7vw, 90px);
  background: #17211f;
  color: #ffffff;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.policy-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.policy-meta {
  position: sticky;
  top: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
}

.policy-meta h2 {
  margin-top: 0;
  font-size: 1rem;
}

.policy-meta p {
  margin: 12px 0;
  color: var(--muted);
}

.policy-content {
  display: grid;
  gap: 24px;
}

.policy-content section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.policy-content h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.policy-content p {
  color: var(--muted);
}

.site-footer {
  padding: 42px clamp(20px, 7vw, 90px) 32px;
  background: #101614;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 30px;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer p,
.site-footer a,
.footer-links {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.fine-print {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 920px) {
  .site-header,
  .contact-section,
  .policy-page,
  .service-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .identity-band,
  .plans-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 430px;
    background-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 18, 16, 0.9) 0%, rgba(10, 18, 16, 0.7) 70%, rgba(10, 18, 16, 0.42) 100%),
      linear-gradient(0deg, rgba(10, 18, 16, 0.42), rgba(10, 18, 16, 0.16));
  }

  .hero h1 {
    max-width: 13ch;
  }

  .policy-meta {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .site-nav a {
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 430px;
    padding: 44px 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .policy-page,
  .contact-section {
    width: min(100% - 28px, 1180px);
  }

  .plan-card,
  .policy-link {
    padding: 18px;
  }

  .spec-list div {
    display: grid;
    gap: 2px;
  }

  .spec-list dd {
    text-align: left;
  }
}
