:root {
  color-scheme: dark;
  --bg: #0d0b12;
  --bg-soft: #14121a;
  --bg-accent: #1d1824;
  --primary: #ff3b1f;
  --primary-dark: #e12f16;
  --secondary: #0bbfa5;
  --secondary-dark: #08a48f;
  --ink: #f6f1ec;
  --muted: #b7b0a8;
  --card: #14121a;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Playfair Display", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 59, 31, 0.18), transparent 48%),
    radial-gradient(circle at 85% 0%, rgba(11, 191, 165, 0.2), transparent 44%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 0, 0.15), transparent 45%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(11, 191, 165, 0.45);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--secondary);
  color: #0b0b0f;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 99;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.logo img {
  width: 120px;
  height: auto;
}

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

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 62px 0 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 22px;
}

.hero .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(11, 191, 165, 0.16);
  color: #b7fff2;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, #ff3b1f, #ff7a00);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 59, 31, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 59, 31, 0.3);
}

.btn.secondary {
  background: linear-gradient(135deg, #0bbfa5, #17d6b8);
  box-shadow: 0 12px 26px rgba(11, 191, 165, 0.24);
}

.hero-card {
  background: rgba(20, 18, 26, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  border: 1px solid var(--border);
}

.media-frame {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.section {
  padding: 42px 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 12px;
}

.section p.lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.stat strong {
  display: block;
  font-size: 20px;
}

.table-wrap {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.table-wrap th,
.table-wrap td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-wrap th {
  color: var(--muted);
  font-weight: 700;
}

.table-wrap tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.callout {
  background: linear-gradient(135deg, rgba(11, 191, 165, 0.2), rgba(255, 59, 31, 0.12));
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
}

.callout h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.key-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.key-list li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

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

.faq details {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 12px 16px;
}

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

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

.faq p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}

.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  background: rgba(10, 10, 14, 0.65);
  color: var(--ink);
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.banner-strip {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 34px 0 50px;
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.footer-grid h4 {
  margin-bottom: 10px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  font-size: 13px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 40px;
  }

  .site-header {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
