  :root {
    --black: #0a0807;
    --near-black: #120e0b;
    --brown-900: #1c130d;
    --brown-800: #2a1c12;
    --brown-700: #3b2818;
    --brown-500: #6f4e2e;
    --tan: #c8a37a;
    --tan-bright: #e3c49a;
    --white: #f5f1ec;
    --muted: rgba(245, 241, 236, 0.55);
    --faint: rgba(245, 241, 236, 0.32);
    --line: rgba(200, 163, 122, 0.14);
    --radius: 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
  }

  ::selection { background: var(--brown-500); color: var(--white); }

  /* ---------- Nav ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(10, 8, 7, 0.72);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
  }
  .brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
  }
  .brand-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .brand-name span { color: var(--tan); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.25s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a.btn { color: var(--black); }
  .btn {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 980px;
    transition: transform 0.25s ease, background 0.25s ease;
  }
  .btn:hover { background: var(--tan-bright); transform: scale(1.03); }
  .btn-large {
    font-size: 16px;
    padding: 14px 32px;
  }
  .btn-ghost {
    background: transparent;
    color: var(--tan);
    border: 1px solid rgba(200, 163, 122, 0.4);
  }
  .btn-ghost:hover { background: rgba(200, 163, 122, 0.1); color: var(--tan-bright); }

  @media (max-width: 720px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .home header {
      min-height: auto;
      padding-top: 70px;
      padding-bottom: 60px;
      justify-content: flex-start;
    }
    .hero-mark { margin-bottom: 24px; }
    .hero-logo { width: clamp(150px, 38vw, 230px); }
    .eyebrow { margin-bottom: 16px; }
    .hero-sub { margin-top: 18px; }
    .hero-ctas { margin-top: 30px; }
  }

  /* Hide homepage nav on load, slide in on scroll (desktop only) */
  @media (min-width: 721px) {
    .home nav {
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .home nav.visible { transform: translateY(0); }
  }

  /* ---------- Hero ---------- */
  header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    background:
      radial-gradient(1200px 600px at 50% -10%, rgba(111, 78, 46, 0.28), transparent 65%),
      radial-gradient(900px 500px at 85% 110%, rgba(59, 40, 24, 0.5), transparent 60%),
      linear-gradient(180deg, rgba(10, 8, 7, 0.93) 0%, rgba(18, 14, 11, 0.94) 55%, rgba(28, 19, 13, 0.92) 100%),
      url('assets/img/beans.jpg') center / cover no-repeat;
  }
  .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.04;
    max-width: 900px;
  }
  h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--tan-bright), var(--brown-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    font-size: clamp(18px, 5vw, 62px);
    display: inline-block;
  }
  @media (max-width: 360px) {
    header { padding-left: 16px; padding-right: 16px; }
  }
  .hero-sub {
    margin-top: 26px;
    font-size: clamp(17px, 2.2vw, 21px);
    color: var(--muted);
    max-width: 560px;
    font-weight: 400;
  }
  .hero-ctas {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-mark {
    margin-bottom: 34px;
    opacity: 0.95;
  }
  .hero-logo {
    width: clamp(180px, 26vw, 260px);
    height: auto;
    border-radius: 50%;
    box-shadow:
      0 0 0 1px rgba(200, 163, 122, 0.25),
      0 24px 60px rgba(0, 0, 0, 0.55),
      0 0 80px rgba(111, 78, 46, 0.35);
  }
  .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--faint);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: floaty 2.6s ease-in-out infinite;
  }
  @keyframes floaty {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
  }

  /* ---------- Sections ---------- */
  section { padding: 60px 24px; position: relative; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    max-width: 720px;
  }
  .section-sub {
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
  }

  /* Stats strip */
  .stats {
    background: var(--brown-900);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 64px 24px;
  }
  .stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
  }
  .stat-value {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--tan-bright);
  }
  .stat-label {
    margin-top: 6px;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  /* Full-bleed image bands */
  .img-band {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
  }
  .img-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--black) 0%, rgba(10, 8, 7, 0.25) 30%, rgba(10, 8, 7, 0.25) 60%, var(--black) 100%);
  }
  .img-band-caption {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 64px;
    width: 100%;
  }
  .img-band-caption .cap-line {
    font-size: clamp(24px, 3.4vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
  }
  .img-band-caption .cap-sub {
    margin-top: 8px;
    font-size: 15px;
    color: rgba(245, 241, 236, 0.75);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
  }

  /* Wide rounded section photos */
  .section-photo {
    display: block;
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin-top: 56px;
  }
  @media (max-width: 720px) { .section-photo { aspect-ratio: 4 / 3; } }
  .photo-duo {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
  }
  .photo-duo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  @media (max-width: 720px) { .photo-duo { grid-template-columns: 1fr; } }

  /* Origin */
  .origin { background: var(--black); }
  .origin-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .card {
    background: linear-gradient(160deg, var(--brown-800), var(--brown-900) 70%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform 0.35s ease, border-color 0.35s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 163, 122, 0.35);
  }
  .card h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .card .alt {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tan);
    margin-bottom: 14px;
  }
  .card p {
    margin-top: 12px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
  }
  .card .notes {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--tan-bright);
    letter-spacing: 0.03em;
  }

  /* Offerings */
  .offerings { background: linear-gradient(180deg, var(--black), var(--brown-900)); }
  .offer-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .offer {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 34px;
    background: rgba(18, 14, 11, 0.6);
    backdrop-filter: blur(10px);
  }
  .offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--brown-500), var(--brown-800));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .offer h3 { font-size: 21px; font-weight: 600; }
  .offer p { margin-top: 12px; font-size: 15px; color: var(--muted); line-height: 1.65; }

  /* Start Your Own Brand */
  .brand { background: var(--near-black); }
  .brand-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .brand-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px;
    background: rgba(18, 14, 11, 0.6);
    backdrop-filter: blur(10px);
  }
  .brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--brown-500), var(--brown-800));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .brand-card h3 { font-size: 21px; font-weight: 600; }
  .brand-card p { margin-top: 12px; font-size: 15px; color: var(--muted); line-height: 1.65; }
  .brand-mockup {
    display: block;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin: 56px auto 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }
  .brand-cta { margin-top: 48px; text-align: center; }

  /* Process */
  .process-steps {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    counter-reset: step;
  }
  .step { position: relative; }
  .step-num {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(120deg, var(--tan-bright), var(--brown-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
  }
  .step h3 { margin-top: 10px; font-size: 19px; font-weight: 600; }
  .step p { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

  /* CTA band */
  .cta-band {
    background:
      radial-gradient(800px 400px at 50% 120%, rgba(111, 78, 46, 0.4), transparent 65%),
      linear-gradient(180deg, rgba(10, 8, 7, 0.9), rgba(20, 14, 9, 0.86)),
      url('assets/img/brewing.jpg') center / cover no-repeat;
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 80px 24px;
  }
  .cta-band h2 { margin: 0 auto; }
  .cta-band .section-sub { margin-left: auto; margin-right: auto; }
  .cta-band .hero-ctas { margin-top: 44px; }

  /* Contact */
  .contact { background: var(--black); }
  .contact-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
  form { display: flex; flex-direction: column; gap: 16px; }
  label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  input, textarea, select {
    background: var(--brown-900);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.25s ease;
    width: 100%;
  }
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--tan);
  }
  select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c8a37a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
  }
  select:hover { border-color: rgba(200, 163, 122, 0.45); }
  select option { background: var(--brown-800); color: var(--white); }
  textarea { min-height: 120px; resize: vertical; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  form .btn { border: none; cursor: pointer; margin-top: 8px; align-self: flex-start; }
  .contact-info p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 18px; }
  .contact-info a { color: var(--tan); text-decoration: none; }
  .contact-info a:hover { color: var(--tan-bright); }
  .contact-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin-top: 28px;
  }

  /* Footer */
  footer {
    border-top: 1px solid var(--line);
    padding: 48px 24px;
    background: var(--near-black);
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  footer p { color: var(--faint); font-size: 13px; }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .scroll-hint { animation: none; }
  }

