/* Solo Cruise Hacks — coastal luxury editorial design system */

:root {
  /* color */
  --ink: #0B1E2D;
  --navy: #0E2C45;
  --navy-700: #143A5A;
  --navy-deep: #07151F;
  --brass: #B8924E;
  --brass-bright: #CDA85F;
  --brass-deep: #8A6A33;
  --ivory: #FAF6EE;
  --ivory-2: #F3ECDF;
  --card: #FFFFFF;
  --border: #E7DCC6;
  --fg: #142230;
  --muted: #5C6B78;
  --success: #2E7D5B;
  --danger: #C0492F;

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* shape + depth */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 30, 45, 0.06), 0 4px 14px rgba(11, 30, 45, 0.06);
  --shadow-md: 0 10px 40px rgba(11, 30, 45, 0.12);
  --container: 1160px;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section-alt { background: var(--ivory-2); }
.section-dark { background: var(--navy); color: var(--ivory); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* type */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brass-deep);
  margin-bottom: 1rem;
}
.section-dark .eyebrow { color: var(--brass-bright); }
.section-title { font-size: clamp(2rem, 4.2vw, 3.25rem); }
.section-intro { font-size: 1.15rem; color: var(--muted); margin-top: 1.1rem; }
.section-dark .section-intro { color: rgba(250, 246, 238, 0.78); }
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 1.1rem; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em; white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-bright); transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--ivory); }
.btn-on-dark { background: transparent; border-color: rgba(250,246,238,0.45); color: var(--ivory); }
.btn-on-dark:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  color: var(--ivory);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.nav-logo .mark { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; opacity: 0.9; }
.nav-links a:hover { opacity: 1; color: var(--brass-bright); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-login { font-weight: 500; font-size: 0.95rem; }
.nav.scrolled { background: var(--ivory); color: var(--navy); box-shadow: var(--shadow-sm); }
.nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-links a:hover { color: var(--brass-deep); }
.nav-toggle { display: none; background: none; border: 0; color: inherit; }

/* hero */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; color: var(--ivory); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(100deg, rgba(7,21,31,0.92) 0%, rgba(7,21,31,0.60) 46%, rgba(7,21,31,0.32) 100%),
    linear-gradient(180deg, rgba(7,21,31,0.25), rgba(7,21,31,0.62)),
    url("/assets/img/hero.jpg") center / cover no-repeat,
    #0e2c45;
}
.hero-motif { position: absolute; right: -4%; top: 12%; width: min(46vw, 560px); opacity: 0.14; z-index: -1; color: var(--brass-bright); }
.hero-inner { max-width: 760px; padding-block: 8rem 4rem; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); line-height: 1.02; }
.hero h1 em { font-style: italic; color: var(--brass-bright); }
.hero-sub { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: rgba(250,246,238,0.88); max-width: 50ch; margin-top: 1.5rem; }
.hero-form { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.2rem; max-width: 520px; }
.hero-form .field { flex: 1; }
.hero-note { margin-top: 1rem; font-size: 0.9rem; color: rgba(250,246,238,0.7); }
.hero-actions { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; flex-wrap: wrap; }

/* forms */
.field input {
  width: 100%; padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--card); color: var(--fg); font-size: 1rem;
}
.field input::placeholder { color: #94a2ad; }
.field input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(184,146,78,0.25); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-num {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--brass-deep);
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); }

/* timing note */
.timing-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--brass);
  border-radius: var(--radius); padding: 1.5rem 1.75rem; margin-top: 2.5rem; max-width: 760px;
}
.timing-note svg { color: var(--brass); flex: none; margin-top: 2px; }
.timing-note p { color: var(--fg); }

/* tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.85rem;
}
.tier.featured { background: var(--navy); color: var(--ivory); border-color: var(--navy); box-shadow: var(--shadow-md); }
.tier-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: var(--ink); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; padding: 0.35rem 0.9rem; border-radius: 999px;
}
.tier-name { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; font-weight: 700; color: var(--brass-deep); }
.tier.featured .tier-name { color: var(--brass-bright); }
.tier-price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 500; line-height: 1; margin-top: 0.9rem; }
.tier-price small { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.tier.featured .tier-price small { color: rgba(250,246,238,0.7); }
.tier-tag { margin-top: 0.6rem; color: var(--muted); font-size: 0.98rem; }
.tier.featured .tier-tag { color: rgba(250,246,238,0.8); }
.tier-list { margin: 1.5rem 0 2rem; display: grid; gap: 0.75rem; }
.tier-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.98rem; }
.tier-list svg { color: var(--brass); flex: none; margin-top: 4px; }
.tier.featured .tier-list svg { color: var(--brass-bright); }
.tier .btn { margin-top: auto; }

/* deals teaser */
.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.deal-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.deal-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #1c4f78, #0e2c45 60%, #07151f); }
.deal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.deal-media .wave { position: absolute; bottom: 0; left: 0; width: 100%; color: rgba(184,146,78,0.35); }
.deal-tag { position: absolute; top: 0.9rem; left: 0.9rem; background: rgba(7,21,31,0.7); color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 999px; }
.deal-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.deal-route { font-family: var(--font-display); font-size: 1.3rem; }
.deal-meta { color: var(--muted); font-size: 0.92rem; }
.deal-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.deal-supp { color: var(--success); font-weight: 600; font-size: 0.9rem; }
.deal-price.locked { position: relative; filter: blur(7px); user-select: none; font-weight: 700; }
.deal-lock { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--brass-deep); font-weight: 600; font-size: 0.9rem; }

/* values */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-icon { width: 48px; height: 48px; color: var(--brass); margin-bottom: 1rem; }
.value h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.value p { color: var(--muted); }

