:root {
  --bg: #fff9f3;
  --surface: #ffffff;
  --surface-alt: #fff3e8;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #eadfd2;
  --primary: #ff7a18;
  --primary-2: #ffb347;
  --dark: #111827;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #fffaf5 35%, #ffffff 100%);
}

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

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 249, 243, 0.9);
  border-bottom: 1px solid rgba(234, 223, 210, 0.75);
}

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

.brand {
  font-weight: 800;
  font-size: 1rem;
}

.brand-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 4px;
}

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

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.15s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--dark);
  background: white;
  border: 1px solid var(--line);
}

.btn-dark {
  color: white;
  background: var(--dark);
}

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 0;
}

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

.hero-grid,
.feature-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.feature-grid,
.split-grid,
.footer-grid {
  grid-template-columns: 1fr 1fr;
}

.eyebrow,
.section-kicker,
.section-kicker-light {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  background: rgba(255, 122, 24, 0.12);
  color: #c2410c;
}

.section-kicker-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7b2;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 16px 0;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 12px 0;
}

h3 {
  margin: 0 0 8px;
}

.lead,
.section-heading p,
.muted-text,
.panel p,
.footer p,
.business-details p,
.cart-item-meta,
.product-copy p,
.program-copy p,
.info-box p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card,
.panel,
.feature-panel,
.hero-card,
.program-card,
.product-card,
.cart-box {
  background: var(--surface);
  border: 1px solid rgba(234, 223, 210, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.hero-card {
  padding: 18px;
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
}

.hero-tags {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-tags span {
  text-align: center;
  font-weight: 700;
  padding: 12px;
  background: #fff3e8;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 16px;
}

.section {
  padding: 36px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.2), rgba(255,255,255,0));
}

.section-heading {
  margin-bottom: 22px;
}

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

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

.program-card,
.product-card {
  overflow: hidden;
}

.product-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.program-copy,
.product-copy,
.panel,
.feature-panel,
.cart-box {
  padding: 22px;
}

.dark-panel {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
}

.dark-panel p,
.dark-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.info-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid var(--line);
}

.cart-header,
.cart-total-row,
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: 0;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  background: white;
}

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

.business-details p {
  margin: 10px 0;
}

.paypal-field {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 12px 14px;
}

.payment-status {
  margin-top: 20px;
}

.status-box {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.status-box.success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.status-box.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  margin-top: 30px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .feature-grid,
  .split-grid,
  .footer-grid,
  .card-grid,
  .shop-grid,
  .hero-stats,
  .hero-tags,
  .field.two-up {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    height: 320px;
  }
}
