:root {
  --night: #091423;
  --slate: #13253d;
  --slate-soft: rgba(19, 37, 61, 0.74);
  --copper: #c7804a;
  --copper-deep: #8c4d28;
  --cream: #f6ede4;
  --mist: #dce7f7;
  --line: rgba(255, 255, 255, 0.12);
  --success: #76d2b0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --site-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at top, rgba(227, 173, 119, 0.22), transparent 24%),
    linear-gradient(180deg, #0c1729 0%, #07101c 100%);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
}

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

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

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

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

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

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

.brand img {
  width: 48px;
  height: 48px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-mark span {
  font-size: 0.86rem;
  color: rgba(246, 237, 228, 0.72);
}

.header-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
}

.header-links a {
  color: rgba(246, 237, 228, 0.88);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #1f1209;
  background: linear-gradient(135deg, #f1c085 0%, #c87d47 100%);
  box-shadow: 0 12px 28px rgba(199, 128, 74, 0.28);
}

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

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(118, 210, 176, 0.12);
  border: 1px solid rgba(118, 210, 176, 0.24);
  color: var(--success);
  font-size: 0.92rem;
}

.hero h1,
.page-title {
  margin: 18px 0 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(246, 237, 228, 0.82);
  font-size: 1.13rem;
  line-height: 1.7;
}

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

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

.hero-gridlist div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.hero-gridlist strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.hero-gridlist span {
  color: rgba(246, 237, 228, 0.74);
  font-size: 0.96rem;
}

.showcase-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(9, 20, 35, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-card::before,
.showcase-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.showcase-card::before {
  inset: auto auto 30px -70px;
  width: 180px;
  height: 180px;
  background: rgba(118, 210, 176, 0.14);
}

.showcase-card::after {
  inset: -40px -40px auto auto;
  width: 220px;
  height: 220px;
  background: rgba(199, 128, 74, 0.18);
}

.showcase-panel {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(39, 60, 89, 0.9), rgba(12, 20, 35, 0.92)),
    #101a29;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.showcase-top img {
  width: 56px;
  height: 56px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 237, 228, 0.78);
  font-size: 0.92rem;
}

.showcase-result {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-result strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.showcase-result ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 237, 228, 0.8);
  line-height: 1.6;
}

.section {
  padding: 42px 0;
}

.section-tight {
  padding: 24px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 640px;
  margin: 0;
  color: rgba(246, 237, 228, 0.76);
  line-height: 1.7;
}

.feature-grid,
.support-grid,
.value-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: rgba(246, 237, 228, 0.76);
  line-height: 1.68;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(199, 128, 74, 0.16), rgba(118, 210, 176, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(199, 128, 74, 0.24);
}

.price-badge {
  justify-self: end;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(4, 12, 22, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: right;
}

.price-badge strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 2rem;
}

.price-badge span {
  color: rgba(246, 237, 228, 0.7);
}

.legal-hero {
  padding: 68px 0 30px;
}

.legal-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.support-intro p:last-child {
  margin-bottom: 0;
}

.legal-meta {
  margin: 0 0 20px;
  color: rgba(246, 237, 228, 0.72);
}

.legal-card h2 {
  margin: 32px 0 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.7rem;
}

.legal-card p,
.legal-card li {
  color: rgba(246, 237, 228, 0.82);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  padding: 36px 0 56px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 237, 228, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .support-grid,
  .value-grid,
  .faq-grid,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .hero-gridlist {
    grid-template-columns: 1fr;
  }

  .price-badge {
    justify-self: start;
    text-align: left;
  }

  .section-head,
  .footer-bar {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header .site-shell {
    flex-direction: column;
    align-items: start;
  }

  .header-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 42px;
  }

  .showcase-card,
  .legal-card {
    padding: 22px;
  }

  .showcase-panel {
    padding: 18px;
  }
}
