:root {
  --bg: #0a0b10;
  --paper: rgba(18, 20, 28, 0.88);
  --paper-solid: #12141c;
  --ink: #f6f3ee;
  --muted: #a5acb9;
  --accent: #ff5e36;
  --accent-deep: #ff835d;
  --line: rgba(255, 255, 255, 0.09);
  --success: #75d49d;
  --warn: #ffbf6d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aptos", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 94, 54, 0.24), transparent 24%),
    radial-gradient(circle at right 18%, rgba(68, 106, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #07080c 0%, #10131b 58%, #171b24 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero,
.info-strip,
.trust-grid,
.deals-section,
.faq-section,
.site-footer,
.page-panel,
.legal-panel {
  position: relative;
  z-index: 1;
}

.hero,
.page-panel,
.legal-panel {
  padding: 22px;
  background: var(--paper);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.topbar,
.hero-grid,
.stat-row,
.hero-actions,
.topbar-links,
.section-heading,
.page-header,
.form-grid,
.inline-actions,
.site-footer,
.footer-links,
.summary-row,
.callout-row,
.consent-row {
  display: flex;
}

.topbar,
.section-heading,
.page-header,
.site-footer,
.summary-row {
  justify-content: space-between;
  gap: 20px;
}

.topbar,
.info-strip,
.trust-grid,
.deals-section,
.faq-section,
.site-footer,
.legal-panel,
.page-panel {
  margin-bottom: 24px;
}

.brand,
.hero-actions,
.topbar-links,
.inline-actions {
  align-items: center;
}

.brand {
  display: flex;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(135deg, #ff5e36 0%, #ff8f5e 100%);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 40px rgba(255, 94, 54, 0.35);
}

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

.eyebrow,
.card-label,
.section-kicker,
.deal-meta,
.deal-count,
.footer-note,
.fine-print,
.status-note {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  max-width: 11ch;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.1;
}

h4 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.ghost-link,
.primary-btn,
.secondary-btn,
.accept-btn,
.submit-btn {
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ghost-link {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.hero-grid {
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.3;
  padding: 28px 6px 6px;
}

.hero-text,
.trust-card p,
.faq-card p,
.page-copy p,
.legal-panel p,
.deal-highlights li,
.fine-print,
.status-panel p {
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd0c2;
  font-weight: 700;
}

.hero-actions,
.inline-actions,
.footer-links {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points,
.checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

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

.hero-points li,
.checklist li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.primary-btn,
.secondary-btn,
.accept-btn,
.submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: 700;
}

.primary-btn,
.accept-btn,
.submit-btn {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #ff835d 100%);
  box-shadow: 0 14px 28px rgba(255, 94, 54, 0.24);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-link:hover,
.accept-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
}

.hero-card,
.trust-card,
.faq-card,
.deal-card,
.status-panel,
.form-panel,
.summary-card {
  background: var(--paper-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero-card {
  flex: 0.75;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 94, 54, 0.25), transparent 35%),
    linear-gradient(180deg, #1a1c27 0%, #0f121b 100%);
  color: white;
}

.hero-card .card-label {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}

.hero-card-stack {
  display: grid;
  gap: 14px;
}

.hero-metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.hero-proof {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-proof-btn {
  width: 100%;
}

.stat-row {
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.info-strip,
.trust-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-strip article,
.trust-card,
.faq-card {
  padding: 22px;
}

.info-strip article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.info-strip span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--success) 0%, #4f8d68 100%);
}

.deals-section {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

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

.search-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font: inherit;
  color: var(--ink);
  background: rgba(10, 12, 18, 0.88);
}

.search-callout {
  padding: 14px 16px;
  border-radius: 18px;
  color: #ffd9c9;
  background: rgba(255, 94, 54, 0.1);
  border: 1px solid rgba(255, 94, 54, 0.18);
}

.deal-card {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 94, 54, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.deal-availability {
  margin: 18px 0 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.availability-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.availability-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.option-pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, rgba(255, 94, 54, 0.95), rgba(255, 131, 93, 0.9));
  box-shadow: 0 12px 24px rgba(255, 94, 54, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.empty-state {
  text-align: center;
}

.deal-top,
.price-row,
.deal-tags {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price-row {
  align-items: end;
  margin: 18px 0 12px;
}

.price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

.price-note {
  text-align: right;
}

.savings {
  padding: 10px 12px;
  border-radius: 999px;
  color: #baf2cc;
  background: rgba(117, 212, 157, 0.14);
  font-weight: 800;
  white-space: nowrap;
}

.deal-tags {
  flex-wrap: wrap;
  margin: 18px 0;
}

.deal-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 600;
}

.page-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.page-copy,
.form-panel,
.summary-card,
.status-panel {
  padding: 24px;
}

.form-grid {
  flex-wrap: wrap;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  width: calc(50% - 8px);
}

.field.full {
  width: 100%;
}

.form-section-title {
  margin: 26px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.form-section-title:first-of-type {
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font: inherit;
  background: rgba(10, 12, 18, 0.86);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.consent-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 20px;
}

.consent-row {
  gap: 12px;
  align-items: start;
}

.consent-row input {
  margin-top: 4px;
}

.summary-card {
  display: grid;
  gap: 18px;
}

.summary-row {
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.status-panel {
  margin-top: 18px;
  background: rgba(117, 212, 157, 0.12);
  border-color: rgba(117, 212, 157, 0.18);
  color: #d8f7e2;
}

.warning-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 191, 109, 0.09);
  border: 1px solid rgba(255, 191, 109, 0.14);
  color: #ffe3b7;
}

.legal-panel {
  padding: 28px;
}

.legal-panel h2 {
  font-size: 2.2rem;
  max-width: none;
}

.legal-panel h3 {
  margin-top: 24px;
}

.site-footer {
  align-items: start;
  padding: 22px 24px;
}

@media (max-width: 960px) {
  .hero-points,
  .info-strip,
  .trust-grid,
  .faq-grid,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .topbar,
  .page-header,
  .section-heading,
  .site-footer,
  .deal-top,
  .price-row {
    flex-direction: column;
    align-items: start;
  }

  .price-note {
    text-align: left;
  }

  .field {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero,
  .page-panel,
  .legal-panel,
  .deals-section {
    padding: 18px;
  }
}
