:root {
  color-scheme: dark;
  --bg: #07100c;
  --surface: #0b1b13;
  --surface-strong: #10281c;
  --card: #0c2017;
  --line: rgba(112, 245, 172, 0.2);
  --line-strong: rgba(112, 245, 172, 0.42);
  --text: #f3fff8;
  --muted: #b4c8bb;
  --soft: #7f998b;
  --accent: #5df0a4;
  --accent-strong: #17b86e;
  --ink: #05100b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(93, 240, 164, 0.12), transparent 30rem),
    linear-gradient(180deg, #08130f 0%, var(--bg) 38%, #050907 100%);
  color: var(--text);
}

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

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(93, 240, 164, 0.08);
}

.nav {
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 10px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav .nav-cta {
  color: var(--ink);
  background: var(--accent);
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 52px;
  padding: 42px 0 96px;
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 720px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.trust-row {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

.product-panel {
  min-height: 610px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(93, 240, 164, 0.1), transparent 36%),
    rgba(9, 31, 21, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-topbar {
  display: flex;
  gap: 8px;
  margin: 4px 0 22px;
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.panel-header h2 {
  margin: 0;
  font-size: 30px;
}

.panel-label {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-header button {
  min-width: 112px;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.sort-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.sort-chip {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sort-chip.active {
  background: var(--accent);
  color: var(--ink);
}

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

.media-card {
  min-height: 174px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(180deg, #284736, #102219);
}

.media-card.tall {
  min-height: 238px;
}

.media-card.pale {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(180deg, #d9f2de, #496957);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 55%, rgba(0, 0, 0, 0.74)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 255, 255, 0.035) 32px 33px);
}

.metric {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.66);
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 94px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section-heading p,
.split-section p,
.pricing-cards p,
.cta-section p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-grid article,
.pricing-cards article,
.cta-section,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 32, 23, 0.78);
}

.feature-grid article,
.pricing-cards article {
  padding: 24px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.check-list span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-section {
  padding-bottom: 56px;
}

.pricing-cards strong {
  display: block;
  margin-top: 24px;
  font-size: 24px;
}

.featured-card {
  border-color: var(--line-strong) !important;
  background:
    linear-gradient(160deg, rgba(93, 240, 164, 0.16), transparent 45%),
    rgba(12, 32, 23, 0.92) !important;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 42px 0 96px;
  padding: 30px;
}

.cta-section h2 {
  margin-bottom: 10px;
}

.cta-section p {
  margin-bottom: 0;
}

.site-footer {
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 14px;
}

.site-footer nav {
  gap: 16px;
}

.legal-page {
  max-width: 860px;
  padding: 48px 0 96px;
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.legal-card {
  margin-top: 28px;
  padding: 28px;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 26px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

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

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .product-panel {
    min-height: auto;
  }

  .feature-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 34px;
    padding-bottom: 70px;
  }

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

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

  .panel-header button {
    width: 100%;
  }

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

  .section {
    padding: 70px 0;
  }
}
