:root {
  --bg: #071815;
  --panel: rgba(8, 28, 24, 0.82);
  --panel-strong: rgba(10, 34, 29, 0.94);
  --ink: #effffb;
  --muted: #9cc8bc;
  --line: rgba(162, 230, 210, 0.12);
  --accent: #67f2c0;
  --accent-deep: #33b48c;
  --highlight: #98c8ff;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(103, 242, 192, 0.14), transparent 28%),
    radial-gradient(circle at left bottom, rgba(152, 200, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #071815 0%, #0b221d 100%);
  font-family: "Manrope", system-ui, sans-serif;
}

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

code,
pre {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0 44px;
}

.hero-copy,
.hero-visual,
.feature,
.shot,
.install-layout pre {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  overflow: hidden;
  padding: 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.78rem, 6.35vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.lede,
.section-head p:last-child,
.feature p,
.shot p {
  color: var(--muted);
  line-height: 1.8;
}

.lede {
  margin: 20px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #8ff5ff);
  color: #08201b;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

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

.proof-pills span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  display: grid;
  align-content: center;
  align-self: center;
  height: fit-content;
  padding: 12px;
}

.hero-visual-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #071c18;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
}

.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 28px 0;
}

.section-head {
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.card-grid,
.tour-grid,
.install-layout {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature,
.shot {
  padding: 24px;
}

.feature h3,
.shot h3 {
  margin-bottom: 12px;
}

.tour-grid {
  grid-template-columns: 1fr;
}

.shot {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  padding: 0;
}

.shot img {
  min-height: 280px;
  aspect-ratio: auto;
}

.shot div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
}

.install-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.install-layout pre {
  margin: 0;
  padding: 22px;
  color: #effffb;
  background: linear-gradient(180deg, rgba(8, 17, 15, 0.88), rgba(8, 17, 15, 0.98));
  overflow-x: auto;
}

@media (max-width: 980px) {
  .hero,
  .card-grid,
  .install-layout {
    grid-template-columns: 1fr;
  }

  .shot {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-copy,
  .hero-visual,
  .feature,
  .shot,
  .install-layout pre {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 28px;
  }
}
