:root {
  --bg: #fffaf1;
  --bg2: #ffffff;
  --ink: #101010;
  --muted: rgba(16, 16, 16, 0.68);
  --muted2: rgba(16, 16, 16, 0.52);
  --orange: #f7931a;
  --orange-soft: rgba(247, 147, 26, 0.12);
  --orange-line: rgba(247, 147, 26, 0.24);
  --cream: #fff3dc;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(16, 16, 16, 0.10);
  --line-strong: rgba(16, 16, 16, 0.16);
  --shadow: 0 28px 80px rgba(80, 48, 14, 0.12);
  --radius: 28px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 18% -12%, rgba(247, 147, 26, 0.22), transparent 62%),
    radial-gradient(760px 460px at 92% 0%, rgba(247, 147, 26, 0.13), transparent 58%),
    linear-gradient(180deg, #fff6e8 0%, #fffaf3 42%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 16, 16, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 65%);
  z-index: -1;
}

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

p {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.85), transparent 26%),
    linear-gradient(135deg, #f7931a 0%, #ffbd64 42%, #171717 100%);
  box-shadow:
    0 14px 34px rgba(247, 147, 26, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 16px;
}

.brand-subtitle {
  color: var(--muted2);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(16, 16, 16, 0.62);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(247, 147, 26, 0.10);
}

.nav-cta {
  color: #1a0c00 !important;
  background: rgba(247, 147, 26, 0.16) !important;
  border: 1px solid rgba(247, 147, 26, 0.22);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.glass {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(247, 147, 26, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero {
  padding: 34px 0 22px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(28px, 5vw, 54px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -170px;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.22), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(89, 48, 6, 0.92);
  background: rgba(247, 147, 26, 0.11);
  border: 1px solid rgba(247, 147, 26, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(247, 147, 26, 0.15);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 19px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(80, 48, 14, 0.08);
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.button.primary {
  color: #1a0c00;
  border-color: rgba(247, 147, 26, 0.34);
  background: linear-gradient(180deg, #ffb14a, #f7931a);
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.hero-art {
  min-height: 360px;
  border-radius: 32px;
  border: 1px solid rgba(247, 147, 26, 0.20);
  background:
    radial-gradient(circle at 50% 30%, rgba(247, 147, 26, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 243, 220, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 28px 80px rgba(247, 147, 26, 0.10);
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero-orb {
  width: min(100%, 310px);
  aspect-ratio: 1;
  border-radius: 34%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.95), transparent 20%),
    radial-gradient(circle at 52% 50%, rgba(247, 147, 26, 0.26), transparent 48%),
    linear-gradient(135deg, #fff8ec, #ffe1ad 48%, #f7931a);
  border: 1px solid rgba(247, 147, 26, 0.26);
  box-shadow:
    0 30px 80px rgba(247, 147, 26, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
}

.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.12);
}

.hero-orb::before {
  inset: 24%;
}

.hero-orb::after {
  inset: 39%;
  background: rgba(255, 255, 255, 0.34);
}

.section {
  padding: 48px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-copy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 22px 60px rgba(80, 48, 14, 0.08);
}

.card.featured {
  border-color: rgba(247, 147, 26, 0.24);
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(247, 147, 26, 0.12), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 251, 244, 0.70));
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.card-kicker,
.product-label {
  color: rgba(113, 62, 8, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
}

.product-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1a0c00;
  font-weight: 850;
}

.product-link::after {
  content: "→";
  color: var(--orange);
}

.split-panel {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 38px);
}

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

.step {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.step-number {
  color: rgba(16, 16, 16, 0.48);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.page-hero {
  padding: 58px 0 28px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.legal-content {
  max-width: 850px;
  padding-bottom: 70px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 38px;
  margin-bottom: 10px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.legal-content ul {
  padding-left: 22px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-row {
  padding: 18px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 880px) {
  .hero-grid,
  .grid.two,
  .grid.three,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(16, 16, 16, 0.10);
    border-radius: 22px;
    background: rgba(255, 252, 246, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-panel {
    border-radius: 30px;
  }

  .button {
    width: 100%;
  }
}
