:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #111113;
  --panel: #1b1b1f;
  --panel-2: #24242a;
  --line: #36363d;
  --text: #f6f2ea;
  --muted: #b8b1a5;
  --accent: #e44935;
  --accent-2: #f2b84b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

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

.site-header {
  align-items: center;
  background: rgba(17, 17, 19, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand,
.site-header nav,
.footer nav,
.actions,
.trust-row,
.access-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.brand {
  font-weight: 900;
  gap: 10px;
}

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

.site-header nav,
.footer nav,
.actions,
.trust-row,
.access-actions {
  gap: 14px;
}

.site-header nav a {
  color: var(--muted);
  font-size: 14px;
}

.site-header nav .nav-cta {
  background: var(--accent);
  border-radius: 8px;
  color: #fffaf3;
  font-weight: 900;
  padding: 10px 14px;
}

.hero {
  display: grid;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(46px, 8vw, 92px) clamp(18px, 4vw, 48px) 52px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(17, 17, 19, 0.98) 0%, rgba(17, 17, 19, 0.82) 46%, rgba(17, 17, 19, 0.34) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-media {
  inset: 24px clamp(18px, 4vw, 48px) 46px auto;
  max-width: 620px;
  min-width: min(46vw, 620px);
  opacity: 0.92;
  position: absolute;
  width: 46vw;
  z-index: -2;
}

.browser-frame {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  height: 100%;
  min-height: 530px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic span {
  background: #4f4f57;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.feed {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.post {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 88px;
  width: 76%;
}

.post.wide {
  width: 100%;
}

.post.short {
  width: 58%;
}

.stare-preview {
  bottom: 18px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
  height: 390px;
  position: absolute;
  right: 24px;
}

.stare-preview img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 45% 45% 30% 30% / 18% 18% 22% 22%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 226px;
}

.stare-preview span {
  background: rgba(17, 17, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  bottom: 16px;
  color: #fffaf3;
  font-size: 13px;
  font-weight: 900;
  left: 50%;
  padding: 8px 10px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-copy {
  align-self: center;
  display: grid;
  gap: 22px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(66px, 12vw, 142px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

h3 {
  font-size: 19px;
}

.lede {
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
  max-width: 620px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fffaf3;
}

.button.secondary {
  background: rgba(27, 27, 31, 0.88);
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 11px;
}

.section {
  display: grid;
  gap: 30px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 48px);
}

.section-title {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.section-title p,
.access-card p,
.included-grid p,
.steps p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.included-grid,
.steps {
  display: grid;
  gap: 14px;
}

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

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

.included-grid article,
.steps article,
.access-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.included-grid strong,
.steps span {
  color: var(--accent-2);
  font-weight: 900;
}

.steps span {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  height: 34px;
  place-items: center;
  width: 34px;
}

.setup-section {
  padding-top: 0;
}

.access-section {
  padding-top: 0;
}

.access-card {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 230px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 48px);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
    padding-top: 14px;
    position: static;
  }

  .hero {
    min-height: 640px;
    padding-top: 50px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.98) 0%, rgba(17, 17, 19, 0.9) 58%, rgba(17, 17, 19, 0.64) 100%);
  }

  .hero-media {
    inset: 0 14px 28px 14px;
    min-width: 0;
    opacity: 0.2;
    width: auto;
  }

  .hero-copy {
    align-self: start;
  }

  .browser-frame {
    height: 100%;
    min-height: 0;
  }

  .stare-preview {
    height: 300px;
  }

  .included-grid,
  .steps,
  .access-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .actions .button,
  .access-actions .button {
    width: 100%;
  }

  .stare-preview {
    height: 260px;
    right: 10px;
  }

  .stare-preview img {
    width: 152px;
  }
}