/* ---------- Hero background video ---------- */
header { overflow: hidden; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(111, 78, 46, 0.25), transparent 65%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.85) 0%, rgba(10, 8, 7, 0.68) 45%, rgba(18, 14, 11, 0.9) 100%);
}
header > :not(.hero-video):not(.hero-veil) { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* ---------- Watch video section ---------- */
.watch { background: linear-gradient(180deg, var(--black), var(--near-black)); }
.video-frame {
  position: relative;
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--brown-900);
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.15), rgba(10, 8, 7, 0.55));
  transition: opacity 0.35s ease;
}
.video-play:hover .video-play-btn { transform: scale(1.07); background: rgba(200, 163, 122, 0.32); }
.video-play.hidden { opacity: 0; pointer-events: none; }
.video-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(200, 163, 122, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 196, 154, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-caption {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--faint);
  text-align: center;
}

/* ---------- Get Started modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 4, 3, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.modal-overlay.open { display: flex; }
.modal {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(165deg, var(--brown-800), var(--brown-900) 65%);
  border: 1px solid rgba(200, 163, 122, 0.28);
  border-radius: 24px;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(245, 241, 236, 0.08);
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
}
.modal-close:hover { background: rgba(245, 241, 236, 0.16); color: var(--white); }
.modal h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.modal .modal-sub { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.modal .field { margin-top: 16px; }
.modal .btn { width: 100%; text-align: center; margin-top: 22px; border: 0; cursor: pointer; }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-dots { display: flex; gap: 8px; margin-bottom: 22px; }
.modal-dots span {
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: rgba(200, 163, 122, 0.2);
}
.modal-dots span.on { background: var(--tan); }
.modal-error { margin-top: 10px; font-size: 13px; color: #e08f8f; display: none; }
.modal-success { text-align: center; padding: 12px 0 4px; }
.modal-success .check {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(122, 168, 116, 0.15);
  border: 1px solid rgba(122, 168, 116, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-back {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13.5px;
  cursor: pointer;
  margin-top: 14px;
  width: 100%;
}
.modal-back:hover { color: var(--white); }

/* ---------- Page hero (non-homepage) ---------- */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.page-hero .hero-logo {
  width: clamp(140px, 20vw, 200px);
}

