:root {
  color-scheme: dark;
  --ink: #0b0d0e;
  --surface: #151819;
  --surface-strong: #202425;
  --paper: #f4f6f3;
  --muted: #a9b0ad;
  --line: #343a38;
  --mint: #64d8a6;
  --coral: #ff705d;
  --yellow: #f4ca52;
  --blue: #6f9cff;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: var(--mint);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header--solid {
  position: sticky;
  top: 0;
  background: rgba(11, 13, 14, 0.96);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--paper);
  font-size: 15px;
  font-weight: 620;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--mint);
}

.hero {
  position: relative;
  height: 78svh;
  min-height: 440px;
  max-height: 760px;
  overflow: hidden;
  background: var(--surface);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 7, 0.58);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: absolute;
  z-index: 2;
  inset: 72px 0 0;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 820;
}

.hero p {
  max-width: 630px;
  margin: 0 0 26px;
  color: #eef1ee;
  font-size: 21px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--mint);
  border-radius: 7px;
  background: var(--mint);
  color: #07130e;
  font-weight: 760;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.button--secondary {
  background: rgba(11, 13, 14, 0.72);
  color: var(--paper);
}

.band {
  padding: 80px 20px;
}

.band--light {
  background: var(--paper);
  color: var(--ink);
}

.band--surface {
  background: var(--surface);
}

.band--accent {
  background: var(--coral);
  color: #160706;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

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

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 40px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.band--light .section-heading p,
.band--accent .section-heading p {
  color: #39403d;
}

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

.feature {
  border-top: 3px solid var(--mint);
  padding: 22px 0 0;
}

.feature:nth-child(2) {
  border-color: var(--yellow);
}

.feature:nth-child(3) {
  border-color: var(--blue);
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.style-card {
  grid-column: span 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.style-card:nth-child(4),
.style-card:nth-child(5) {
  grid-column: span 3;
}

.style-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.style-card figcaption {
  padding: 15px 16px 17px;
}

.style-card strong,
.style-card span {
  display: block;
}

.style-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.size-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 54px;
}

.size-layout h2 {
  margin-bottom: 14px;
  font-size: 40px;
}

.size-layout p {
  color: #3d4441;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, 54px);
  gap: 10px;
  padding: 24px;
  border: 1px solid #c9cecb;
  border-radius: 8px;
  background: #e2e7e3;
}

.home-grid span {
  border-radius: 8px;
  background: #c8ceca;
}

.home-grid .widget-small,
.home-grid .widget-wide,
.home-grid .widget-large {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.widget-small {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  background: var(--mint) !important;
}

.widget-wide {
  grid-column: 1 / span 4;
  grid-row: 3 / span 2;
  background: var(--yellow) !important;
}

.widget-large {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
  background: var(--coral) !important;
}

.plan-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 44px;
}

.plan-strip h2 {
  margin-bottom: 12px;
  font-size: 40px;
}

.plan-strip p {
  margin-bottom: 0;
  font-size: 19px;
}

.plan-points {
  display: grid;
  gap: 12px;
}

.plan-point {
  padding: 14px 16px;
  border: 1px solid rgba(22, 7, 6, 0.3);
  border-radius: 8px;
  font-weight: 720;
}

.availability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0;
}

.availability h2 {
  margin-bottom: 6px;
  font-size: 30px;
}

.availability p {
  margin: 0;
  color: var(--muted);
}

.status-tag {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 760;
}

.site-footer {
  padding: 44px 20px 56px;
  border-top: 1px solid var(--line);
  background: #080a0b;
}

.footer-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 30px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-grid p,
.footer-grid li {
  color: var(--muted);
  font-size: 15px;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 8px;
}

.legal-hero {
  padding: 88px 20px 52px;
  background: var(--surface);
}

.legal-hero .container,
.legal-content {
  max-width: 820px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: 48px;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  margin: 0 auto;
  padding: 58px 20px 86px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 28px 0 8px;
  font-size: 21px;
}

.legal-content p,
.legal-content li {
  color: #d7dcda;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content .callout {
  margin: 32px 0;
  padding: 20px;
  border-left: 4px solid var(--mint);
  background: var(--surface);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 750;
}

.faq details p {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .nav {
    min-height: 64px;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero__content {
    inset: 64px 0 0;
  }

  h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 18px;
  }

  .feature-grid,
  .size-layout,
  .plan-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .style-card,
  .style-card:nth-child(4),
  .style-card:nth-child(5) {
    grid-column: span 3;
  }

  .size-layout,
  .plan-strip {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .nav,
  .hero__content {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand span {
    display: none;
  }

  .hero {
    height: 76svh;
  }

  .hero__content {
    inset: 64px 0 0;
    padding-bottom: 22px;
  }

  h1,
  .legal-hero h1 {
    font-size: 38px;
  }

  .hero p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .band {
    padding: 58px 20px;
  }

  .section-heading h2,
  .size-layout h2,
  .plan-strip h2 {
    font-size: 32px;
  }

  .style-card,
  .style-card:nth-child(4),
  .style-card:nth-child(5) {
    grid-column: span 6;
  }

  .home-grid {
    grid-template-rows: repeat(4, 42px);
    padding: 16px;
  }

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

@media (max-height: 620px) {
  .hero {
    height: 76svh;
    min-height: 390px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 24px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: 38px;
  }

  .hero p {
    margin-bottom: 14px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
