:root {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 14%, rgba(229, 9, 20, 0.08), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.03), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(229, 9, 20, 0.04), transparent 30%),
    linear-gradient(180deg, #08090c 0%, #0c0d12 48%, #09090d 100%);
  color: #f4f4f5;
  line-height: 1.6;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.14);
  color: #ffb6bc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #e50914, #c40812);
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.26);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-btn:hover,
.hero-btn:focus-visible,
.related-link:hover,
.related-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero-panel {
  padding: 20px;
  border-radius: 22px;
  background: rgba(10, 10, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
}

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

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.fact-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 4px;
}

.fact-card strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb6bc;
}

.fact-card span {
  font-size: 1rem;
  color: #fff;
}

.section {
  margin-top: 28px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.pricing-side {
  display: grid;
  gap: 16px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

.content-card,
.faq-panel,
.related-panel {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.content-card h2,
.faq-panel h2,
.related-panel h2 {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.section-list {
  margin: 0;
  padding-left: 18px;
}

.section-list li + li {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.22);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #ffb6bc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 24%;
  white-space: nowrap;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 16%;
  white-space: nowrap;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 60%;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.page-footer {
  margin-top: 28px;
  padding: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-table {
    min-width: 520px;
  }

  .pricing-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
  }
}

/* Release 3 polish overrides */
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, 0.055) 0%, rgba(229, 9, 20, 0.025) 18%, transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 20%),
    radial-gradient(circle at 14% 88%, rgba(0, 224, 255, 0.02) 0%, transparent 28%),
    linear-gradient(180deg, #07080b 0%, #090b10 46%, #08090c 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.04) 0%, transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.018) 0%, transparent 22%),
    radial-gradient(circle at 14% 84%, rgba(0, 224, 255, 0.018) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.92;
}

.pricing-layout {
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.pricing-breakdown-card {
  display: grid;
  gap: 12px;
}

.pricing-breakdown-card h2 {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.08;
}

.pricing-card-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  max-width: 68ch;
}

.pricing-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-table {
  table-layout: auto;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 20%;
  white-space: nowrap;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 16%;
  white-space: nowrap;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: auto;
}

.pricing-table td:nth-child(3) {
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-table tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.012);
}

.pricing-table tr:hover td {
  background: rgba(229, 9, 20, 0.045);
}

@media (max-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-table {
    min-width: 560px;
  }
}
