:root {
  --bg: #081019;
  --bg-soft: #0d1826;
  --panel: rgba(10, 18, 29, 0.82);
  --panel-2: rgba(15, 26, 40, 0.9);
  --border: rgba(139, 184, 255, 0.18);
  --text: #eef5ff;
  --muted: #9aaec6;
  --accent: #6ca7ff;
  --accent-2: #6de0be;
  --accent-3: #13273e;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(108, 167, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(109, 224, 190, 0.12), transparent 26%),
    linear-gradient(180deg, #07111a 0%, #09131f 32%, #08111a 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 14, 23, 0.72);
  border-bottom: 1px solid rgba(139, 184, 255, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  overflow: hidden;
}

.brand-logo img {
  width: 114%;
  height: 114%;
  max-width: none;
  margin: -7%;
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.01em;
}

.brand em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a:hover,
.footer-links a:hover,
.nav a:hover {
  color: var(--text);
}

.hero-band,
.section {
  padding: 56px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(14, 24, 38, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

h1 {
  margin-top: 18px;
  font-size: clamp(40px, 7vw, 68px);
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  max-width: 820px;
}

h3 {
  font-size: 20px;
}

.lede,
.section-heading p,
.info-card p,
.gallery-copy p,
.plan-card li,
.cta-panel p,
.legal p,
.legal li,
.footer {
  color: var(--muted);
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(139, 184, 255, 0.22);
  background: linear-gradient(135deg, rgba(108, 167, 255, 0.2), rgba(109, 224, 190, 0.12));
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  box-shadow: none;
}

.hero-points {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.hero-points li + li {
  margin-top: 8px;
}

.hero-media,
.promo-frame,
.gallery-card,
.section-contrast,
.site-panel,
.legal-panel,
.cta-panel,
.info-card,
.plan-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.promo-frame {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(13, 24, 38, 0.96), rgba(8, 18, 29, 0.9));
}

.promo-frame img {
  border-radius: 20px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading p {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 17px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.plan-card,
.cta-panel,
.legal-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.info-card p,
.plan-card ul {
  margin-top: 12px;
}

.plan-card ul {
  padding-left: 20px;
}

.plan-tier {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-plan {
  background: linear-gradient(180deg, rgba(18, 33, 51, 0.95), rgba(12, 22, 36, 0.95));
}

.section-contrast {
  background: linear-gradient(180deg, rgba(11, 21, 34, 0.78), rgba(8, 17, 28, 0.42));
}

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

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--panel-2);
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.gallery-card-wide {
  grid-column: 1 / -1;
}

.gallery-copy {
  padding: 18px 20px 22px;
}

.gallery-copy p {
  margin-top: 10px;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ide-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(12, 21, 33, 0.88);
  box-shadow: var(--shadow);
}

.ide-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ide-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(139, 184, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.ide-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ide-card h3 {
  font-size: 18px;
}

.version-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.version-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 184, 255, 0.18);
  background: rgba(108, 167, 255, 0.12);
  color: #dce8ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.compatibility-note {
  margin-top: 18px;
  color: var(--muted);
}

.compatibility-note p {
  margin: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.site-footer {
  padding: 18px 0 34px;
  border-top: 1px solid rgba(139, 184, 255, 0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.brand-footer strong {
  font-size: 15px;
}

.brand-footer .brand-logo {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 14px;
}

.legal-shell {
  padding: 36px 0 56px;
}

.legal-hero {
  margin-bottom: 24px;
}

.legal-hero .eyebrow {
  margin-bottom: 14px;
}

.legal-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.legal-panel {
  background: rgba(12, 21, 33, 0.86);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.legal h2,
.legal h3 {
  margin-top: 28px;
  scroll-margin-top: 92px;
}

.legal ul {
  padding-left: 22px;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .plan-grid,
  .gallery-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-shell,
  .site-nav {
    align-items: flex-start;
  }

  .nav-shell {
    flex-direction: column;
    padding: 14px 0;
  }

  .cta-panel {
    justify-content: flex-start;
  }

  .footer-grid {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .hero-band,
  .section,
  .legal-shell {
    padding: 34px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .promo-frame,
  .gallery-card,
  .info-card,
  .plan-card,
  .cta-panel,
  .legal-panel {
    border-radius: 18px;
  }

  .site-nav,
  .footer-links,
  .nav {
    gap: 12px;
  }

  .meta {
    flex-direction: column;
    gap: 8px;
  }
}