/* mike */
.mike-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.mike-photo { aspect-ratio: 4 / 5; border-radius: var(--radius); background: linear-gradient(160deg, #19466b, #0e2c45 55%, #07151f); border: 1px solid rgba(184,146,78,0.3); position: relative; overflow: hidden; }
.mike-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mike-photo .badge { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; background: rgba(7,21,31,0.55); border: 1px solid rgba(205,168,95,0.4); border-radius: var(--radius-sm); padding: 0.8rem 1rem; font-size: 0.85rem; color: rgba(250,246,238,0.85); }
.mike-body h2 { font-size: clamp(2rem, 4vw, 3rem); }
.mike-sign { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--brass-bright); margin-top: 1.5rem; }

/* faq */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 22px; height: 22px; color: var(--brass-deep); transition: transform 0.2s ease; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-a { padding-bottom: 1.4rem; color: var(--muted); max-width: 64ch; }

/* cta band */
.cta-band { background: linear-gradient(135deg, #19466b, #0e2c45 65%, #07151f); color: var(--ivory); border-radius: clamp(16px, 3vw, 28px); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.cta-band .hero-form { margin-inline: auto; margin-top: 2rem; }
.cta-phone { margin-top: 1.5rem; color: rgba(250,246,238,0.82); font-size: 0.98rem; }
.cta-phone a { color: var(--brass-bright); font-weight: 600; white-space: nowrap; }
.cta-consent { margin-top: 0.85rem; color: rgba(250,246,238,0.6); font-size: 0.82rem; }
.cta-consent a { color: var(--brass-bright); }
.install-chip { position: fixed; right: 20px; bottom: 80px; z-index: 70; background: var(--brass-bright); color: #0b1e2d; border: 0; font-weight: 700; padding: 11px 16px; border-radius: 999px; box-shadow: 0 6px 20px rgba(0,0,0,0.3); cursor: pointer; font-family: inherit; font-size: 0.9rem; }
.install-chip:hover { filter: brightness(1.05); }
@media (max-width: 480px) { .install-chip { right: 12px; bottom: 70px; } }

/* footer */
.footer { background: var(--navy-deep); color: rgba(250,246,238,0.78); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .nav-logo { color: var(--ivory); margin-bottom: 1rem; }
.footer-brand p { max-width: 36ch; font-size: 0.95rem; }
.footer-phone { margin-top: 0.75rem; }
.footer-phone a { color: var(--brass-bright); font-weight: 600; }
.footer-col h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--brass-bright); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; padding: 0.35rem 0; font-size: 0.95rem; }
.footer-col a:hover { color: var(--brass-bright); }
.footer-bottom { border-top: 1px solid rgba(250,246,238,0.12); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.88rem; color: rgba(250,246,238,0.6); }
.footer-bottom a { color: var(--brass-bright); }

/* responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .steps, .tiers, .deals, .values { grid-template-columns: 1fr; }
  .mike-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tier.featured { order: -1; }
}
@media (max-width: 560px) {
  .hero-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* mobile menu + misc */
.nav-login-m, .nav-join-m { display: none; }
@media (max-width: 900px) {
  .nav-login, .nav-cta-d { display: none; }
  .nav-inner { gap: 0.75rem; }
  .nav.nav-open { background: var(--ivory); color: var(--navy); box-shadow: var(--shadow-sm); }
  .nav.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--ivory); padding: 1.25rem 1.5rem 1.75rem; border-top: 1px solid var(--border);
  }
  .nav.nav-open .nav-links a { color: var(--navy); opacity: 1; }
  .nav.nav-open .nav-links .nav-login-m { display: block; }
  .nav.nav-open .nav-links .nav-join-m { display: inline-flex; margin-top: 0.4rem; color: var(--ink); }
}
@media (max-width: 560px) {
  .nav-logo { font-size: 1.1rem; }
  .nav-logo .mark { width: 26px; height: 26px; }
}
.form-success { margin-top: 1rem; color: var(--brass-bright); font-weight: 600; }
.form-error { margin-top: 0.6rem; color: #ffd9cf; font-weight: 500; font-size: 0.9rem; }

/* member portal */
.pbanner { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; background: var(--ivory-2); border: 1px solid var(--border); border-left: 4px solid var(--brass); border-radius: 12px; padding: 1.1rem 1.3rem; margin-top: 1.5rem; }
.pbanner-strong { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.pbanner .btn { flex: none; }
.pdeals { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1rem; }
.pdeal { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pdeal-body { padding: 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.pdeal h3 { font-family: var(--font-display); font-size: 1.25rem; }
.pdeal-facts { color: var(--muted); font-size: 0.9rem; }
.pdeal-supp { color: var(--success); font-weight: 600; font-size: 0.9rem; }
.pdeal-sum { font-size: 0.92rem; color: var(--fg); }
.pdeal-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; gap: 0.5rem; }
.pdeal-price { font-family: var(--font-display); font-size: 1.2rem; }
.pdeal.locked { background: linear-gradient(135deg, #13314c, #0b1e2d); color: var(--ivory); border-color: var(--navy); }
.pdeal.locked h3 { color: var(--ivory); }
.pdeal.locked .pdeal-facts { color: rgba(250,246,238,0.7); }
.pdeal-lock { display: inline-block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-bright); font-weight: 700; }
.pdeal .pdeal-note { font-size: 0.88rem; color: rgba(250,246,238,0.8); margin: 0.2rem 0 0.4rem; }
.pempty { background: var(--ivory-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; margin-top: 1rem; }
.pempty p { color: var(--muted); max-width: 48ch; margin: 0 auto 1rem; }

/* commodore inner circle */
.commodore { background: linear-gradient(135deg, #0b2236, #07151f); color: var(--ivory); }
.commodore-card { max-width: 980px; margin-inline: auto; }
.commodore-head .eyebrow { color: var(--brass-bright); }
.commodore-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.commodore-lead { color: rgba(250,246,238,0.82); max-width: 60ch; margin-top: 1rem; line-height: 1.6; }
.commodore-body { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; align-items: start; }
.commodore-perks { display: grid; gap: 0.85rem; }
.commodore-perks li { position: relative; padding-left: 1.6rem; line-height: 1.5; }
.commodore-perks li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--brass-bright); }
.commodore-side { background: rgba(255,255,255,0.04); border: 1px solid rgba(205,168,95,0.35); border-radius: 16px; padding: 1.6rem; }
.commodore-price { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.commodore-price small { font-family: var(--font-body); font-size: 1rem; color: rgba(250,246,238,0.7); }
.commodore-seats { color: var(--brass-bright); font-weight: 600; margin: 0.6rem 0 1.2rem; }
.commodore-formwrap { margin-top: 1rem; }
.commodore-form { display: grid; gap: 0.6rem; }
.commodore-form input, .commodore-form textarea { width: 100%; padding: 0.7rem 0.85rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; background: rgba(255,255,255,0.06); color: var(--ivory); font: inherit; }
.commodore-form input::placeholder, .commodore-form textarea::placeholder { color: rgba(250,246,238,0.5); }
.commodore-msg { margin-top: 0.8rem; font-weight: 600; }
.commodore-terms { margin-top: 1rem; font-size: 0.8rem; color: rgba(250,246,238,0.55); }
@media (max-width: 760px) { .commodore-body { grid-template-columns: 1fr; } }

/* upsell modal */
.upsell { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.upsell.open { display: flex; }
.upsell-backdrop { position: absolute; inset: 0; background: rgba(7,21,31,0.72); }
.upsell-card { position: relative; z-index: 1; background: var(--ivory); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-md); max-width: 640px; width: 100%; max-height: 92vh; overflow-y: auto; padding: clamp(1.5rem, 4vw, 2.5rem); }
.upsell-x { position: absolute; top: 14px; right: 14px; background: none; border: 0; color: var(--muted); padding: 4px; cursor: pointer; }
.upsell-x:hover { color: var(--fg); }
.upsell-card h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.6rem; }
.upsell-lead { color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.upsell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.upsell-tier { border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; background: var(--card); }
.upsell-tier h3 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; color: var(--muted); }
.upsell-price { font-family: var(--font-display); font-size: 1.9rem; margin: 0.4rem 0 0.8rem; }
.upsell-price small { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); }
.upsell-tier ul { display: grid; gap: 0.5rem; }
.upsell-tier li { font-size: 0.92rem; padding-left: 1.3rem; position: relative; line-height: 1.4; }
.upsell-tier li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.upsell-tier li.muted-li { color: var(--muted); }
.upsell-tier li.muted-li::before { background: var(--muted); opacity: 0.5; }
.upsell-tier.featured { position: relative; background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.upsell-tier.featured h3 { color: var(--brass-bright); }
.upsell-tier.featured .upsell-price small { color: rgba(250,246,238,0.7); }
.upsell-tier.featured li::before { background: var(--brass-bright); }
.upsell-badge { position: absolute; top: -0.7rem; right: 1rem; background: var(--brass); color: var(--ink); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: 999px; }
.upsell-captain { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.25rem; }
.upsell-captain a { color: var(--brass-deep); font-weight: 600; }
.upsell-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.upsell-fine { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 0.9rem; }
@media (max-width: 520px) { .upsell-grid { grid-template-columns: 1fr; } }

/* chat widget */
.sch-chat { position: fixed; right: 20px; bottom: 20px; z-index: 80; font-family: var(--font-body); }
.sch-launch { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--navy); color: var(--ivory); border: 1px solid var(--brass); padding: 0.7rem 1.15rem; border-radius: 999px; box-shadow: var(--shadow-md); font-weight: 600; font-size: 0.95rem; }
.sch-launch svg { color: var(--brass-bright); }
.sch-launch:hover { background: var(--navy-700); transform: translateY(-1px); }
.sch-chat.open .sch-launch { display: none; }
.sch-panel { position: absolute; right: 0; bottom: 0; width: min(372px, calc(100vw - 32px)); height: min(560px, calc(100vh - 100px)); background: var(--ivory); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-md); display: none; flex-direction: column; overflow: hidden; }
.sch-chat.open .sch-panel { display: flex; }
.sch-head { background: var(--navy); color: var(--ivory); padding: 0.95rem 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.sch-head strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; display: block; }
.sch-head span { font-size: 0.78rem; color: rgba(250,246,238,0.7); }
.sch-close { background: none; border: 0; color: var(--ivory); opacity: 0.8; padding: 4px; }
.sch-close:hover { opacity: 1; }
.sch-msgs { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.sch-msg { max-width: 86%; padding: 0.65rem 0.85rem; border-radius: 13px; font-size: 0.92rem; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word; }
.sch-bot { align-self: flex-start; background: var(--ivory-2); color: var(--fg); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.sch-user { align-self: flex-end; background: var(--navy); color: var(--ivory); border-bottom-right-radius: 4px; }
.sch-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 0.85rem 0.9rem; }
.sch-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: schbounce 1s infinite; }
.sch-typing i:nth-child(2) { animation-delay: 0.15s; }
.sch-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes schbounce { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.sch-form { display: flex; gap: 0.5rem; padding: 0.7rem 0.7rem 0.4rem; border-top: 1px solid var(--border); background: var(--card); }
.sch-input { flex: 1; padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: 10px; font-size: 0.95rem; color: var(--fg); }
.sch-input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(184,146,78,0.2); }
.sch-send { flex: none; width: 44px; border: 0; border-radius: 10px; background: var(--brass); color: var(--ink); display: grid; place-items: center; cursor: pointer; }
.sch-send:hover { background: var(--brass-bright); }
.sch-disclaim { margin: 0; font-size: 0.7rem; color: var(--muted); text-align: center; padding: 0.2rem 0.75rem 0.6rem; background: var(--card); }
@media (max-width: 480px) {
  .sch-chat { right: 12px; bottom: 12px; }
  .sch-panel { width: calc(100vw - 24px); height: min(74vh, calc(100vh - 84px)); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .sch-typing i { animation: none !important; }
}
