:root {
  --page-bg: #f3ede4;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: #fffaf3;
  --ink: #10233f;
  --muted: #5d697d;
  --line: rgba(16, 35, 63, 0.12);
  --accent: #0f766e;
  --accent-deep: #115e59;
  --accent-soft: rgba(15, 118, 110, 0.1);
  --warm: #d97706;
  --warm-soft: rgba(217, 119, 6, 0.12);
  --shadow-lg: 0 26px 70px rgba(16, 35, 63, 0.13);
  --shadow-md: 0 16px 36px rgba(16, 35, 63, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(217, 119, 6, 0.16), transparent 26%),
    linear-gradient(180deg, #f8f4ec 0%, var(--page-bg) 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 20px 16px 56px;
}

.hero,
.section-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(245, 238, 228, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 24px;
}

.hero::before,
.hero::after,
.section-block::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -70px;
  background: rgba(15, 118, 110, 0.09);
}

.hero::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -70px;
  background: rgba(217, 119, 6, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.eyebrow,
.section-kicker,
.panel-label,
.feature-kicker,
.store-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--accent-deep);
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--warm));
}

.hero-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.55rem, 10vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lede {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.lede strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #f8fffe;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.22);
}

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

.hero-panel,
.panel-grid,
.feature-list,
.region-grid,
.store-grid {
  display: grid;
  gap: 14px;
}

.panel-card,
.feature-card,
.region-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.panel-card-accent {
  background:
    linear-gradient(140deg, rgba(15, 118, 110, 0.92), rgba(17, 94, 89, 0.95)),
    var(--surface);
  color: #effcf9;
}

.panel-card-accent .panel-label,
.panel-card-accent h2,
.panel-card-accent p {
  color: inherit;
}

.panel-label,
.section-kicker,
.feature-kicker,
.store-label {
  color: var(--accent-deep);
}

.panel-card h2,
.section-intro h2,
.feature-card h3,
.region-card h3,
.store-card h3 {
  margin: 8px 0 10px;
}

.panel-card h2 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.panel-card p,
.section-intro p,
.feature-card p,
.region-card p,
.store-card p,
.footer-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.section-block {
  margin-top: 18px;
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 24px 18px;
}

.section-block::before {
  width: 160px;
  height: 160px;
  top: -70px;
  right: -70px;
  background: rgba(255, 255, 255, 0.18);
}

.section-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.section-intro h2 {
  font-size: clamp(1.85rem, 7vw, 2.8rem);
  line-height: 1.04;
}

.feature-list,
.region-grid,
.store-grid {
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.feature-card p + p,
.store-card p + p {
  margin-top: 8px;
}

.region-section {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.92), rgba(243, 237, 228, 0.92));
}

.region-card {
  background: rgba(255, 255, 255, 0.68);
}

.store-card {
  position: relative;
  overflow: hidden;
  background: rgba(16, 35, 63, 0.96);
  color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 20px;
}

.store-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.store-card .store-label,
.store-card h3 {
  color: #f8fafc;
}

.store-card p {
  color: rgba(241, 245, 249, 0.8);
}

.store-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 700;
}

.button-static {
  cursor: default;
  opacity: 0.7;
}

.button-static:hover,
.button-static:focus-visible {
  transform: none;
}

.site-footer {
  width: min(100%, var(--max-width));
  margin: 24px auto 0;
  padding: 20px 16px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 12px;
}

.footer-link {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (min-width: 720px) {
  .page-shell {
    padding: 28px 20px 64px;
  }

  .hero {
    padding: 32px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    min-width: 220px;
  }

  .feature-list,
  .region-grid,
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .page-shell {
    padding: 40px 28px 72px;
  }

  .hero {
    padding: 42px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
    gap: 28px;
  }

  .section-block {
    padding: 32px 26px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .section-block,
  .feature-card,
  .store-card,
  .region-card {
    animation: rise-in 700ms ease both;
  }

  .feature-card:nth-child(2),
  .region-card:nth-child(2),
  .store-card:nth-child(2) {
    animation-delay: 100ms;
  }

  .feature-card:nth-child(3) {
    animation-delay: 160ms;
  }

  .feature-card:nth-child(4) {
    animation-delay: 220ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
