:root {
  color-scheme: dark;
  --ink: #f6f7fb;
  --muted: #bdd0e6;
  --line: rgba(255, 255, 255, 0.16);
  --panel: #101a2e;
  --panel-2: #17243b;
  --navy: #071120;
  --gold: #d7a84d;
  --teal: #34d5c4;
  --coral: #f06c64;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 6vw, 80px);
  background: rgba(7, 17, 32, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  font-weight: 900;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a,
.site-footer a,
.product-card a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.product-card a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 118px clamp(20px, 6vw, 80px) 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.95) 0%, rgba(7, 17, 32, 0.78) 38%, rgba(7, 17, 32, 0.28) 100%),
    url("hero-suite-del-salmista.png") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #101010;
  border-color: var(--gold);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section {
  padding: 80px clamp(20px, 6vw, 80px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.product-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card p:not(.status) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 800;
}

.status {
  display: inline-flex;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(215, 168, 77, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.muted {
  background: #0b1628;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: start;
  max-width: 1160px;
}

.launch-layout p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.checklist {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin: 14px 0;
  color: var(--ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.content-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 128px 24px 80px;
}

.content-page h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.content-page p,
.content-page li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.content-page section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

@media (max-width: 780px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 17, 32, 0.96) 0%, rgba(7, 17, 32, 0.82) 50%, rgba(7, 17, 32, 0.54) 100%),
      url("hero-suite-del-salmista.png") center right / cover no-repeat;
  }

  .product-grid,
  .launch-layout {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(32px, 8.2vw, 36px);
    line-height: 1.06;
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-content {
    max-width: calc(100vw - 40px);
  }
}
