:root {
  --bg: #f3f1ec;
  --paper: rgba(255, 255, 255, 0.72);
  --paper-strong: #ffffff;
  --text: #111111;
  --muted: #5e5a54;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #d74f2a;
  --accent-dark: #ab391b;
  --soft: #ece5dc;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 79, 42, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(17, 17, 17, 0.06), transparent 30%),
    linear-gradient(180deg, #f7f4ef 0%, #ede7de 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(243, 241, 236, 0.8);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.nav-cta,
.button {
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.nav-cta:hover,
.button:hover,
.slot-card:hover .slot-overlay,
.text-link:hover {
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
}

.hero {
  padding: 42px 0 26px;
}

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

.hero-copy,
.hero-panel,
.section,
.site-footer {
  position: relative;
}

.hero-copy,
.hero-panel,
.bonus-card,
.slot-card,
.seo-content,
.site-footer {
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
  border-radius: calc(var(--radius) + 8px);
  background: var(--paper);
  padding: 34px;
}

.eyebrow,
.section-kicker,
.summary-label,
.bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  font-size: 4.4rem;
  margin-top: 18px;
  max-width: 11ch;
}

.hero-text,
.section-head p,
.bonus-card p,
.footer-text,
.footer-notes p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 50ch;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-note {
  margin: 28px 0 0;
}

.hero-note p,
.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--accent);
  font-weight: 600;
}

.hero-summary {
  display: grid;
  gap: 16px;
  align-content: start;
}

.summary-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 232, 223, 0.9));
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.summary-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.summary-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.section {
  padding: 34px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: 18px;
  max-width: 13ch;
}

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

.bonus-card {
  min-height: 280px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.bonus-card-accent {
  background: linear-gradient(180deg, #1b1b1b 0%, #2a2722 100%);
  color: #fff;
}

.bonus-card-accent p,
.bonus-card-accent .bonus-index {
  color: rgba(255, 255, 255, 0.76);
}

.bonus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bonus-index {
  font-size: 0.95rem;
  color: var(--muted);
}

.bonus-card h3 {
  font-size: 1.6rem;
  margin-top: 28px;
  max-width: 12ch;
}

.bonus-card p {
  margin-top: 14px;
}

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

.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  background: #f6f3ee;
}

.slot-name {
  display: block;
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
}

.slot-overlay {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slot-card:hover .slot-overlay,
.slot-card:focus-visible .slot-overlay {
  opacity: 1;
}

.seo-content {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
}

.seo-content > *:first-child {
  margin-top: 0;
}

.seo-content h1,
.seo-content h2,
.seo-content h3 {
  max-width: none;
}

.seo-content .seo-h1-fallback {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.seo-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin: 38px 0 14px;
}

.seo-content h3 {
  font-size: 1.3rem;
  margin: 28px 0 12px;
}

.seo-content p,
.seo-content li,
.seo-content td,
.seo-content th {
  color: var(--muted);
  line-height: 1.8;
}

.seo-content ul,
.seo-content ol {
  padding-left: 20px;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.seo-content th,
.seo-content td {
  text-align: left;
  padding: 14px;
  border: 1px solid var(--line);
}

.section-cta-wrap {
  margin-top: 24px;
}

.site-footer {
  margin: 20px auto 28px;
  width: min(var(--container), calc(100% - 32px));
  padding: 28px 0;
  border-radius: 30px;
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: start;
  width: min(var(--container), calc(100% - 56px));
}

.brand-footer .brand-mark {
  background: #fff;
  color: var(--text);
}

.footer-notes p,
.footer-text {
  color: rgba(255, 255, 255, 0.72);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.2;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-button {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .bonus-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head h2,
  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .top-nav {
    display: none;
  }

  .hero-copy,
  .hero-panel,
  .seo-content,
  .site-footer {
    padding: 22px;
  }

  .slots-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  h1 {
    font-size: 2.7rem;
  }
}