/* ---------- Pricing page ---------- */
.page-head {
  padding: 170px 24px 80px;
  text-align: center;
  background:
    radial-gradient(1000px 500px at 50% -20%, rgba(111, 78, 46, 0.3), transparent 65%),
    linear-gradient(180deg, var(--black), var(--near-black));
}
.page-head h1 { font-size: clamp(38px, 6vw, 64px); margin: 0 auto; }
.page-head .section-sub { margin-left: auto; margin-right: auto; }
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--brown-800), var(--brown-900) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px 32px;
}
.tier.featured { border-color: rgba(200, 163, 122, 0.55); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45); }
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tan);
  color: var(--black);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 980px;
  white-space: nowrap;
}
.tier h3 { font-size: 21px; font-weight: 600; }
.tier .tier-for { margin-top: 4px; font-size: 13.5px; color: var(--muted); }
.tier-price { margin-top: 22px; }
.tier-price .amt { font-size: 42px; font-weight: 700; letter-spacing: -0.03em; color: var(--tan-bright); }
.tier-price .unit { font-size: 14px; color: var(--muted); }
.tier ul { list-style: none; margin: 24px 0 28px; padding: 0; flex: 1; }
.tier li {
  font-size: 14.5px;
  color: var(--muted);
  padding: 7px 0 7px 26px;
  position: relative;
  line-height: 1.5;
}
.tier li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-weight: 700;
}
.tier .btn { text-align: center; }
.offer-table-wrap { margin-top: 64px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.offer-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.offer-table th, .offer-table td { padding: 16px 18px; text-align: left; font-size: 14px; }
.offer-table th {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  border-bottom: 1px solid var(--line);
  background: rgba(28, 19, 13, 0.6);
  white-space: nowrap;
}
.offer-table td { color: var(--muted); border-bottom: 1px solid rgba(200, 163, 122, 0.08); vertical-align: top; }
.offer-table tr:last-child td { border-bottom: 0; }
.offer-table td:first-child { color: var(--white); font-weight: 600; white-space: nowrap; }
.offer-table .price { color: var(--tan-bright); font-weight: 600; }
.offer-table .numeric { text-align: right; }
@media (max-width: 720px) {
  .offer-table th, .offer-table td { padding: 14px 12px; font-size: 13px; }
}
.pricing-note { margin-top: 18px; font-size: 13px; color: var(--faint); }

/* ---------- Pricing unit toggle ---------- */
.unit-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.unit-label { font-size: 14px; color: var(--muted); }
.unit-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.unit-btn:hover { border-color: rgba(200, 163, 122, 0.45); color: var(--white); }
.unit-btn.active { background: var(--tan); color: var(--black); border-color: var(--tan); }

/* ---------- Atlas Voice widget ---------- */
.voice-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(227, 196, 154, 0.5);
  background: linear-gradient(150deg, var(--brown-500), var(--brown-800));
  color: var(--tan-bright);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease;
}
.voice-fab:hover { transform: scale(1.07); }
.voice-fab-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 163, 122, 0.5);
  opacity: 0;
}
.voice-fab.live .voice-fab-ring { animation: voicePulse 1.8s ease-out infinite; }
@keyframes voicePulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}
.voice-panel {
  position: fixed;
  right: 26px;
  bottom: 100px;
  z-index: 150;
  width: min(380px, calc(100vw - 40px));
  max-height: min(560px, calc(100vh - 140px));
  display: none;
  flex-direction: column;
  background: rgba(20, 15, 11, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(200, 163, 122, 0.3);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}
.voice-panel.open { display: flex; }
.voice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}
.voice-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.voice-status { margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.voice-status.live { color: #9fc79a; }
.voice-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(245, 241, 236, 0.08);
  color: var(--muted);
  font-size: 14px;
}
.voice-close:hover { background: rgba(245, 241, 236, 0.16); color: var(--white); }
.voice-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.voice-hint { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.voice-hint code { color: var(--tan-bright); font-size: 12.5px; }
.voice-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
}
.voice-bubble.from-user {
  align-self: flex-end;
  background: rgba(200, 163, 122, 0.18);
  color: var(--white);
  border-bottom-right-radius: 5px;
}
.voice-bubble.from-agent {
  align-self: flex-start;
  background: rgba(245, 241, 236, 0.07);
  color: rgba(245, 241, 236, 0.85);
  border-bottom-left-radius: 5px;
}
.voice-link-card {
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: flex-start;
  max-width: 92%;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(140deg, rgba(111, 78, 46, 0.35), rgba(42, 28, 18, 0.6));
  border: 1px solid rgba(200, 163, 122, 0.45);
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.voice-link-card:hover { transform: translateY(-2px); border-color: var(--tan-bright); }
.voice-link-card .vlc-icon { color: var(--tan-bright); display: flex; }
.voice-link-card strong { font-size: 13.5px; }
.voice-link-card small { font-size: 12px; color: var(--muted); }
.voice-foot { padding: 14px 18px 18px; border-top: 1px solid var(--line); }
.voice-call-btn { width: 100%; text-align: center; border: 0; cursor: pointer; }
@media (max-width: 600px) {
  .voice-panel { right: 20px; bottom: 96px; }
  .voice-fab { right: 20px; bottom: 20px; }
}

/* ---------- Mobile hamburger & fullscreen menu ---------- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(8, 6, 4, 0.96);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--tan-bright); }
.mobile-menu a.btn {
  font-size: 17px;
  color: var(--black);
  margin-top: 22px;
  padding: 14px 34px;
}
.mobile-menu a.btn:hover { color: var(--black); }
.mm-close {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(245, 241, 236, 0.08);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}
.mm-close:hover { background: rgba(245, 241, 236, 0.16); }
.mm-tagline {
  position: absolute;
  bottom: 34px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Toast notifications ---------- */
.atlas-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(135deg, var(--brown-800), var(--brown-900));
  border: 1px solid rgba(200, 163, 122, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.atlas-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.atlas-toast__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tan);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .atlas-toast {
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(20px);
    border-radius: 14px;
  }
  .atlas-toast--visible { transform: translateY(0); }
}
