/* ===========================================================
   BizEase — Brand & UI Redesign
   -----------------------------------------------------------
   Visual/presentation layer only. Every class name below is
   unchanged from the previous stylesheet, so no HTML structure,
   IDs, or JS-facing selectors needed to change to stay
   functional — this file only changes how things look.

   Palette, typography and "AI-action green used sparingly" are
   taken directly from the brand brief. Legacy variable names
   (--navy, --white, --muted, etc.) are kept as aliases at the
   bottom of the token block so any old var(--name) reference
   left anywhere still resolves to a correct, on-brand colour.
   =========================================================== */

:root {
  /* --- Brand tokens (source of truth) --- */
  --ivory: #FAF7F2;        /* primary light background */
  --champagne: #E8DDD0;    /* secondary surface / soft fill */
  --charcoal: #171717;     /* primary dark — headings, body text */
  --soft-black: #202020;   /* deep surface — contrast sections, footer */
  --rose: #C78F73;         /* premium accent */
  --rose-deep: #A96F55;    /* accent hover/active */
  --rose-light: #E7C4AC;   /* gradient light end */
  --taupe: #786C65;        /* secondary / muted text */
  --brand-green: #32D45A;  /* AI actions, success, active status — sparingly */
  --brand-green-deep: #218C40;
  --brand-green-tint: rgba(50, 212, 90, 0.12);
  --error: #B3392F;
  --error-tint: rgba(179, 57, 47, 0.08);

  /* Warm cream, not clinical white — this is the one token change
     that matters most for reading as premium, warm business software
     rather than generic SaaS, since it's under every card in the product. */
  --surface: #FFFCF6;
  --surface-sunken: var(--ivory); /* recessed surface, e.g. inputs inside a card */
  --line: rgba(23, 23, 23, 0.10); /* hairline border on light surfaces */
  --line-soft: rgba(23, 23, 23, 0.06);
  --line-on-dark: rgba(250, 247, 242, 0.16);
  --cream-on-dark: #F3ECE3; /* body text on charcoal/soft-black sections */
  --shadow-card: 0 1px 2px rgba(23,23,23,0.04), 0 10px 30px -12px rgba(23,23,23,0.14);
  --shadow-card-hover: 0 1px 2px rgba(23,23,23,0.05), 0 16px 36px -14px rgba(23,23,23,0.20);

  /* Restrained metallic/foil moments only — icon surrounds, thin
     dividers, isolated brand accents. Never applied to buttons or
     large surfaces; see the component rules below. */
  --gradient-rosegold: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 55%, var(--rose-deep) 100%);
  --gradient-hairline: linear-gradient(90deg, transparent, var(--rose) 50%, transparent);

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 20px;

  --font-ui: 'Manrope', sans-serif;
  --font-display: 'Fraunces', serif;

  /* --- Legacy aliases: old class rules across the app reference
     these names directly. Keep them pointed at sensible new
     values so nothing left un-migrated renders broken. --- */
  --navy: var(--surface-sunken);
  --navy-2: var(--surface);
  --navy-3: var(--champagne);
  --white: var(--charcoal);
  --muted: var(--taupe);
  --green: var(--brand-green);
  --green-dim: var(--brand-green-deep);
  --green-glow: var(--brand-green-tint);
  --border: var(--line);
  --font-body: var(--font-ui);
}

.hairline {
  height: 1px;
  border: 0;
  background: var(--gradient-hairline);
  margin: 0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rose-deep); }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--charcoal); font-weight: 600; }

/* ===========================================================
   NAV
   =========================================================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 2rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo span { color: var(--rose); }
.app-nav { display: flex; justify-content: space-between; align-items: center; }
.app-nav-link { color: var(--taupe); font-size: 14px; text-decoration: none; transition: color 0.15s ease; }
.app-nav-link:hover { color: var(--charcoal); }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--ivory);
  border: 1px solid var(--charcoal);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--soft-black); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.55; cursor: wait; transform: none; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--charcoal);
  padding: 11px 21px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-ghost:hover { border-color: var(--taupe); background: var(--champagne); }
.btn-ghost:disabled { opacity: 0.55; cursor: wait; }

/* An "AI action" gets the brand green, deliberately — per brief,
   green is reserved for generation/success/active states only. */
.generator-submit, #generateBtn {
  background: var(--brand-green);
  color: #063514;
  border: 1px solid var(--brand-green);
}
.generator-submit:hover { background: var(--brand-green-deep); border-color: var(--brand-green-deep); color: #fff; }

/* ===========================================================
   SECTION LABEL (eyebrow)
   =========================================================== */
.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.85rem;
}

/* ===========================================================
   AUTH PAGES (login / forgot-password / reset-password)
   Centralised here — was previously duplicated per-page.
   =========================================================== */
.auth-box {
  max-width: 400px;
  margin: 6rem auto;
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.auth-box h1 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.auth-box p { color: var(--taupe); font-size: 14px; line-height: 1.55; margin-bottom: 0.5rem; }
.auth-field {
  display: block;
  width: 100%;
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--charcoal);
  font-family: var(--font-ui);
  margin: 1rem 0 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-field-group { margin-top: 1rem; }
.auth-field-group:first-child { margin-top: 0; }
.auth-field-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.auth-field-group .auth-field { margin: 0; }
.auth-field:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(199, 143, 115, 0.16);
}
.auth-field::placeholder { color: #a49b93; }
.auth-btn { width: 100%; margin-top: 4px; }
.auth-status { margin-top: 1rem; font-size: 14px; min-height: 20px; line-height: 1.5; }
.auth-toggle { text-align: center; margin-top: 1.25rem; font-size: 13px; color: var(--taupe); }
.auth-toggle-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--rose-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
}
.auth-toggle-button:hover { text-decoration: underline; }
.auth-secondary-link {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-size: 13px;
  color: var(--rose-deep);
  text-decoration: none;
}
.auth-secondary-link:hover { text-decoration: underline; }

/* ===========================================================
   DASHBOARD — welcome, status, tool cards
   =========================================================== */
.dash-wrap { max-width: 960px; margin: 0 auto; padding: 3.25rem 2rem 4rem; }
.dash-welcome {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.dash-subtitle { color: var(--taupe); font-size: 15px; margin-bottom: 2rem; max-width: 560px; }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.tool-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: var(--taupe);
  text-decoration: none;
  box-shadow: var(--shadow-card);
}
.tool-tile.disabled { opacity: 0.55; cursor: not-allowed; }
.tool-tile.tool-active {
  color: var(--charcoal);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.tool-tile.tool-active:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.tool-tile.tool-active small { color: var(--brand-green-deep); font-weight: 600; }
.tool-tile small { display: block; margin-top: 0.3rem; font-size: 12px; font-weight: 500; color: var(--taupe); }
.tool-tile-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-rosegold);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(169, 111, 85, 0.28);
}
.tool-tile-icon svg { width: 20px; height: 20px; }
.tool-tile-title { font-family: var(--font-ui); font-size: 14.5px; line-height: 1.35; }

.status-line {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.35rem;
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--charcoal);
}
.status-line a { color: var(--rose-deep); font-weight: 600; }
.status-line.profile-needed { border-color: var(--rose); background: #FBF3EE; }
#statusLine { margin-bottom: 2rem; }

.dash-links { display: flex; gap: 1.5rem; font-size: 14px; flex-wrap: wrap; }
.dash-links a, .dash-links button {
  color: var(--taupe);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 0 0 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.dash-links a:hover, .dash-links button:hover { color: var(--charcoal); border-color: var(--taupe); }

/* ===========================================================
   FORMS — business profile, generator inputs
   =========================================================== */
.profile-page { width: min(820px, calc(100% - 2rem)); margin: 0 auto; padding: 3.5rem 0 5rem; }
.profile-intro { margin-bottom: 2rem; }
.profile-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.profile-intro p { max-width: 640px; color: var(--taupe); font-size: 15.5px; line-height: 1.65; }

.profile-form { display: grid; gap: 1rem; }
.profile-card, .account-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.profile-card-heading { margin-bottom: 1.5rem; }
.profile-card-heading h2, .account-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.profile-card-heading p, .danger-zone p, .account-card p {
  color: var(--taupe);
  font-size: 13.5px;
  line-height: 1.6;
}
.optional-label {
  color: var(--taupe) !important;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  margin-left: 0.35rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group[hidden] { display: none; }
.form-group-wide { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.form-group label span { color: var(--rose-deep); }
.form-group small { color: var(--taupe); font-size: 11.5px; line-height: 1.45; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-sunken);
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font: inherit;
  font-family: var(--font-ui);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group textarea { resize: vertical; min-height: 92px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a49b93; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(199, 143, 115, 0.16);
}
.input-prefix-wrap {
  display: flex;
  align-items: center;
  background: var(--surface-sunken);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.input-prefix-wrap:focus-within { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(199, 143, 115, 0.16); }
.input-prefix-wrap span { color: var(--taupe); padding-left: 12px; font-size: 14px; }
.input-prefix-wrap input { border: 0; box-shadow: none !important; padding-left: 4px; }

.profile-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 0.5rem 0 0; }
.profile-save-btn { border: 0; cursor: pointer; min-width: 190px; font-family: var(--font-ui); }
.profile-save-btn:disabled, .danger-btn:disabled { opacity: 0.6; cursor: wait; }
.btn-text { color: var(--taupe); font-size: 14px; text-decoration: none; }
.btn-text:hover { color: var(--charcoal); }
.save-state { color: var(--taupe); font-size: 12px; }

.form-message { border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; margin-bottom: 1rem; font-size: 13.5px; line-height: 1.55; }
.form-message.success { background: var(--brand-green-tint); border: 1px solid rgba(50,212,90,0.35); color: #0d3f1c; }
.form-message.error { background: var(--error-tint); border: 1px solid rgba(179,57,47,0.3); color: var(--error); }

.danger-zone {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.danger-zone[hidden] { display: none; }
.danger-zone h2 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 0.35rem; }
.danger-btn {
  flex-shrink: 0;
  border: 1px solid rgba(179,57,47,0.35);
  background: transparent;
  color: var(--error);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font: inherit;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.danger-btn:hover { background: var(--error-tint); }
.danger-card { border-color: rgba(179,57,47,0.28); }
.small-muted { color: var(--taupe); font-size: 12px; }

/* ===========================================================
   GENERATOR PAGES (caption / review / promo / invoice / bio)
   =========================================================== */
.generator-page { width: min(980px, calc(100% - 2rem)); margin: 0 auto; padding: 3.5rem 0 5rem; }
.generator-heading-row { display: flex; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.generator-intro { margin-bottom: 1.5rem; }
.generator-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.generator-intro p { color: var(--taupe); font-size: 15px; max-width: 580px; line-height: 1.6; }

.usage-chip {
  flex-shrink: 0;
  background: var(--champagne);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  margin-top: 0.3rem;
}
.profile-context-card {
  display: flex;
  gap: 0.45rem 0.7rem;
  align-items: center;
  flex-wrap: wrap;
  background: var(--champagne);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  color: var(--taupe);
  font-size: 13px;
}
.profile-context-card strong { color: var(--charcoal); }
.profile-context-card span { width: 100%; font-size: 11px; }
.profile-context-card a { color: var(--rose-deep); }
.profile-context-missing { border-color: var(--rose); background: #FBF3EE; }

.generator-layout { display: grid; gap: 1rem; }
.generator-fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: 1rem; }
.generator-fieldset:disabled { opacity: 0.55; }
.field-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.field-meta small:last-child { flex-shrink: 0; }
.location-toggle-group { justify-content: center; }
.checkbox-label { display: flex !important; flex-direction: row; align-items: center; gap: 0.6rem; cursor: pointer; }
.checkbox-label input { width: 17px; height: 17px; accent-color: var(--rose); flex-shrink: 0; }

.generator-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 0.25rem; }
.generator-submit { border: 0; cursor: pointer; min-width: 180px; }
.generator-submit:disabled, .copy-btn:disabled, .output-regenerate:disabled { opacity: 0.6; cursor: wait; }

.caption-output-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.caption-output-card[hidden] { display: none; }
.output-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.output-heading h2 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-top: 0.2rem; }
.copy-btn {
  border: 1px solid var(--line);
  background: var(--surface-sunken);
  color: var(--charcoal);
  border-radius: 8px;
  padding: 8px 13px;
  font: inherit;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.copy-btn:hover { border-color: var(--rose); }
.caption-output { white-space: pre-wrap; overflow-wrap: anywhere; padding: 1.5rem 0; color: var(--charcoal); font-size: 15.5px; line-height: 1.75; }
.output-actions { border-top: 1px solid var(--line); padding-top: 1rem; display: flex; align-items: center; gap: 0.8rem 1rem; flex-wrap: wrap; }
.output-regenerate {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  color: var(--charcoal);
  font: inherit;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}
.output-regenerate:hover { border-color: var(--taupe); }
.output-actions small { color: var(--taupe); }

.marketing-note {
  background: var(--champagne);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--taupe);
  font-size: 12.5px;
  line-height: 1.55;
  padding: 0.85rem 1.1rem;
}

/* ===========================================================
   ACCOUNT / BILLING / HISTORY
   =========================================================== */
.account-page { width: min(980px, calc(100% - 2rem)); margin: 0 auto; padding: 3.5rem 0 5rem; }
.account-header { margin-bottom: 2rem; }
.account-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.account-header p { color: var(--taupe); max-width: 680px; line-height: 1.6; }
.account-card { margin-bottom: 1rem; }
.billing-status-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.25rem; flex-wrap: wrap; }
.billing-status-main strong { display: block; font-size: 17px; margin-bottom: 0.25rem; font-family: var(--font-display); font-weight: 600; }
.billing-status-main span { color: var(--taupe); font-size: 13px; }
.billing-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.billing-btn { border: 0; cursor: pointer; font-family: var(--font-ui); }
.billing-btn:disabled { opacity: 0.6; cursor: wait; }
.plan-note { color: var(--taupe); font-size: 12.5px; margin-top: 1.25rem; line-height: 1.55; }

.history-list { display: grid; gap: 1rem; }
.history-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-card); }
.history-meta { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 0.85rem; }
.history-meta strong { font-size: 13px; color: var(--rose-deep); text-transform: uppercase; letter-spacing: 0.04em; }
.history-meta span { color: var(--taupe); font-size: 11px; }
.history-output { white-space: pre-wrap; overflow-wrap: anywhere; color: var(--charcoal); font-size: 14px; line-height: 1.65; margin-bottom: 1rem; }
.history-empty { color: var(--taupe); text-align: center; padding: 3rem 1rem; }

.account-links { display: grid; gap: 0.25rem; }
.account-link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  font-weight: 600;
  font-size: 14px;
}
.account-link-row:last-child { border-bottom: 0; }
.account-link-row span:last-child { color: var(--taupe); font-weight: 400; }

/* ===========================================================
   PRICING (billing.html)
   =========================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 2rem; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.pricing-card.featured { border: 1.5px solid var(--rose); }
.pricing-card.selected-plan { border: 2px solid var(--rose-deep); box-shadow: 0 0 0 3px rgba(199,143,115,.16), var(--shadow-card); }
.featured-badge, .best-value-badge {
  position: absolute;
  top: -12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.featured-badge {
  left: 2rem;
  background: var(--rose);
  color: #fff;
}
.best-value-badge {
  right: 2rem;
  background: var(--charcoal);
  color: var(--rose-light);
}
.plan-name { font-size: 12.5px; font-weight: 700; color: var(--taupe); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.plan-price { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--charcoal); line-height: 1; }
.plan-price span { font-family: var(--font-ui); font-size: 15px; font-weight: 500; color: var(--taupe); }
.plan-saving { font-size: 12.5px; color: var(--rose-deep); font-weight: 700; margin-top: 0.8rem; line-height: 1.45; }
.plan-desc { font-size: 13.5px; color: var(--taupe); margin: 0.85rem 0 1.35rem; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 1.5rem; }
.plan-features li { font-size: 13.5px; color: var(--charcoal); padding: 6px 0; display: flex; gap: 9px; align-items: flex-start; }
.plan-features li::before { content: '✓'; color: var(--brand-green-deep); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-btn { display: block; width: 100%; text-align: center; padding: 12px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 700; text-decoration: none; }
.plan-btn-ghost { border: 1px solid var(--line); color: var(--charcoal); background: transparent; }
.plan-btn-ghost:hover { border-color: var(--rose); }
.plan-btn-solid { background: var(--rose); color: #fff; border: 1px solid var(--rose); }
.plan-btn-solid:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.plan-btn:disabled { opacity: 0.55; cursor: wait; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .generator-page, .profile-page, .account-page { padding-top: 2.25rem; }
  .generator-heading-row { flex-direction: column; gap: 0; }
  .usage-chip { margin: 0 0 1.5rem; }
}
@media (max-width: 640px) {
  .profile-card, .account-card { padding: 1.35rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-wide { grid-column: auto; }
  .danger-zone { align-items: flex-start; flex-direction: column; }
}

/* ===========================================================
   MARKETING / LANDING PAGE (index.html)
   =========================================================== */

.marketing-page {
  background: var(--ivory);
  overflow-x: hidden;
}

.mkt-status-banner {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  background: #F2E6DC;
  border: 1px solid rgba(199, 143, 115, 0.45);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.mkt-status-banner[hidden] { display: none; }

/* --- Marketing nav --- */
.mkt-nav {
  background: rgba(23, 23, 23, 0.96);
  border-bottom-color: rgba(250,247,242,0.10);
  backdrop-filter: blur(16px);
  padding-left: max(2rem, calc((100vw - 1240px)/2 + 2rem));
  padding-right: max(2rem, calc((100vw - 1240px)/2 + 2rem));
}
.mkt-nav .logo {
  color: var(--ivory);
  font-size: 27px;
}
.mkt-nav .logo span { color: var(--rose-light); }
.mkt-nav-actions { display: flex; align-items: center; gap: 1.75rem; }
.mkt-nav-links { display: flex; align-items: center; gap: 1.6rem; }
.mkt-nav-link {
  color: rgba(243,236,227,0.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.mkt-nav-link:hover { color: var(--ivory); }
.mkt-nav-cta-group { display: flex; align-items: center; gap: 1.1rem; }
.mkt-nav .btn-primary {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 8px 22px -12px rgba(199,143,115,.75);
}
.mkt-nav .btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* --- Shared marketing sections --- */
.mkt-section { padding: 5.25rem 2rem; }
.mkt-section-tight { padding: 2.6rem 2rem; }
.mkt-section-inner { max-width: 1120px; margin: 0 auto; }
.mkt-section-narrow { max-width: 780px; margin: 0 auto; }
.mkt-section-tint { background: var(--champagne); }
.mkt-section-head { text-align: center; margin-bottom: 2.6rem; }
.mkt-section-head .section-label { justify-content: center; }
.mkt-section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 760px;
  margin: 0 auto 1rem;
}
.mkt-section-head p {
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
.mkt-section-head-left { text-align: left; }
.mkt-section-head-left .section-label { justify-content: flex-start; }
.mkt-section-head-left h2 { margin-left: 0; margin-right: 0; }

/* --- Hero --- */
.mkt-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3.7rem max(2rem, calc((100vw - 1240px)/2 + 2rem)) 3.2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(1.6rem, 3vw, 3.2rem);
  align-items: center;
  background:
    radial-gradient(circle at 72% 28%, rgba(199,143,115,0.13), transparent 28%),
    linear-gradient(115deg, #151515 0%, #1b1b1b 56%, #23201e 100%);
  color: var(--cream-on-dark);
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.mkt-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--gradient-hairline);
  opacity: .75;
}
.mkt-hero-copy { position: relative; z-index: 2; max-width: 630px; }
.mkt-hero-copy .section-label {
  display: inline-flex;
  color: var(--rose-light);
  margin-bottom: 1.1rem;
  letter-spacing: .14em;
}
.mkt-hero h1 {
  color: var(--ivory);
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -0.035em;
  margin-bottom: 1.55rem;
}
.mkt-hero-line { display: block; white-space: nowrap; }
.mkt-hero h1 .accent { color: var(--rose-light); }
.mkt-hero-sub {
  color: rgba(243,236,227,0.78);
  font-size: 17px;
  line-height: 1.68;
  max-width: 560px;
  margin-bottom: 2rem;
}
.mkt-hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: .95rem; }
.mkt-hero .btn-primary {
  min-width: 180px;
  text-align: center;
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 12px 30px -16px rgba(199,143,115,.9);
}
.mkt-hero .btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.mkt-hero .btn-ghost {
  min-width: 140px;
  text-align: center;
  border-color: rgba(231,196,172,.55);
  color: var(--ivory);
  background: rgba(255,255,255,.02);
}
.mkt-hero .btn-ghost:hover { border-color: var(--rose-light); background: rgba(255,255,255,.05); }
.mkt-hero-note {
  font-size: 13px;
  color: rgba(243,236,227,0.67);
}
.mkt-hero-note::before {
  content: '✓';
  color: var(--rose-light);
  font-weight: 800;
  margin-right: .5rem;
}
.mkt-hero-visual { position: relative; z-index: 1; min-width: 0; }
.mkt-hero-photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 26px 64px -34px rgba(0,0,0,.65);
  border: 0;
}
.mkt-hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(27,27,27,.78) 0%, rgba(27,27,27,.28) 10%, transparent 25%);
  pointer-events: none;
}
.mkt-hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(17,17,17,.18));
  pointer-events: none;
}
.mkt-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.mkt-hero-quote-card {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 225px;
  background: rgba(24,24,24,.92);
  color: var(--cream-on-dark);
  border: 1px solid rgba(231,196,172,.18);
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  box-shadow: 0 16px 34px -14px rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}
.mkt-hero-quote-card .accent-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-light);
  font-size: 15px;
  margin-bottom: .25rem;
}
.mkt-hero-quote-card p { font-size: 13px; line-height: 1.45; color: rgba(243,236,227,.87); }

/* --- Interactive tool demo --- */
#demo {
  background: var(--ivory);
  position: relative;
}
#demo::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 110px;
  background: linear-gradient(180deg, rgba(232,221,208,.34), transparent);
  pointer-events: none;
}
.mkt-demo-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .55rem;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}
.mkt-demo-tab {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 58px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: .65rem .75rem;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.mkt-demo-tab:hover {
  background: rgba(255,252,246,.9);
  border-color: rgba(169,111,85,.26);
}
.mkt-demo-tab.active {
  color: var(--ivory);
  background: var(--charcoal);
  border-color: var(--rose);
  box-shadow: 0 10px 24px -14px rgba(23,23,23,.45);
}
.mkt-demo-tab-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-demo-tab.active .mkt-demo-tab-icon { color: var(--rose-light); }
.mkt-demo-tab-icon svg { width: 18px; height: 18px; }

.mkt-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 1rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.mkt-demo-stage {
  background: rgba(255,252,246,.92);
  border: 1px solid rgba(169,111,85,.20);
  border-radius: 22px;
  box-shadow: 0 18px 46px -28px rgba(23,23,23,.28);
  padding: 1.55rem;
  transition: opacity .15s ease;
}
.mkt-demo-stage-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.25rem;
}
.mkt-demo-stage-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-rosegold);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mkt-demo-stage-icon svg { width: 21px; height: 21px; }
.mkt-demo-stage-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.mkt-demo-stage-business { font-size: 12.5px; color: var(--taupe); }
.mkt-demo-stage-desc {
  color: var(--taupe);
  font-size: 13.5px;
  line-height: 1.55;
  margin: -0.75rem 0 1.2rem 3.1rem;
}
.mkt-demo-transform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: .75rem;
  align-items: stretch;
}
.mkt-demo-card {
  border-radius: 16px;
  padding: 1.2rem;
  min-height: 170px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mkt-demo-card-input {
  background: #F3F0EB;
  border: 1px solid rgba(23,23,23,.08);
}
.mkt-demo-card-output {
  background: #FFF9F2;
  border: 1px solid rgba(199,143,115,.34);
  box-shadow: inset 0 1px rgba(255,255,255,.8);
}
.mkt-demo-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  margin-bottom: .85rem;
}
.mkt-demo-card-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.mkt-demo-card-chip {
  flex: 0 0 auto;
  padding: .28rem .52rem;
  border-radius: 999px;
  background: rgba(199,143,115,.13);
  border: 1px solid rgba(169,111,85,.18);
  color: var(--rose-deep);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .04em;
}
.mkt-demo-card-chip-muted {
  background: rgba(23,23,23,.04);
  border-color: rgba(23,23,23,.08);
  color: #756c66;
}
.mkt-demo-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  white-space: pre-wrap;
}
.mkt-demo-card-input .mkt-demo-card-text { color: #514945; }
.mkt-demo-card-output .mkt-demo-card-text { font-weight: 520; }
.mkt-demo-card-ready {
  margin-top: auto;
  padding-top: .9rem;
  font-size: 10.5px;
  font-weight: 750;
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.mkt-demo-card-ready span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--rose);
  font-size: 10px;
}
.mkt-demo-arrow {
  width: 42px;
  height: 42px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  background: var(--charcoal);
  box-shadow: 0 8px 20px -12px rgba(23,23,23,.55);
}
.mkt-demo-arrow svg { width: 22px; height: 22px; }
.mkt-demo-teaser {
  background: linear-gradient(150deg, #F4E9DE 0%, #EFE2D5 100%);
  border: 1px solid rgba(169,111,85,.18);
  border-radius: 22px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mkt-demo-teaser-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,252,246,.75);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mkt-demo-teaser-icon svg { width: 19px; height: 19px; }
.mkt-demo-teaser h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: .7rem;
}
.mkt-demo-teaser p { font-size: 13px; color: var(--taupe); line-height: 1.6; }

/* --- Benefits --- */
.mkt-benefits-section {
  background: #FFFCF7;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mkt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}
.mkt-benefit {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .8rem .6rem;
}
.mkt-benefit-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(199,143,115,.10);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkt-benefit-icon svg { width: 21px; height: 21px; }
.mkt-benefit h3 { font-size: 14.5px; font-weight: 700; margin-bottom: .25rem; font-family: var(--font-ui); }
.mkt-benefit p { font-size: 12.5px; color: var(--taupe); line-height: 1.5; }


.mkt-benefits-head {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  text-align: center;
}
.mkt-benefits-head .section-label {
  justify-content: center;
  margin-bottom: .55rem;
}
.mkt-benefits-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

/* --- Visual story / feature section --- */
.mkt-story-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(199,143,115,.10), transparent 25%),
    #FFF9F3;
}
.mkt-story-grid {
  display: grid;
  gap: 1.35rem;
}
.mkt-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  background: rgba(255,252,246,.9);
  border: 1px solid rgba(169,111,85,.17);
  border-radius: 26px;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  box-shadow: 0 22px 54px -36px rgba(23,23,23,.34);
  overflow: hidden;
}
.mkt-story-card-reverse .mkt-story-visual { order: 2; }
.mkt-story-card-reverse .mkt-story-copy { order: 1; }
.mkt-story-visual {
  position: relative;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #EEDFD2;
}
.mkt-story-visual > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.mkt-story-card-photo .mkt-story-visual > img { object-position: 50% 44%; }
.mkt-story-detail > img { object-position: 50% 48%; }
.mkt-story-copy {
  padding: .75rem clamp(.25rem, 1vw, 1rem);
}
.mkt-story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(199,143,115,.13);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 1.05rem;
}
.mkt-story-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 600;
  margin-bottom: .9rem;
  max-width: 470px;
}
.mkt-story-copy p {
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.72;
  max-width: 480px;
}
.mkt-text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.1rem;
  color: var(--rose-deep);
  font-weight: 750;
  font-size: 13.5px;
  text-decoration: none;
}
.mkt-text-link:hover { text-decoration: underline; }

.mkt-floating-output {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(265px, calc(100% - 2rem));
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255,252,246,.94);
  border: 1px solid rgba(169,111,85,.20);
  box-shadow: 0 20px 38px -20px rgba(23,23,23,.55);
  backdrop-filter: blur(10px);
}
.mkt-floating-kicker {
  display: block;
  color: var(--rose-deep);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.mkt-floating-output strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: .35rem;
}
.mkt-floating-output p {
  color: #514945;
  font-size: 11.5px;
  line-height: 1.48;
  margin: 0 0 .6rem;
}
.mkt-floating-ready {
  display: inline-flex;
  color: var(--rose-deep);
  font-size: 10px;
  font-weight: 750;
}

.mkt-story-ui {
  padding: 1.1rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(199,143,115,.18), transparent 36%),
    #F2E6DB;
}
.mkt-browser-shell {
  width: 100%;
  background: #FFFDFC;
  border: 1px solid rgba(23,23,23,.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px -24px rgba(23,23,23,.42);
}
.mkt-browser-bar {
  min-height: 42px;
  padding: 0 .75rem;
  display: flex;
  align-items: center;
  gap: .38rem;
  border-bottom: 1px solid rgba(23,23,23,.07);
  background: #F7F2EC;
}
.mkt-browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(169,111,85,.35);
}
.mkt-browser-address {
  margin-left: .4rem;
  color: var(--taupe);
  font-size: 10px;
  font-weight: 700;
}
.mkt-browser-body {
  display: grid;
  grid-template-columns: minmax(0,1fr) 34px minmax(0,1fr);
  gap: .65rem;
  align-items: center;
  padding: 1rem;
}
.mkt-review-source,
.mkt-review-output {
  min-height: 180px;
  border-radius: 14px;
  padding: 1rem;
}
.mkt-review-source {
  background: #F4F0EA;
  border: 1px solid rgba(23,23,23,.07);
}
.mkt-review-stars {
  color: #B37252;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  font-size: 12px;
}
.mkt-review-source strong {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.mkt-review-source span {
  color: var(--taupe);
  font-size: 10.5px;
}
.mkt-review-output {
  background: #FFF8F0;
  border: 1px solid rgba(199,143,115,.28);
}
.mkt-review-output p {
  color: #3E3936;
  font-size: 12px;
  line-height: 1.55;
  margin: .4rem 0 .9rem;
}
.mkt-ui-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 17px;
}

.mkt-profile-chip {
  position: absolute;
  min-width: 165px;
  padding: .75rem .85rem;
  border-radius: 14px;
  background: rgba(23,23,23,.91);
  color: var(--ivory);
  border: 1px solid rgba(231,196,172,.16);
  box-shadow: 0 16px 30px -18px rgba(0,0,0,.6);
  backdrop-filter: blur(9px);
}
.mkt-profile-chip span {
  display: block;
  font-size: 9px;
  color: var(--rose-light);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
  margin-bottom: .25rem;
}
.mkt-profile-chip strong {
  font-size: 11.5px;
  font-weight: 700;
}
.mkt-profile-chip-one { left: 1rem; top: 1rem; }
.mkt-profile-chip-two { right: 1rem; bottom: 1rem; }


/* --- Pricing --- */
#pricing {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,252,246,.65), transparent 34%),
    var(--champagne);
}
.mkt-pricing-grid { gap: 1.4rem; max-width: 920px; margin-left: auto; margin-right: auto; }
.mkt-pricing-card {
  padding: 2.2rem;
  border-radius: 24px;
  box-shadow: 0 18px 46px -30px rgba(23,23,23,.34);
}
.mkt-pricing-card-best {
  border-color: var(--rose);
  transform: translateY(-4px);
}
.mkt-plan-badge { font-size: 11px; padding: 5px 15px; }
.mkt-plan-badge-muted { background: var(--rose); color: white; }
.mkt-plan-badge-best {
  left: auto;
  right: 1.5rem;
  background: var(--charcoal);
  color: var(--rose-light);
  border: 1px solid rgba(231,196,172,.35);
}
.mkt-plan-saving {
  color: var(--rose-deep);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  margin-top: .9rem;
}
.mkt-pricing-card .plan-price { font-size: clamp(42px,5vw,58px); }
.mkt-pricing-card .plan-features { margin-top: .4rem; }
.mkt-pricing-card .plan-btn { padding: 13px; margin-top: .2rem; }
.mkt-pricing-card-best .plan-btn-solid {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 12px 26px -16px rgba(169,111,85,.65);
}
.mkt-pricing-card-best .plan-btn-solid:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}
.mkt-pricing-card:not(.mkt-pricing-card-best) .plan-btn-ghost {
  border-color: rgba(23,23,23,.22);
  color: var(--charcoal);
  background: transparent;
}
.mkt-pricing-note {
  text-align: center;
  color: var(--taupe);
  font-size: 12.5px;
  line-height: 1.55;
  max-width: 650px;
  margin: 1.7rem auto 0;
}

/* --- FAQ --- */
.mkt-faq-section { background: var(--ivory); }
.mkt-faq { display: grid; }
.mkt-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.mkt-faq-item:first-child { border-top: 1px solid var(--line); }
.mkt-faq-q {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  font-size: 16px;
  font-weight: 750;
  font-family: var(--font-ui);
  line-height: 1.4;
}
.mkt-faq-q::-webkit-details-marker { display: none; }
.mkt-faq-q::after {
  content: '+';
  position: absolute;
  right: .2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose-deep);
  font-size: 24px;
  font-weight: 400;
}
.mkt-faq-item[open] .mkt-faq-q::after { content: '−'; }
.mkt-faq-a {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.7;
  padding: 0 3rem 1.35rem 0;
}

/* --- Footer --- */
.mkt-footer {
  background: var(--soft-black);
  color: rgba(243,236,227,.68);
  padding: 3.2rem 2rem 2.4rem;
}
.mkt-footer-inner { max-width: 1120px; margin: 0 auto; }
.mkt-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-on-dark);
  margin-bottom: 1.5rem;
}
.mkt-footer .logo { color: var(--ivory); font-size: 26px; }
.mkt-footer .logo span { color: var(--rose-light); }
.mkt-footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.mkt-footer-links a { color: rgba(243,236,227,.78); font-size: 14px; text-decoration: none; }
.mkt-footer-links a:hover { color: var(--rose-light); }
.mkt-footer-note { font-size: 12.5px; line-height: 1.7; max-width: 700px; }
.mkt-footer-note strong { color: var(--rose-light); font-weight: 700; }

/* --- Responsive --- */
@media (max-width: 980px) {
  .mkt-hero {
    grid-template-columns: minmax(0,1fr) minmax(330px,.8fr);
    gap: 2.2rem;
    min-height: 560px;
  }
  .mkt-hero h1 { font-size: clamp(44px, 5.8vw, 60px); }
  .mkt-demo-tabs { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mkt-demo-layout { grid-template-columns: minmax(0,1fr) 220px; }
  .mkt-benefits-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .mkt-story-card { grid-template-columns: minmax(0,1fr) minmax(280px,.9fr); }
  .mkt-story-visual { min-height: 310px; }
  .mkt-story-visual > img { min-height: 310px; }
}

@media (max-width: 860px) {
  .mkt-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.8rem;
  }
  .mkt-hero-copy { max-width: 720px; }
  .mkt-hero-sub { max-width: 650px; }
  .mkt-hero-photo-frame {
    aspect-ratio: 4 / 3;
    max-height: 560px;
  }
  .mkt-hero-photo { object-position: 50% 24%; }
  .mkt-demo-layout { grid-template-columns: 1fr; }
  .mkt-demo-teaser {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1rem;
  }
  .mkt-demo-teaser-icon { grid-row: 1 / span 2; margin-bottom: 0; }
  .mkt-demo-teaser h3 { font-size: 20px; margin-bottom: .25rem; }

  .mkt-story-card,
  .mkt-story-card-reverse { grid-template-columns: 1fr; }
  .mkt-story-card-reverse .mkt-story-visual,
  .mkt-story-card-reverse .mkt-story-copy { order: initial; }
  .mkt-story-visual { min-height: 360px; }
  .mkt-story-visual > img { min-height: 360px; }
}

@media (max-width: 780px) {
  .mkt-nav-links { display: none; }
  .mkt-nav .mkt-nav-cta-group > .mkt-nav-link { display: none; }
}

@media (max-width: 640px) {
  .mkt-nav {
    padding: 1rem 1.05rem;
  }
  .mkt-nav .logo { font-size: 25px; }
  .mkt-nav .btn-sm {
    padding: 10px 15px;
    font-size: 13.5px;
    border-radius: 12px;
  }

  .mkt-hero {
    padding: 2.15rem 1.15rem 1.3rem;
    gap: 1.5rem;
    text-align: left;
  }
  .mkt-hero h1 {
    font-size: clamp(42px, 12.2vw, 58px);
    line-height: .98;
    margin-bottom: 1.15rem;
  }
  .mkt-hero-copy .section-label { font-size: 11px; margin-bottom: .9rem; }
  .mkt-hero-sub { font-size: 15px; line-height: 1.58; margin-bottom: 1.4rem; }
  .mkt-hero-ctas {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(120px,.7fr);
    gap: .65rem;
  }
  .mkt-hero .btn-primary,
  .mkt-hero .btn-ghost {
    width: 100%;
    min-width: 0;
    padding: 12px 10px;
  }
  .mkt-hero-note { font-size: 12px; }
  .mkt-hero-photo-frame {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    max-height: none;
  }
  .mkt-hero-photo { object-position: 50% 28%; }
  .mkt-hero-quote-card {
    right: .75rem;
    bottom: .75rem;
    max-width: 190px;
    padding: .8rem .9rem;
  }
  .mkt-hero-quote-card .accent-line { font-size: 13px; }
  .mkt-hero-quote-card p { font-size: 11.5px; }

  .mkt-section { padding: 3.4rem 1.15rem; }
  .mkt-section-tight { padding: 1.55rem 1.15rem; }
  .mkt-section-head { margin-bottom: 2rem; }
  .mkt-section-head h2 {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.08;
  }
  .mkt-section-head p { font-size: 14.5px; }

  .mkt-demo-tabs {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: .5rem;
    margin-left: -1.15rem;
    margin-right: -1.15rem;
    padding: .15rem 1.15rem .7rem;
    scrollbar-width: none;
  }
  .mkt-demo-tabs::-webkit-scrollbar { display: none; }
  .mkt-demo-tab {
    flex: 0 0 auto;
    min-height: 48px;
    padding: .55rem .8rem;
    border: 1px solid rgba(23,23,23,.08);
    background: rgba(255,252,246,.72);
    scroll-snap-align: start;
    font-size: 12px;
    white-space: nowrap;
  }
  .mkt-demo-tab.active {
    background: var(--charcoal);
    border-color: var(--rose);
  }
  .mkt-demo-tab-icon { width: 24px; height: 24px; }
  .mkt-demo-tab-icon svg { width: 16px; height: 16px; }

  .mkt-demo-stage { padding: 1rem; border-radius: 18px; }
  .mkt-demo-stage-head { margin-bottom: 1rem; }
  .mkt-demo-stage-icon { width: 38px; height: 38px; border-radius: 11px; }
  .mkt-demo-stage-name { font-size: 17px; }
  .mkt-demo-stage-desc {
    margin: -.5rem 0 1rem 2.85rem;
    font-size: 12.5px;
  }
  .mkt-demo-transform {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .mkt-demo-card {
    min-height: auto;
    padding: 1rem;
    border-radius: 14px;
  }
  .mkt-demo-card-topline { margin-bottom: .7rem; }
  .mkt-demo-card-chip { font-size: 9px; padding: .24rem .45rem; }
  .mkt-demo-card-ready { padding-top: .75rem; }
  .mkt-demo-card-text { font-size: 13.5px; line-height: 1.6; }
  .mkt-demo-arrow {
    transform: rotate(90deg);
    width: 36px;
    height: 36px;
    margin: 0 auto;
  }
  .mkt-demo-arrow svg { width: 19px; height: 19px; }
  .mkt-demo-teaser {
    grid-template-columns: auto 1fr;
    padding: 1rem;
    border-radius: 18px;
  }
  .mkt-demo-teaser-icon { width: 38px; height: 38px; }
  .mkt-demo-teaser h3 { font-size: 18px; }
  .mkt-demo-teaser p { font-size: 12.5px; }

  .mkt-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: .45rem;
  }
  .mkt-benefit {
    display: block;
    padding: .75rem .4rem;
  }
  .mkt-benefit-icon {
    width: 34px;
    height: 34px;
    margin-bottom: .55rem;
  }
  .mkt-benefit-icon svg { width: 19px; height: 19px; }
  .mkt-benefit h3 { font-size: 13px; line-height: 1.35; }
  .mkt-benefit p { font-size: 11.5px; }

  .mkt-pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .mkt-pricing-card {
    padding: 1.55rem;
    border-radius: 20px;
  }
  .mkt-pricing-card-best { transform: none; }
  .mkt-plan-badge-best { right: 1rem; }
  .mkt-plan-saving { font-size: 12.5px; }
  .mkt-pricing-card .plan-price { font-size: 48px; }
  .mkt-pricing-card .plan-features li { font-size: 13px; }
  .mkt-pricing-card .plan-btn { padding: 13px; }

  .mkt-faq-q { font-size: 15px; padding: 1.15rem 2.5rem 1.15rem 0; }
  .mkt-faq-a { font-size: 13.5px; padding: 0 1rem 1.2rem 0; }

  .mkt-footer { padding: 2.6rem 1.15rem 2rem; }
  .mkt-footer-top { align-items: flex-start; }
  .mkt-footer-links { gap: 1.1rem; }
  .mkt-footer-note { font-size: 12px; }

  .mkt-benefits-head { margin-bottom: 1.15rem; }
  .mkt-benefits-head h2 { font-size: 25px; }

  .mkt-story-grid { gap: 1rem; }
  .mkt-story-card {
    padding: .8rem;
    border-radius: 20px;
    gap: 1rem;
  }
  .mkt-story-visual,
  .mkt-story-visual > img {
    min-height: 270px;
  }
  .mkt-story-visual { border-radius: 16px; }
  .mkt-story-copy { padding: .4rem .35rem .8rem; }
  .mkt-story-number { width: 34px; height: 34px; margin-bottom: .75rem; }
  .mkt-story-copy h3 { font-size: 28px; }
  .mkt-story-copy p { font-size: 14px; line-height: 1.65; }
  .mkt-floating-output {
    right: .65rem;
    bottom: .65rem;
    width: min(230px, calc(100% - 1.3rem));
    padding: .8rem .85rem;
  }
  .mkt-browser-body {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .mkt-ui-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .mkt-review-source,
  .mkt-review-output { min-height: auto; }
  .mkt-profile-chip { min-width: 145px; padding: .65rem .7rem; }
  .mkt-profile-chip-one { left: .65rem; top: .65rem; }
  .mkt-profile-chip-two { right: .65rem; bottom: .65rem; }
}

@media (max-width: 390px) {
  .mkt-hero h1 { font-size: 40px; }
  .mkt-hero-ctas { grid-template-columns: 1fr; }
  .mkt-hero .btn-ghost { display: none; }
  .mkt-benefits-grid { grid-template-columns: 1fr; }
  .mkt-benefit { display: flex; }
  .mkt-benefit-icon { margin-bottom: 0; }
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================================
   FINAL LANDING-PAGE ALIGNMENT
   Keeps the verified V13 application styles intact while restoring
   the agreed image-rich marketing treatment. UI overlays remain
   live HTML/CSS rather than being baked into photographic assets.
   =========================================================== */

/* Hero: use the wide approved photograph and a separate product UI card. */
.marketing-page .mkt-hero {
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.2fr);
}
.marketing-page .mkt-hero-photo-frame {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
}
.marketing-page .mkt-hero-photo {
  object-position: 50% 48%;
}
.marketing-page .mkt-hero-output-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: min(238px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: 17px;
  background: rgba(255,252,246,.97);
  color: var(--charcoal);
  border: 1px solid rgba(169,111,85,.2);
  box-shadow: 0 22px 46px -20px rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
}
.mkt-hero-output-head {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.mkt-hero-output-icon {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(199,143,115,.14);
  color: var(--rose-deep);
  font-size: 15px;
}
.mkt-hero-output-status {
  display: inline-flex;
  padding: .25rem .45rem;
  border-radius: 999px;
  background: rgba(47,143,79,.09);
  color: var(--brand-green-deep);
  font-size: 9.5px;
  font-weight: 800;
  margin-bottom: .65rem;
}
.mkt-hero-output-card p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 .7rem;
  color: #453f3c;
}
.mkt-hero-output-action {
  display: inline-flex;
  padding: .48rem .68rem;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  margin-bottom: .6rem;
}
.mkt-hero-output-ready {
  display: block;
  font-size: 9.5px;
  font-weight: 750;
  color: var(--brand-green-deep);
}

/* Interactive demo: photographic pacing on the right without fake UI baked into the image. */
.mkt-demo-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 0;
  display: block;
  background: #1c1b1a;
}
.mkt-demo-photo-card > img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: 58% 26%;
  display: block;
  filter: saturate(.92) contrast(1.02);
}
.mkt-demo-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20,20,20,.66) 100%);
  pointer-events: none;
}
.mkt-demo-photo-overlay {
  position: absolute;
  z-index: 2;
  left: .85rem;
  right: .85rem;
  bottom: .85rem;
  padding: .85rem .9rem;
  border-radius: 14px;
  background: rgba(25,25,25,.9);
  border: 1px solid rgba(231,196,172,.16);
  color: var(--ivory);
  backdrop-filter: blur(9px);
}
.mkt-demo-photo-overlay .mkt-floating-kicker { color: var(--rose-light); }
.mkt-demo-photo-overlay strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: .3rem;
}
.mkt-demo-photo-overlay p {
  margin: 0;
  color: rgba(243,236,227,.75);
  font-size: 10.5px;
  line-height: 1.48;
}

/* Factual trust section: deliberately no names, ratings, logos or testimonial language. */
.mkt-trust-section {
  background:
    linear-gradient(135deg, rgba(232,221,208,.55), rgba(255,252,246,.94)),
    var(--champagne);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.mkt-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.mkt-trust-card {
  min-height: 210px;
  padding: 1.45rem;
  border-radius: 20px;
  background: rgba(255,252,246,.88);
  border: 1px solid rgba(169,111,85,.16);
  box-shadow: 0 18px 38px -30px rgba(23,23,23,.28);
}
.mkt-trust-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(199,143,115,.13);
  color: var(--rose-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.mkt-trust-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.16;
  font-weight: 600;
  margin-bottom: .65rem;
}
.mkt-trust-card p {
  color: var(--taupe);
  font-size: 13px;
  line-height: 1.62;
}

@media (max-width: 1080px) {
  .marketing-page .mkt-hero {
    grid-template-columns: minmax(0,1fr) minmax(390px,.95fr);
  }
  .mkt-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .marketing-page .mkt-hero { grid-template-columns: 1fr; }
  .marketing-page .mkt-hero-photo-frame { aspect-ratio: 16 / 10; }
  .mkt-demo-photo-card { min-height: 290px; }
  .mkt-demo-photo-card > img { min-height: 290px; object-position: 50% 24%; }
}

@media (max-width: 640px) {
  .marketing-page .mkt-hero-photo-frame { aspect-ratio: 4 / 3; }
  .marketing-page .mkt-hero-output-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    margin: -4.5rem .75rem .75rem;
  }
  .mkt-trust-grid { grid-template-columns: 1fr; }
  .mkt-trust-card { min-height: 0; }
}

/* ==========================================================
   REFERENCE-LOCKED MARKETING PAGE
   Matches the approved ivory / rose-bronze visual mock-up.
   Scoped to body.marketing-reference so authenticated pages
   retain the verified V13 application styling.
   ========================================================== */
.marketing-reference {
  --ref-bg: #fbf7f2;
  --ref-card: #fffdf9;
  --ref-soft: #f6ede5;
  --ref-soft-2: #efe3d7;
  --ref-ink: #171513;
  --ref-muted: #786e68;
  --ref-line: #eaded3;
  --ref-rose: #c77f61;
  --ref-rose-deep: #a95f44;
  --ref-green: #2e8f4c;
  background: var(--ref-bg);
  color: var(--ref-ink);
}
.marketing-reference .section-label {
  color: var(--ref-rose-deep);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: .7rem;
}
.marketing-reference h1,
.marketing-reference h2,
.marketing-reference h3 { color: var(--ref-ink); }
.marketing-reference .ref-container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* Nav */
.marketing-reference .ref-nav {
  min-height: 70px;
  background: rgba(255,253,249,.96);
  border-bottom: 1px solid var(--ref-line);
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ref-ink);
  backdrop-filter: blur(10px);
}
.marketing-reference .ref-nav .logo { color: var(--ref-ink); }
.marketing-reference .ref-nav .logo span { color: var(--ref-rose); }
.marketing-reference .ref-nav .mkt-nav-link { color: #3c3734; }
.marketing-reference .ref-nav .mkt-nav-link:hover { color: var(--ref-rose-deep); }
.marketing-reference .ref-nav .btn-primary { background: #111; border-color: #111; color: white; }
.marketing-reference .ref-nav .btn-primary:hover { background: #292522; border-color: #292522; }

/* Hero */
.marketing-reference .ref-hero { background: linear-gradient(90deg,#fffaf5 0%,#fbf4ed 45%,#f3e7dc 100%); border-bottom: 1px solid var(--ref-line); }
.marketing-reference .ref-hero-inner {
  max-width: 1320px; margin: 0 auto; min-height: 530px; display: grid;
  grid-template-columns: .9fr 1.4fr; align-items: stretch;
}
.marketing-reference .ref-hero-copy { padding: 72px 28px 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.marketing-reference .ref-hero-copy h1 {
  font-family: var(--font-display); font-size: clamp(46px,5vw,74px); line-height: .98;
  letter-spacing: -.045em; font-weight: 600; margin: 0 0 22px;
}
.marketing-reference .ref-hero-copy h1 span { color: var(--ref-rose-deep); }
.marketing-reference .ref-hero-copy > p:not(.ref-free-note) { max-width: 520px; color: #605752; font-size: 16px; line-height: 1.65; margin-bottom: 25px; }
.marketing-reference .ref-hero-actions { display: flex; gap: 12px; margin-bottom: 13px; }
.marketing-reference .ref-hero-actions .btn-primary { min-width: 172px; background: #111; color: white; border: 1px solid #111; padding: 14px 22px; text-align: center; }
.marketing-reference .btn-light-outline { min-width: 140px; border: 1px solid #cdbdb1; border-radius: 8px; padding: 14px 22px; text-align: center; color: #28231f; background: rgba(255,255,255,.58); font-weight: 700; }
.marketing-reference .ref-free-note { color: #6c625d; font-size: 13px; display: flex; gap: 8px; align-items: center; }
.marketing-reference .ref-free-note span { color: var(--ref-rose-deep); font-weight: 800; }
.marketing-reference .ref-hero-media { position: relative; min-height: 530px; overflow: hidden; }
.marketing-reference .ref-hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; display: block; }
.marketing-reference .ref-hero-media::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(251,244,237,.9) 0%,rgba(251,244,237,.08) 22%,transparent 44%); z-index:1; pointer-events:none; }
.marketing-reference .ref-hero-result {
  position: absolute; right: 6.5%; top: 15%; z-index: 3; width: min(250px,32%);
  background: rgba(255,253,249,.96); border: 1px solid #e5d7cd; border-radius: 15px; box-shadow: 0 18px 42px rgba(42,31,23,.16); padding: 18px;
}
.marketing-reference .ref-result-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; display:flex; gap:8px; align-items:center; margin-bottom: 15px; }
.marketing-reference .ref-instagram-icon { color: var(--ref-rose-deep); font-size: 18px; }
.marketing-reference .ref-result-status { display:inline-block; padding:5px 9px; border-radius:999px; background:#edf7ef; color:var(--ref-green); font-size:10px; font-weight:800; margin-bottom:12px; }
.marketing-reference .ref-hero-result p { font-size:13px; color:#443e3a; line-height:1.55; margin-bottom:12px; }
.marketing-reference .ref-copy-button { display:inline-flex; background:#111; color:#fff; border-radius:7px; padding:8px 13px; font-size:10px; font-weight:800; }
.marketing-reference .ref-ready { display:block; color:var(--ref-green); font-size:10px; font-weight:800; margin-top:10px; }

/* Section headings */
.marketing-reference .ref-heading { text-align:center; max-width:760px; margin:0 auto 28px; }
.marketing-reference .ref-heading h2 { font-family:var(--font-display); font-size:clamp(32px,4vw,48px); line-height:1.03; letter-spacing:-.035em; margin:0 0 10px; }
.marketing-reference .ref-heading p { color:var(--ref-muted); font-size:14px; line-height:1.6; }
.marketing-reference .ref-heading.compact { margin-bottom:22px; }
.marketing-reference .ref-heading.compact h2 { font-size:clamp(27px,3vw,38px); }
.marketing-reference .ref-heading.left { text-align:left; margin-left:0; }

/* Interactive demo */
.marketing-reference .ref-demo { padding: 50px 0 26px; background:#fffdf9; }
.marketing-reference .ref-demo-tabs { justify-content:center; flex-wrap:wrap; gap:8px; margin:0 auto 20px; }
.marketing-reference .ref-demo-tabs .mkt-demo-tab { background:#fff; border:1px solid #e8ded5; box-shadow:0 2px 8px rgba(30,25,20,.035); border-radius:8px; padding:9px 12px; font-size:11px; color:#4c4540; }
.marketing-reference .ref-demo-tabs .mkt-demo-tab.active { border-color:var(--ref-rose); background:#fffaf6; color:#171513; box-shadow:0 0 0 1px rgba(199,127,97,.12); }
.marketing-reference .ref-demo-board {
  display:grid; grid-template-columns:1.15fr .72fr 1fr .9fr; min-height:270px;
  border:1px solid var(--ref-line); border-radius:14px; overflow:hidden; background:#fff; box-shadow:0 12px 34px rgba(66,48,35,.07); transition:opacity .12s ease;
}
.marketing-reference .ref-demo-board > div { padding:22px; }
.marketing-reference .ref-demo-input,.marketing-reference .ref-demo-magic,.marketing-reference .ref-demo-output { border-right:1px solid var(--ref-line); }
.marketing-reference .ref-demo-eyebrow { font-size:11px; font-weight:800; margin-bottom:12px; }
.marketing-reference .ref-demo-stage-meta { display:flex; gap:9px; align-items:center; margin-bottom:8px; }
.marketing-reference .ref-demo-stage-meta .mkt-demo-stage-icon { display:flex; width:32px; height:32px; align-items:center; justify-content:center; border-radius:9px; background:var(--ref-soft); color:var(--ref-rose-deep); }
.marketing-reference .ref-demo-stage-meta .mkt-demo-stage-icon svg { width:17px; height:17px; }
.marketing-reference .ref-demo-stage-meta .mkt-demo-stage-name { font-size:15px; }
.marketing-reference .ref-demo-stage-meta .mkt-demo-stage-business { font-size:10px; }
.marketing-reference .ref-demo-input .mkt-demo-stage-desc { font-size:11px; color:var(--ref-muted); margin:0 0 12px; line-height:1.5; }
.marketing-reference .ref-form-label { font-size:10px; color:#6c625d; font-weight:700; margin-bottom:6px; }
.marketing-reference .ref-input-box,.marketing-reference .ref-output-box { background:#faf7f3; border:1px solid #e7ddd4; border-radius:8px; min-height:70px; padding:11px; font-size:12px; line-height:1.5; color:#433d38; }
.marketing-reference .ref-demo-magic { display:flex; flex-direction:column; text-align:center; justify-content:center; align-items:center; background:#fffaf6; }
.marketing-reference .ref-sparkles { color:var(--ref-rose-deep); font-size:30px; margin-bottom:8px; }
.marketing-reference .ref-demo-magic strong { font-family:var(--font-display); font-size:16px; margin-bottom:6px; }
.marketing-reference .ref-demo-magic p { color:var(--ref-muted); font-size:10px; line-height:1.55; }
.marketing-reference .ref-demo-output .ref-output-box { background:#fff; min-height:108px; margin-bottom:10px; }
.marketing-reference .ref-demo-photo { position:relative; padding:0!important; min-height:270px; overflow:hidden; }
.marketing-reference .ref-demo-photo img { width:100%; height:100%; object-fit:cover; object-position:center; }
.marketing-reference .ref-phone { position:absolute; right:10%; top:16%; width:122px; min-height:190px; border:5px solid #1b1b1b; border-radius:20px; background:#fff; padding:18px 12px 12px; box-shadow:0 13px 30px rgba(0,0,0,.2); display:flex; flex-direction:column; gap:7px; }
.marketing-reference .ref-phone-bar { position:absolute; top:6px; left:50%; transform:translateX(-50%); width:38px; height:5px; background:#181818; border-radius:99px; }
.marketing-reference .ref-phone-kicker { color:var(--ref-rose-deep); text-transform:uppercase; font-size:7px; font-weight:800; letter-spacing:.08em; }
.marketing-reference .ref-phone strong { font-size:11px; }
.marketing-reference .ref-phone p { font-size:8px; color:#5f5752; line-height:1.45; }
.marketing-reference .ref-phone > span:last-child { color:var(--ref-green); font-size:8px; font-weight:800; margin-top:auto; }
.marketing-reference .ref-demo-assurance { max-width:500px; margin:16px auto 0; text-align:center; padding:9px 16px; border:1px solid #ecdcd0; background:#fff8f2; border-radius:8px; color:#776b64; font-size:10px; }

/* Benefit strip */
.marketing-reference .ref-benefits { padding:34px 0 38px; background:#fffaf6; border-top:1px solid var(--ref-line); border-bottom:1px solid var(--ref-line); }
.marketing-reference .ref-benefit-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.marketing-reference .ref-benefit-grid article { text-align:center; padding:10px 14px; }
.marketing-reference .ref-icon-circle { width:52px; height:52px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:#fff1e8; margin:0 auto 12px; color:var(--ref-rose-deep); }
.marketing-reference .ref-icon-circle svg { width:26px; height:26px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.marketing-reference .ref-benefit-grid h3 { font-family:var(--font-ui); font-size:13px; margin:0 0 5px; }
.marketing-reference .ref-benefit-grid p { color:var(--ref-muted); font-size:11px; line-height:1.5; }

/* Feature showcase */
.marketing-reference .ref-features { padding:58px 0 48px; background:#fffdf9; }
.marketing-reference .ref-feature-grid { max-width:900px; margin:0 auto; display:grid; gap:14px; }
.marketing-reference .ref-feature-item { display:grid; grid-template-columns:1.15fr .9fr; gap:14px; align-items:stretch; }
.marketing-reference .ref-feature-review { grid-template-columns:.9fr 1.15fr; }
.marketing-reference .ref-feature-media,.marketing-reference .ref-feature-copy { border:1px solid var(--ref-line); border-radius:13px; overflow:hidden; background:#fff; min-height:195px; }
.marketing-reference .ref-feature-media { position:relative; }
.marketing-reference .ref-feature-media > img { width:100%; height:100%; object-fit:cover; display:block; min-height:195px; }
.marketing-reference .ref-feature-social .ref-feature-media > img { object-position:center 42%; }
.marketing-reference .ref-feature-promo .ref-feature-media > img { object-position:center; }
.marketing-reference .ref-feature-copy { padding:25px; display:flex; gap:14px; align-items:center; }
.marketing-reference .ref-tool-icon { flex:0 0 auto; width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:#f0d8c9; color:var(--ref-rose-deep); font-size:18px; }
.marketing-reference .ref-feature-copy h3 { font-family:var(--font-display); font-size:24px; margin:0 0 6px; }
.marketing-reference .ref-feature-copy p { color:var(--ref-muted); font-size:12px; line-height:1.55; margin:0 0 10px; }
.marketing-reference .ref-feature-copy a { color:var(--ref-rose-deep); font-size:11px; font-weight:800; }
.marketing-reference .ref-mini-card { position:absolute; right:13px; bottom:13px; width:175px; background:rgba(255,253,249,.96); border:1px solid #ead8cb; border-radius:11px; padding:12px; box-shadow:0 9px 22px rgba(34,27,20,.12); }
.marketing-reference .ref-mini-card span { display:block; color:var(--ref-rose-deep); font-size:8px; text-transform:uppercase; font-weight:800; letter-spacing:.09em; }
.marketing-reference .ref-mini-card strong { display:block; font-family:var(--font-display); font-size:16px; margin:5px 0; }
.marketing-reference .ref-mini-card p { font-size:9px; line-height:1.45; color:#615853; }
.marketing-reference .ref-mini-card.dark { background:rgba(28,25,23,.93); color:#fff; border-color:#443a34; }
.marketing-reference .ref-mini-card.dark strong { color:#fff; }
.marketing-reference .ref-mini-card.dark p { color:#ddd3cc; }
.marketing-reference .ref-feature-ui-media { display:flex; justify-content:center; align-items:center; background:linear-gradient(135deg,#f2e5da,#fff9f4); }
.marketing-reference .ref-laptop-ui { width:82%; }
.marketing-reference .ref-laptop-screen { background:#fff; border:7px solid #272421; border-bottom-width:10px; border-radius:9px 9px 4px 4px; padding:14px; box-shadow:0 12px 22px rgba(0,0,0,.1); }
.marketing-reference .ref-laptop-screen > span { font-size:9px; font-weight:800; text-transform:uppercase; color:var(--ref-rose-deep); }
.marketing-reference .ref-rating-row { margin-top:7px; padding:7px; background:#fbf7f2; border-radius:5px; color:#c27655; font-size:8px; display:flex; justify-content:space-between; }
.marketing-reference .ref-rating-row b { color:#57504c; }
.marketing-reference .ref-laptop-base { height:8px; background:#69615d; border-radius:0 0 14px 14px; width:110%; margin-left:-5%; }
.marketing-reference .ref-extra-tools { max-width:900px; margin:15px auto 0; border:1px solid var(--ref-line); border-radius:12px; padding:12px 18px; background:#fbf5ef; display:flex; justify-content:space-between; gap:15px; align-items:center; color:#6b6059; font-size:11px; }
.marketing-reference .ref-extra-tools a { background:#111; color:#fff; padding:8px 12px; border-radius:7px; font-weight:700; white-space:nowrap; }

/* Trust */
.marketing-reference .ref-trust { padding:48px 0; background:#faf4ed; border-top:1px solid var(--ref-line); }
.marketing-reference .ref-trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.marketing-reference .ref-trust-grid article { background:#fffdf9; border:1px solid var(--ref-line); border-radius:12px; padding:22px; min-height:190px; box-shadow:0 6px 18px rgba(50,38,29,.04); }
.marketing-reference .ref-trust-grid article > span { display:inline-flex; width:34px; height:34px; align-items:center; justify-content:center; background:#fff1e8; color:var(--ref-rose-deep); border-radius:50%; font-size:10px; font-weight:800; margin-bottom:16px; }
.marketing-reference .ref-trust-grid h3 { font-family:var(--font-display); font-size:20px; line-height:1.1; margin-bottom:8px; }
.marketing-reference .ref-trust-grid p { color:var(--ref-muted); font-size:11px; line-height:1.6; }

/* Pricing */
.marketing-reference .ref-pricing { padding:52px 0; background:#fffdf9; }
.marketing-reference .ref-pricing-grid { grid-template-columns:repeat(2,minmax(0,1fr)); max-width:680px; margin:0 auto; gap:18px; }
.marketing-reference .ref-price-card { min-height:395px; background:#fff; border-color:#e5d9d0; padding:28px 26px 24px; border-radius:13px; }
.marketing-reference .ref-price-card.featured { border-color:var(--ref-rose); }
.marketing-reference .ref-badge { background:var(--ref-rose); color:white; }
.marketing-reference .ref-badge.best { background:#161412; }
.marketing-reference .ref-price-card .plan-price { font-size:52px; }
.marketing-reference .ref-price-card .plan-features { font-size:12px; margin:20px 0; }
.marketing-reference .ref-price-card .plan-btn-solid { background:#111; color:white; }
.marketing-reference .ref-price-card.featured .plan-btn-solid { background:var(--ref-rose); border-color:var(--ref-rose); }

/* FAQ */
.marketing-reference .ref-faq { padding:52px 0 42px; background:#faf6f1; border-top:1px solid var(--ref-line); }
.marketing-reference .ref-faq-grid { display:grid; grid-template-columns:1.45fr .55fr; gap:38px; align-items:end; }
.marketing-reference .ref-faq .mkt-faq-item { border-color:#ddd1c7; }
.marketing-reference .ref-faq .mkt-faq-q { font-size:13px; padding:15px 0; }
.marketing-reference .ref-faq .mkt-faq-a { font-size:12px; color:var(--ref-muted); padding:0 0 15px; }
.marketing-reference .ref-faq-visual { position:relative; height:320px; border-radius:14px; overflow:hidden; border:1px solid var(--ref-line); }
.marketing-reference .ref-faq-visual img { width:100%; height:100%; object-fit:cover; object-position:78% 72%; filter:saturate(.8) brightness(1.08); }
.marketing-reference .ref-faq-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(28,24,21,.55)); }
.marketing-reference .ref-faq-note { position:absolute; z-index:2; left:18px; bottom:18px; color:#fff; }
.marketing-reference .ref-faq-note strong { display:block; font-family:var(--font-display); font-size:20px; }
.marketing-reference .ref-faq-note span { font-size:10px; opacity:.9; }

/* Footer */
.marketing-reference .ref-footer { background:#fffdf9; border-top:1px solid var(--ref-line); padding:34px 0 0; }
.marketing-reference .ref-footer-grid { display:grid; grid-template-columns:1.7fr .8fr .8fr .8fr 1.5fr; gap:28px; align-items:start; }
.marketing-reference .ref-footer-brand .logo { color:var(--ref-ink); }
.marketing-reference .ref-footer-brand .logo span { color:var(--ref-rose); }
.marketing-reference .ref-footer-brand p,.marketing-reference .ref-footer-grid > div > p { color:var(--ref-muted); font-size:10px; line-height:1.6; max-width:240px; margin-top:8px; }
.marketing-reference .ref-footer-grid > div > strong { display:block; font-size:11px; margin-bottom:10px; }
.marketing-reference .ref-footer-grid > div > a:not(.logo):not(.btn-primary) { display:block; font-size:10px; color:#6a605a; margin:7px 0; }
.marketing-reference .ref-footer-cta { background:#faf1e9; border:1px solid #ead9cd; border-radius:10px; padding:16px; }
.marketing-reference .ref-footer-cta .btn-primary { display:inline-flex; margin-top:8px; background:#111; color:#fff; font-size:10px; padding:9px 13px; }
.marketing-reference .ref-footer-bottom { border-top:1px solid var(--ref-line); margin-top:28px; padding:14px 28px; text-align:right; max-width:1180px; margin-left:auto; margin-right:auto; color:#8a7f77; font-size:9px; }

@media (max-width: 980px) {
  .marketing-reference .ref-hero-inner { grid-template-columns:1fr; }
  .marketing-reference .ref-hero-copy { padding:55px 28px 35px; }
  .marketing-reference .ref-hero-media { min-height:420px; }
  .marketing-reference .ref-demo-board { grid-template-columns:1fr 1fr; }
  .marketing-reference .ref-demo-board > div { border-bottom:1px solid var(--ref-line); }
  .marketing-reference .ref-demo-output { border-right:1px solid var(--ref-line); }
  .marketing-reference .ref-benefit-grid,.marketing-reference .ref-trust-grid { grid-template-columns:repeat(2,1fr); }
  .marketing-reference .ref-footer-grid { grid-template-columns:repeat(2,1fr); }
  .marketing-reference .ref-footer-brand,.marketing-reference .ref-footer-cta { grid-column:span 2; }
}
@media (max-width: 720px) {
  .marketing-reference .ref-nav .mkt-nav-links { display:none; }
  .marketing-reference .ref-nav { padding:0 18px; }
  .marketing-reference .ref-hero-copy h1 { font-size:45px; }
  .marketing-reference .ref-hero-media { min-height:360px; }
  .marketing-reference .ref-hero-result { width:190px; right:4%; top:10%; }
  .marketing-reference .ref-demo-board { grid-template-columns:1fr; }
  .marketing-reference .ref-demo-board > div { border-right:0!important; }
  .marketing-reference .ref-demo-photo { min-height:280px; }
  .marketing-reference .ref-benefit-grid,.marketing-reference .ref-trust-grid,.marketing-reference .ref-pricing-grid { grid-template-columns:1fr; }
  .marketing-reference .ref-feature-item,.marketing-reference .ref-feature-review { grid-template-columns:1fr; }
  .marketing-reference .ref-feature-review .ref-feature-copy { order:2; }
  .marketing-reference .ref-feature-review .ref-feature-media { order:1; }
  .marketing-reference .ref-extra-tools { flex-direction:column; align-items:flex-start; }
  .marketing-reference .ref-faq-grid { grid-template-columns:1fr; }
  .marketing-reference .ref-faq-visual { height:220px; }
  .marketing-reference .ref-footer-grid { grid-template-columns:1fr 1fr; }
  .marketing-reference .ref-footer-brand,.marketing-reference .ref-footer-cta { grid-column:1 / -1; }
}
/* ============================================================
   BIZEASE MARKETING — VISUAL REFERENCE BUILD
   Scoped to body.marketing-reference only.
   ============================================================ */
.marketing-reference {
  --ref-bg:#fbf8f4;
  --ref-paper:#fffdfa;
  --ref-ink:#171717;
  --ref-muted:#6c6661;
  --ref-line:#e7ded6;
  --ref-soft:#f7eee7;
  --ref-accent:#bd6d48;
  --ref-accent-dark:#a45434;
  --ref-shadow:0 5px 18px rgba(48,38,31,.09);
  background:var(--ref-bg);
  color:var(--ref-ink);
  font-family:var(--font-body);
}
.marketing-reference * { box-sizing:border-box; }
.marketing-reference .ref-container { width:min(1180px, calc(100% - 52px)); margin:0 auto; }
.marketing-reference h1,.marketing-reference h2,.marketing-reference h3 { font-family:var(--font-display); color:var(--ref-ink); }
.marketing-reference .section-label { color:var(--ref-accent-dark); font-size:11px; line-height:1; font-weight:700; text-transform:uppercase; letter-spacing:.17em; }
.marketing-reference .btn-primary { background:#11161a; border:1px solid #11161a; color:#fff; border-radius:7px; font-weight:700; box-shadow:none; }
.marketing-reference .btn-primary:hover { transform:none; background:#22282c; }
.marketing-reference .btn-light-outline { display:inline-flex; justify-content:center; align-items:center; border:1px solid #cfc9c4; background:rgba(255,255,255,.92); color:#151515; border-radius:7px; padding:12px 22px; font-weight:700; text-decoration:none; }
.marketing-reference .btn-sm { padding:9px 14px; font-size:12px; }

/* Nav */
.marketing-reference .ref-nav { height:70px; max-width:1180px; margin:0 auto; padding:0 28px; border:0; background:rgba(255,253,250,.96); box-shadow:none; position:relative; z-index:10; }
.marketing-reference .ref-nav .logo { font-family:var(--font-display); font-size:25px; color:#181818; }
.marketing-reference .ref-nav .logo span { color:var(--ref-accent); }
.marketing-reference .ref-nav .mkt-nav-links { gap:34px; }
.marketing-reference .ref-nav .mkt-nav-link { font-size:12px; font-weight:600; color:#292724; }
.marketing-reference .ref-nav .mkt-nav-cta-group { gap:12px; }

/* Hero */
.marketing-reference .ref-hero { background:var(--ref-paper); border-top:1px solid #eee7e1; border-bottom:1px solid var(--ref-line); }
.marketing-reference .ref-hero-inner { max-width:1180px; min-height:545px; margin:0 auto; display:grid; grid-template-columns:36% 64%; overflow:hidden; }
.marketing-reference .ref-hero-copy { padding:62px 34px 48px 28px; display:flex; flex-direction:column; justify-content:center; background:linear-gradient(110deg,#fffdfa 0%,#fffaf5 88%,rgba(255,250,245,.35) 100%); position:relative; z-index:2; }
.marketing-reference .ref-hero-copy h1 { margin:18px 0 15px; font-size:53px; line-height:1.02; letter-spacing:-.035em; font-weight:600; }
.marketing-reference .ref-hero-copy > p:not(.ref-free-note) { max-width:365px; color:#4e4945; font-size:14px; line-height:1.65; }
.marketing-reference .ref-hero-actions { display:grid; grid-template-columns:1.05fr .8fr; gap:18px; max-width:320px; margin-top:28px; }
.marketing-reference .ref-hero-actions a { min-height:46px; }
.marketing-reference .ref-free-note { margin-top:17px; color:#77706b; font-size:11px; }
.marketing-reference .ref-free-note span { color:var(--ref-accent); margin-right:8px; }
.marketing-reference .ref-hero-media { position:relative; min-height:545px; overflow:hidden; }
.marketing-reference .ref-hero-media::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,250,245,.7) 0%,rgba(255,250,245,0) 17%); z-index:1; pointer-events:none; }
.marketing-reference .ref-hero-media > img { width:100%; height:100%; object-fit:cover; object-position:60% 50%; display:block; filter:brightness(1.11) saturate(.82) sepia(.05); transform:scale(1.035); }
.marketing-reference .ref-hero-result { position:absolute; z-index:3; right:8.5%; top:23%; width:205px; padding:17px 17px 15px; border-radius:14px; background:rgba(255,255,255,.96); border:1px solid #e8ded7; box-shadow:0 12px 32px rgba(32,25,21,.15); color:#25211e; }
.marketing-reference .ref-result-title { display:flex; align-items:center; gap:8px; font-size:11px; font-weight:800; padding-bottom:11px; border-bottom:1px solid #efe8e2; }
.marketing-reference .ref-instagram-icon { color:var(--ref-accent); font-size:19px; }
.marketing-reference .ref-result-status { display:block; margin:13px 0 6px; font-weight:800; font-size:11px; }
.marketing-reference .ref-hero-result p { font-size:11px; line-height:1.55; margin:0 0 10px; }
.marketing-reference .ref-hashtags { display:block; color:#77706b; font-size:9px; margin-bottom:14px; }
.marketing-reference .ref-copy-button { display:inline-flex; align-items:center; justify-content:center; background:#11161a; color:#fff; border-radius:6px; padding:9px 13px; font-size:10px; font-weight:800; }

/* Shared section headings */
.marketing-reference .ref-heading { text-align:center; margin:0 auto 30px; }
.marketing-reference .ref-heading h2 { margin:0 0 8px; font-size:34px; line-height:1.08; letter-spacing:-.025em; font-weight:600; }
.marketing-reference .ref-heading p { margin:0 auto; max-width:600px; color:var(--ref-muted); font-size:12px; line-height:1.55; }
.marketing-reference .ref-heading.compact { margin-bottom:26px; }

/* Demo */
.marketing-reference .ref-demo { padding:46px 0 12px; background:#fffdfb; }
.marketing-reference .ref-demo-tabs { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin:0 0 24px; }
.marketing-reference .ref-demo-tabs .mkt-demo-tab { min-height:48px; border:1px solid #e3dbd5; border-radius:8px; background:#fff; color:#25211e; font-size:10px; font-weight:700; padding:7px 10px; display:flex; justify-content:center; align-items:center; gap:8px; white-space:nowrap; box-shadow:0 1px 5px rgba(40,30,20,.03); }
.marketing-reference .ref-demo-tabs .mkt-demo-tab.active { border-color:var(--ref-accent); background:#fffaf6; color:#251f1a; }
.marketing-reference .ref-demo-tabs .mkt-demo-tab .mkt-demo-tab-icon { width:25px; height:25px; display:flex; align-items:center; justify-content:center; border-radius:7px; background:#f6eee8; color:#7b6f68; }
.marketing-reference .ref-demo-tabs .mkt-demo-tab.active .mkt-demo-tab-icon { background:var(--ref-accent); color:#fff; }
.marketing-reference .ref-demo-tabs svg { width:14px; height:14px; }
.marketing-reference .ref-demo-board { display:grid; grid-template-columns:1.05fr .92fr .95fr .84fr; min-height:300px; border:1px solid #e5ddd6; border-radius:13px; overflow:hidden; background:#fff; box-shadow:var(--ref-shadow); transition:opacity .16s ease; }
.marketing-reference .ref-demo-board > div { min-width:0; }
.marketing-reference .ref-demo-input { padding:25px 24px 22px; border-right:1px solid #eee6e0; }
.marketing-reference .ref-demo-eyebrow { font-size:12px; font-weight:800; margin-bottom:15px; }
.marketing-reference .ref-demo-stage-meta { display:none; }
.marketing-reference .mkt-demo-stage-desc { margin:0 0 12px; color:#504944; font-size:10px; line-height:1.45; min-height:28px; }
.marketing-reference .ref-form-label { font-size:10px; font-weight:700; margin-bottom:8px; }
.marketing-reference .ref-input-box { border:1px solid #e2d8d1; background:#fbf8f5; border-radius:7px; padding:12px; font-size:10px; line-height:1.45; min-height:67px; }
.marketing-reference .ref-demo-tone { display:block; margin-top:14px; font-size:10px; font-weight:700; }
.marketing-reference .ref-demo-tone select { display:block; width:100%; margin-top:7px; border:1px solid #ded5cf; background:#fff; border-radius:6px; padding:8px 10px; font:inherit; color:#403a36; }
.marketing-reference .ref-demo-magic { display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:22px; border-right:1px solid #eee6e0; background:linear-gradient(180deg,#fffdfa,#fbf5ef); }
.marketing-reference .ref-demo-magic strong { font-family:var(--font-display); font-size:16px; }
.marketing-reference .ref-sparkles { margin:20px 0 14px; color:var(--ref-accent); font-size:35px; line-height:1; text-shadow:-11px 8px 0 #d99675, 9px -8px 0 #c87d5b; }
.marketing-reference .ref-demo-magic p { max-width:145px; color:#5f5752; font-size:10px; line-height:1.55; }
.marketing-reference .ref-demo-output { padding:25px 22px; border-right:1px solid #eee6e0; background:#fff; }
.marketing-reference .ref-output-box { background:#faf8f6; border:1px solid #e7dfd9; border-radius:7px; min-height:135px; padding:13px; font-size:10px; line-height:1.6; margin-bottom:14px; white-space:pre-line; }
.marketing-reference .ref-demo-photo { position:relative; overflow:hidden; min-height:300px; }
.marketing-reference .ref-demo-photo > img { width:100%; height:100%; object-fit:cover; object-position:54% center; filter:brightness(1.1) saturate(.8); }
.marketing-reference .ref-phone { position:absolute; width:87px; height:165px; right:16px; top:55px; border:5px solid #111; border-radius:18px; background:#fff; padding:20px 8px 8px; box-shadow:0 10px 20px rgba(0,0,0,.2); transform:rotate(-7deg); color:#191715; }
.marketing-reference .ref-phone-notch { position:absolute; width:31px; height:5px; border-radius:8px; background:#111; top:5px; left:50%; transform:translateX(-50%); }
.marketing-reference .ref-phone-kicker { display:block; color:var(--ref-accent); font-size:5px; text-transform:uppercase; font-weight:800; letter-spacing:.08em; }
.marketing-reference .ref-phone strong { display:block; font-family:var(--font-display); font-size:10px; margin:9px 0; }
.marketing-reference .ref-phone p { font-size:6px; line-height:1.45; color:#5f5954; }
.marketing-reference .ref-demo-assurance { width:min(560px,90%); margin:12px auto 0; padding:9px 16px; text-align:center; border:1px solid #eadfd6; background:#fbf4ed; color:#6e645d; border-radius:8px; font-size:9px; }
.marketing-reference .ref-demo-assurance span { color:var(--ref-accent); }

/* Benefits */
.marketing-reference .ref-benefits { padding:44px 0 50px; background:#fbf8f4; }
.marketing-reference .ref-benefit-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.marketing-reference .ref-benefit-grid article { text-align:center; padding:6px 12px; }
.marketing-reference .ref-icon-circle { width:55px; height:55px; margin:0 auto 16px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:#f9eee6; color:var(--ref-accent); }
.marketing-reference .ref-icon-circle svg { width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.marketing-reference .ref-benefit-grid h3 { font-family:var(--font-body); font-size:11px; font-weight:800; margin:0 0 8px; }
.marketing-reference .ref-benefit-grid p { max-width:200px; margin:0 auto; color:#665f5a; font-size:10px; line-height:1.55; }

/* Features */
.marketing-reference .ref-features { padding:48px 0 54px; background:#fffdfa; }
.marketing-reference .ref-feature-stack { width:min(860px,100%); margin:0 auto; display:flex; flex-direction:column; gap:10px; }
.marketing-reference .ref-feature-row { display:grid; grid-template-columns:1.05fr .95fr; min-height:154px; border-radius:12px; overflow:hidden; background:#fff; border:1px solid #e8dfd8; box-shadow:0 3px 10px rgba(35,26,20,.035); }
.marketing-reference .ref-feature-media { min-height:154px; position:relative; overflow:hidden; background:#efe3d9; }
.marketing-reference .ref-feature-media > img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.86) brightness(1.07); }
.marketing-reference .row-a .ref-feature-media > img { object-position:center 43%; }
.marketing-reference .row-c .ref-feature-media > img { object-position:center 47%; }
.marketing-reference .ref-feature-copy { padding:26px 28px; display:flex; gap:16px; align-items:center; }
.marketing-reference .ref-tool-icon { flex:0 0 auto; width:34px; height:34px; display:flex; align-items:center; justify-content:center; background:#eed0bf; color:var(--ref-accent-dark); border-radius:9px; box-shadow:0 5px 12px rgba(155,83,48,.12); }
.marketing-reference .ref-feature-copy h3 { font-family:var(--font-body); font-size:15px; font-weight:800; margin:0 0 8px; }
.marketing-reference .ref-feature-copy p { color:#5e5752; font-size:10px; line-height:1.55; margin:0 0 11px; max-width:260px; }
.marketing-reference .ref-feature-copy a { color:var(--ref-accent); font-size:10px; font-weight:800; }
.marketing-reference .ref-phone-card,.marketing-reference .ref-offer-card { position:absolute; right:16px; top:16px; width:135px; padding:11px; background:rgba(255,255,255,.94); border:1px solid #e8dcd3; border-radius:9px; box-shadow:0 7px 18px rgba(28,22,18,.13); }
.marketing-reference .ref-phone-card span,.marketing-reference .ref-offer-card span { display:block; color:var(--ref-accent-dark); text-transform:uppercase; font-size:6px; font-weight:800; letter-spacing:.08em; }
.marketing-reference .ref-phone-card strong,.marketing-reference .ref-offer-card strong { display:block; font-family:var(--font-display); font-size:12px; margin:5px 0; }
.marketing-reference .ref-phone-card p,.marketing-reference .ref-offer-card p { margin:0; font-size:7px; line-height:1.4; color:#5f5752; }
.marketing-reference .ref-offer-card { background:rgba(31,28,26,.92); border-color:#4b403a; color:#fff; left:16px; right:auto; top:auto; bottom:16px; }
.marketing-reference .ref-offer-card strong { color:#fff; }
.marketing-reference .ref-offer-card p { color:#ddd4ce; }
.marketing-reference .ref-feature-ui-media { display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#e8d7c7 0%,#f8eee6 55%,#dfc4b2 100%); padding:18px 25px; }
.marketing-reference .ref-laptop-ui { width:100%; background:#fdfcfb; border:6px solid #25211f; border-bottom-width:11px; border-radius:9px 9px 5px 5px; padding:10px; box-shadow:0 13px 22px rgba(38,29,23,.18); }
.marketing-reference .ref-laptop-topbar { display:flex; justify-content:space-between; align-items:center; padding:0 2px 7px; border-bottom:1px solid #eee3dc; font-size:6px; color:#70665f; }
.marketing-reference .ref-laptop-topbar b { color:var(--ref-accent); }
.marketing-reference .ref-rating-row { display:flex; justify-content:space-between; align-items:center; margin-top:6px; background:#fbf7f3; border-radius:4px; padding:6px 7px; font-size:6px; color:#c98733; }
.marketing-reference .ref-rating-row b { color:#544c47; font-size:6px; }
.marketing-reference .ref-extra-tools { width:min(860px,100%); margin:10px auto 0; display:flex; justify-content:flex-end; align-items:center; gap:24px; color:#5d5651; font-size:9px; }
.marketing-reference .ref-extra-tools a { background:#11161a; color:#fff; border-radius:6px; padding:8px 13px; font-weight:800; }

/* Owner examples — testimonial visual structure, factual content only */
.marketing-reference .ref-owner-examples { padding:47px 0 38px; background:#fbf7f2; border-top:1px solid var(--ref-line); border-bottom:1px solid var(--ref-line); }
.marketing-reference .ref-trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.marketing-reference .ref-owner-card { min-height:212px; background:#fff; border:1px solid #e8dfd8; border-radius:12px; padding:20px; box-shadow:0 3px 11px rgba(40,31,25,.045); }
.marketing-reference .ref-owner-head { display:flex; align-items:center; gap:11px; margin-bottom:18px; }
.marketing-reference .ref-owner-avatar { width:43px; height:43px; border-radius:50%; background-size:cover; background-position:center; border:2px solid #f3e8df; flex:0 0 auto; }
.marketing-reference .avatar-one { background-image:url('/images/hero-photo.webp'); background-position:63% 25%; }
.marketing-reference .avatar-two { background-image:url('/images/feature-laptop-detail.jpg'); background-position:52% 22%; }
.marketing-reference .avatar-three { background-image:url('/images/feature-workspace.webp'); background-position:62% 25%; }
.marketing-reference .ref-owner-head strong { display:block; font-size:11px; }
.marketing-reference .ref-owner-head small { display:block; margin-top:2px; color:#81776f; font-size:8px; }
.marketing-reference .ref-owner-card > p { color:#514b47; font-size:10px; line-height:1.65; min-height:83px; }
.marketing-reference .ref-owner-tag { color:var(--ref-accent-dark); font-size:8px; font-weight:800; letter-spacing:.03em; }
.marketing-reference .ref-owner-dots { display:flex; justify-content:center; gap:6px; margin-top:18px; }
.marketing-reference .ref-owner-dots span { width:7px; height:7px; border-radius:50%; background:#ccc5c0; }
.marketing-reference .ref-owner-dots span.active { background:#171717; }

/* Pricing */
.marketing-reference .ref-pricing { padding:48px 0 52px; background:#fffdfa; }
.marketing-reference .ref-pricing-grid { grid-template-columns:repeat(2,1fr); gap:18px; max-width:650px; margin:0 auto; }
.marketing-reference .ref-price-card { min-height:330px; border:1px solid #e4dad3; border-radius:13px; background:#fff; padding:27px 25px 22px; box-shadow:0 4px 15px rgba(39,29,23,.055); }
.marketing-reference .ref-price-card.featured { border-color:#c77b59; }
.marketing-reference .ref-price-card .plan-name { font-size:12px; color:#5c554f; }
.marketing-reference .ref-price-card .plan-price { margin-top:9px; font-family:var(--font-display); font-size:39px; line-height:1; }
.marketing-reference .ref-price-card .plan-price span { font-family:var(--font-body); font-size:10px; }
.marketing-reference .ref-badge { top:-9px; left:18px; right:auto; transform:none; background:#d09a7e; color:#fff; font-size:8px; border-radius:10px; padding:4px 11px; }
.marketing-reference .ref-badge.best { left:auto; right:14px; background:var(--ref-accent-dark); }
.marketing-reference .ref-price-card .plan-features { margin:22px 0 20px; font-size:10px; line-height:1.55; }
.marketing-reference .ref-price-card .plan-features li { margin:11px 0; }
.marketing-reference .ref-price-card .plan-btn-solid { display:flex; justify-content:center; align-items:center; min-height:39px; border-radius:6px; background:#11161a; color:#fff; font-size:10px; }
.marketing-reference .mkt-plan-saving { color:var(--ref-accent-dark); font-size:8px; line-height:1.35; margin-top:10px; }

/* FAQ */
.marketing-reference .ref-faq { padding:45px 0 12px; background:#fbf8f4; }
.marketing-reference .ref-faq-shell { display:grid; grid-template-columns:1fr 160px; gap:25px; width:min(800px,100%); margin:0 auto; align-items:end; }
.marketing-reference .ref-faq .mkt-faq { border:1px solid #e8dfd8; border-radius:10px; background:#fff; overflow:hidden; }
.marketing-reference .ref-faq .mkt-faq-item { border:0; border-bottom:1px solid #eee6e0; border-radius:0; margin:0; padding:0 18px; background:#fff; }
.marketing-reference .ref-faq .mkt-faq-item:last-child { border-bottom:0; }
.marketing-reference .ref-faq .mkt-faq-q { padding:12px 0; font-size:10px; font-weight:800; }
.marketing-reference .ref-faq .mkt-faq-q::after { color:#6f665f; }
.marketing-reference .ref-faq .mkt-faq-a { padding:0 0 12px; color:#655d58; font-size:9px; line-height:1.55; }
.marketing-reference .ref-faq-decor { height:175px; position:relative; overflow:hidden; }
.marketing-reference .ref-plant-pot { position:absolute; left:50%; bottom:0; width:82px; height:54px; transform:translateX(-50%); background:linear-gradient(90deg,#b99072,#e1c5a9,#a97c5d); border-radius:8px 8px 19px 19px; box-shadow:0 8px 15px rgba(40,30,20,.12); }
.marketing-reference .ref-plant { position:absolute; left:50%; bottom:38px; width:120px; height:130px; transform:translateX(-50%); }
.marketing-reference .ref-plant::before { content:""; position:absolute; left:59px; bottom:0; width:3px; height:118px; background:#6f7851; transform:rotate(-6deg); }
.marketing-reference .ref-plant i { position:absolute; width:45px; height:20px; border-radius:100% 0 100% 0; background:#7f895d; transform-origin:100% 50%; }
.marketing-reference .ref-plant i:nth-child(1){left:17px;top:30px;transform:rotate(25deg)}
.marketing-reference .ref-plant i:nth-child(2){left:57px;top:46px;transform:scaleX(-1) rotate(18deg)}
.marketing-reference .ref-plant i:nth-child(3){left:8px;top:72px;transform:rotate(15deg)}
.marketing-reference .ref-plant i:nth-child(4){left:60px;top:86px;transform:scaleX(-1) rotate(15deg)}
.marketing-reference .ref-plant i:nth-child(5){left:30px;top:3px;transform:rotate(46deg)}

/* Footer */
.marketing-reference .ref-footer { padding:36px 0 0; background:#fffdfa; border-top:1px solid var(--ref-line); }
.marketing-reference .ref-footer-grid { display:grid; grid-template-columns:1.6fr .72fr .72fr .72fr .72fr 1.75fr; gap:24px; align-items:start; }
.marketing-reference .ref-footer-brand .logo { font-family:var(--font-display); font-size:22px; color:#171717; }
.marketing-reference .ref-footer-brand .logo span { color:var(--ref-accent); }
.marketing-reference .ref-footer-brand p,.marketing-reference .ref-footer-grid > div > p { max-width:225px; margin:8px 0 0; color:#665e59; font-size:9px; line-height:1.55; }
.marketing-reference .ref-footer-grid > div > strong { display:block; font-size:9px; margin-bottom:10px; }
.marketing-reference .ref-footer-grid > div > a,.marketing-reference .ref-muted-link { display:block; margin:7px 0; color:#5f5853; font-size:8px; text-decoration:none; }
.marketing-reference .ref-muted-link { opacity:.8; }
.marketing-reference .ref-social-icons { display:flex; gap:8px; margin-top:13px; }
.marketing-reference .ref-social-icons span { width:19px; height:19px; display:flex; align-items:center; justify-content:center; border:1px solid #d9d0c9; border-radius:50%; font-size:7px; font-weight:800; }
.marketing-reference .ref-footer-cta { border:1px solid #eadbd0; border-radius:9px; background:#faf0e7; padding:16px; }
.marketing-reference .ref-subscribe { display:grid; grid-template-columns:1fr 82px; gap:8px; margin-top:13px; }
.marketing-reference .ref-subscribe input { width:100%; min-width:0; border:1px solid #eee1d8; border-radius:5px; background:#fff; padding:9px; font-size:8px; }
.marketing-reference .ref-subscribe button { border:0; border-radius:5px; background:#11161a; color:#fff; font-size:8px; font-weight:800; }
.marketing-reference .ref-subscribe :disabled { opacity:1; cursor:not-allowed; }
.marketing-reference .ref-footer-bottom { max-width:1180px; margin:26px auto 0; border-top:1px solid #ece3dc; padding:12px 0; text-align:right; color:#827871; font-size:7px; }

@media (max-width: 980px) {
  .marketing-reference .ref-nav .mkt-nav-links { gap:16px; }
  .marketing-reference .ref-hero-inner { grid-template-columns:43% 57%; }
  .marketing-reference .ref-hero-copy h1 { font-size:44px; }
  .marketing-reference .ref-demo-board { grid-template-columns:1fr 1fr; }
  .marketing-reference .ref-demo-board > div { border-bottom:1px solid #eee6e0; }
  .marketing-reference .ref-demo-output { border-right:0; }
  .marketing-reference .ref-benefit-grid { grid-template-columns:repeat(2,1fr); }
  .marketing-reference .ref-footer-grid { grid-template-columns:1.3fr repeat(3,.7fr); }
  .marketing-reference .ref-footer-cta { grid-column:span 2; }
}
@media (max-width: 720px) {
  .marketing-reference .ref-container { width:min(100% - 32px,1180px); }
  .marketing-reference .ref-nav { height:62px; padding:0 16px; }
  .marketing-reference .ref-nav .mkt-nav-links { display:none; }
  .marketing-reference .ref-hero-inner { grid-template-columns:1fr; min-height:0; }
  .marketing-reference .ref-hero-copy { padding:48px 22px 34px; }
  .marketing-reference .ref-hero-copy h1 { font-size:44px; }
  .marketing-reference .ref-hero-media { min-height:370px; }
  .marketing-reference .ref-hero-result { width:190px; right:5%; top:12%; }
  .marketing-reference .ref-demo-tabs { display:flex; overflow-x:auto; padding-bottom:4px; }
  .marketing-reference .ref-demo-tabs .mkt-demo-tab { min-width:150px; }
  .marketing-reference .ref-demo-board { grid-template-columns:1fr; }
  .marketing-reference .ref-demo-board > div { border-right:0; }
  .marketing-reference .ref-demo-photo { min-height:260px; }
  .marketing-reference .ref-benefit-grid,.marketing-reference .ref-trust-grid,.marketing-reference .ref-pricing-grid { grid-template-columns:1fr; }
  .marketing-reference .ref-feature-row { grid-template-columns:1fr; }
  .marketing-reference .row-b .ref-feature-copy { order:2; }
  .marketing-reference .row-b .ref-feature-media { order:1; }
  .marketing-reference .ref-faq-shell { grid-template-columns:1fr; }
  .marketing-reference .ref-faq-decor { display:none; }
  .marketing-reference .ref-footer-grid { grid-template-columns:1fr 1fr; }
  .marketing-reference .ref-footer-brand,.marketing-reference .ref-footer-cta { grid-column:1 / -1; }
  .marketing-reference .ref-footer-bottom { padding-right:16px; }
}

.marketing-reference .ref-footer-start { display:inline-block !important; margin-top:10px !important; color:var(--ref-accent-dark) !important; font-weight:800 !important; font-size:8px !important; }

/* ============================================================
   APPROVED MARKETING DESIGN — Aug 31 2026
   Scoped to .approved-site and approved standalone pages.
   ============================================================ */
:root{
  --approved-ink:#171717;
  --approved-dark:#181818;
  --approved-dark-2:#222;
  --approved-cream:#fbf7f1;
  --approved-cream-2:#f7efe7;
  --approved-card:#fffdf9;
  --approved-peach:#d49a7b;
  --approved-peach-deep:#c76f4d;
  --approved-orange:#e34a14;
  --approved-muted:#66615d;
  --approved-line:#eaded4;
  --approved-green:#2f914d;
}
body.approved-site{margin:0;background:var(--approved-cream);color:var(--approved-ink);font-family:Manrope,system-ui,sans-serif;}
.approved-site h1,.approved-site h2,.approved-site h3,.approved-page h1,.approved-page h2,.approved-page h3{font-family:Fraunces,Georgia,serif;letter-spacing:-.035em;}
.approved-site .logo,.approved-page .logo{font-family:Fraunces,Georgia,serif;font-size:28px;font-weight:600;color:inherit;text-decoration:none}.approved-site .logo span,.approved-page .logo span{color:var(--approved-peach)}
.approved-nav{height:92px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:32px;padding:0 max(32px,calc((100vw - 1180px)/2));background:var(--approved-dark-2);border-bottom:1px solid #34302d;color:#f7f2ed;position:relative;z-index:10}
.approved-nav-links{display:flex;justify-content:flex-end;gap:34px}.approved-nav a{color:inherit;text-decoration:none;font-size:14px}.approved-nav-links a,.approved-nav-actions>a:first-child{opacity:.78}.approved-nav-links a:hover,.approved-nav-actions>a:first-child:hover{opacity:1}.approved-nav-actions{display:flex;align-items:center;gap:22px}
.approved-btn{display:inline-flex;align-items:center;justify-content:center;min-height:50px;padding:0 26px;border-radius:9px;text-decoration:none;font-weight:700;border:1px solid transparent;transition:.15s ease}.approved-btn-peach{background:var(--approved-peach);color:white!important}.approved-btn-orange{background:var(--approved-orange);color:white!important}.approved-btn-outline-dark{color:#f7f2ed!important;border-color:#79695f;background:transparent}.approved-btn-outline-orange{color:var(--approved-orange)!important;border-color:var(--approved-orange);background:#fff}.approved-actions{display:flex;gap:14px;flex-wrap:wrap}.approved-kicker{font-size:13px;letter-spacing:.18em;font-weight:800;color:var(--approved-peach-deep);margin-bottom:20px}
.approved-hero{background:radial-gradient(circle at 74% 25%,#2b2522 0,#1b1b1b 28%,#151515 70%);color:#f8f4ef;display:grid;grid-template-columns:minmax(420px,.85fr) minmax(520px,1.15fr);gap:54px;padding:90px max(32px,calc((100vw - 1180px)/2)) 78px;align-items:center}.approved-hero-copy h1{font-size:clamp(58px,6vw,86px);line-height:.98;margin:0 0 30px;color:#f8f4ef}.approved-hero-copy h1 span{color:#efc2a8}.approved-hero-copy>p:not(.approved-note){font-size:18px;line-height:1.8;color:#c5bfba;max-width:650px;margin:0 0 32px}.approved-note{font-size:14px;color:#a9a39e;margin-top:20px}.approved-hero-photo{position:relative;min-height:590px;border-radius:26px;overflow:hidden;box-shadow:0 28px 60px rgba(0,0,0,.25)}.approved-hero-photo>img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;object-position:center 46%;filter:brightness(.72) saturate(.85)}.approved-floating-card{position:absolute;right:24px;bottom:26px;width:min(300px,42%);background:#fffaf4;color:#29231f;border-radius:18px;padding:22px;box-shadow:0 18px 40px rgba(0,0,0,.24)}.approved-floating-card strong{font-size:12px;letter-spacing:.06em}.approved-floating-card p{font-size:13px;line-height:1.6}.approved-floating-card button{background:#171717;color:#fff;border:0;border-radius:7px;padding:10px 14px;font-weight:700}.approved-floating-card small{display:block;color:var(--approved-green);font-weight:800;margin-top:10px}.approved-ready{display:table;margin:16px 0 8px;background:#e9f4e9;color:var(--approved-green);font-size:11px;font-weight:800;padding:6px 9px;border-radius:999px}
.approved-shell{max-width:1180px;margin:0 auto;padding:0 28px}.approved-demo{background:#151515;color:#f5f0eb;padding:72px 0}.approved-demo-intro{max-width:650px;margin-bottom:28px}.approved-demo-intro h2{font-size:58px;line-height:1;margin:0 0 18px}.approved-demo-intro h2 span{color:#efc2a8}.approved-demo-intro p{font-size:17px;color:#e2dbd5;line-height:1.7}.approved-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 24px}.approved-tabs .mkt-demo-tab{background:#1d1d1d!important;color:#eee!important;border:1px solid #65554b!important;border-radius:10px!important;padding:12px 15px!important}.approved-tabs .mkt-demo-tab.active{background:var(--approved-peach)!important;color:#fff!important;border-color:var(--approved-peach)!important}.approved-demo-grid{display:grid;grid-template-columns:1.2fr 1fr 1.15fr 1.4fr;border:1px solid #3a3430;border-radius:20px;overflow:hidden;background:#1b1b1b;transition:opacity .12s}.approved-demo-grid>div{padding:24px;border-right:1px solid #37312d}.approved-demo-grid>div:last-child{border-right:0}.approved-demo-name-row{display:flex;gap:12px;align-items:center}.approved-demo-name-row h3{font-family:Manrope,sans-serif;font-size:20px;margin:0;color:#f7f2ed}.approved-demo-name-row small{color:#d5cbc4}.approved-demo-info>p{color:#c4bcb6;line-height:1.65}.approved-demo-info ul{padding-left:20px;color:#e0d9d3;line-height:1.9}.approved-demo-input span,.approved-demo-output span{display:block;color:#efc2a8;font-size:12px;font-weight:800;margin-bottom:11px}.approved-demo-input div,.approved-demo-output div{background:#242424;border:1px solid #403933;border-radius:10px;padding:14px;min-height:112px;color:#eee;line-height:1.6;font-size:13px}.approved-demo-output button{margin-top:12px;background:#efc2a8;color:#191919;border:0;border-radius:8px;padding:10px 14px;font-weight:800}.approved-device-visual{position:relative;min-height:330px;background:radial-gradient(circle at 80% 20%,#503726 0,#211b18 45%,#171717 100%)}.approved-laptop{position:absolute;left:6%;right:19%;top:18%;bottom:8%;border:10px solid #090909;border-bottom-width:22px;border-radius:12px;background:#faf6f1;box-shadow:0 12px 30px #0008}.approved-screen{color:#222;padding:16px;font-size:11px}.approved-screen b{font-family:Fraunces,serif;color:#b3694c}.approved-mini-line{height:45px;background:#f2ece6;border-radius:6px;margin:8px 0}.approved-mini-card{background:#f5dfd1;border-radius:6px;padding:10px;margin-top:8px}.approved-phone{position:absolute;width:132px;height:252px;right:2.5%;bottom:3%;padding:3px;background:linear-gradient(145deg,#444,#0a0a0a 26%,#1f1f1f 70%,#656565);border:1px solid #7e7e7e;border-radius:28px;box-shadow:0 14px 34px #000b,0 0 0 1px #000;color:#222;font-size:8px;z-index:3}.approved-phone-screen{position:relative;height:100%;overflow:hidden;background:#fffaf6;border:2px solid #050505;border-radius:24px}.approved-phone-island{position:absolute;left:50%;top:7px;transform:translateX(-50%);width:44px;height:12px;border-radius:999px;background:#050505;z-index:3}.approved-phone-status{height:25px;padding:7px 8px 0;display:flex;justify-content:space-between;align-items:flex-start;font-size:6.7px;font-weight:800;color:#171717}.approved-phone-status-icons{letter-spacing:.2px;font-size:6px}.approved-phone-app{padding:10px 8px 8px;display:flex;flex-direction:column;gap:6px}.approved-phone-brand{font-family:Fraunces,serif;font-size:11px;color:#1c1c1c}.approved-phone-brand span{color:var(--approved-peach-deep)}.approved-phone-app small{font-size:6.8px;font-weight:700;color:#504b47}.approved-phone-input,.approved-phone-output{border-radius:7px;padding:7px;background:#f1ece7;line-height:1.35;color:#2f2c2a}.approved-phone-output{background:#f6dfd0}.approved-phone-app button{border:0;border-radius:7px;padding:7px 4px;background:var(--approved-peach-deep);color:#fff;font-size:7px;font-weight:800}.approved-phone-app em{font-style:normal;color:var(--approved-green);font-size:7px;font-weight:800}.approved-phone-side{position:absolute;background:#777;border-radius:3px;z-index:-1}.approved-phone-side-left{left:-3px;top:53px;width:3px;height:41px}.approved-phone-side-right{right:-3px;top:69px;width:3px;height:55px}.approved-benefit-strip{display:grid;grid-template-columns:repeat(4,1fr);background:#fffaf5;border:1px solid var(--approved-line);border-radius:18px;margin-top:28px}.approved-benefit-strip>div{display:flex;gap:14px;padding:22px;border-right:1px solid var(--approved-line)}.approved-benefit-strip>div:last-child{border-right:0}.approved-benefit-strip b{font-size:28px;color:var(--approved-peach-deep);font-family:Fraunces,serif}.approved-benefit-strip span{display:flex;flex-direction:column;gap:4px}.approved-benefit-strip strong{font-size:13px}.approved-benefit-strip small{color:#766d67;line-height:1.45}.approved-benefit-strip-dark{background:#f9f1e8;color:#222}.approved-benefit-strip-dark small{color:#655c56}
.approved-features,.approved-business-types{padding:86px 0;background:var(--approved-cream)}.approved-section-head{text-align:center;max-width:830px;margin:0 auto 36px}.approved-section-head h2{font-size:52px;line-height:1.02;margin:0 0 13px}.approved-section-head h2 span{color:var(--approved-peach-deep)}.approved-section-head p{font-size:16px;color:#68615d;line-height:1.6}.approved-feature-stack{display:grid;gap:10px;max-width:1060px;margin:0 auto}.approved-feature-stack article{display:grid;grid-template-columns:1fr 1fr;align-items:stretch;border:1px solid var(--approved-line);border-radius:17px;overflow:hidden;background:#fffaf5;min-height:220px}.approved-feature-stack article img{width:100%;height:100%;min-height:220px;object-fit:cover;object-position:center center;display:block}.approved-feature-stack article:nth-child(3){grid-template-columns:.92fr 1.08fr}.approved-feature-stack article:nth-child(3) img{object-position:44% center}.approved-feature-stack article>div{padding:34px 38px;display:flex;flex-wrap:wrap;align-content:center;column-gap:15px}.approved-feature-stack i{font-style:normal;width:48px;height:48px;border:1px solid #e1a68c;border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--approved-peach-deep);font-size:24px}.approved-feature-stack h3{font-size:29px;margin:3px 0 12px}.approved-feature-stack p{width:100%;padding-left:63px;color:#5d5651;line-height:1.55;margin:0 0 10px}.approved-feature-stack a{margin-left:63px;color:var(--approved-peach-deep);text-decoration:none;font-weight:700;font-size:13px}.approved-extra{text-align:center;margin-top:20px;color:#615a55}.approved-extra a{display:table;margin:14px auto 0;border:1px solid var(--approved-peach);border-radius:8px;padding:10px 18px;color:var(--approved-peach-deep);text-decoration:none;font-weight:700}
.approved-business-types{background:#fcf8f3}.approved-business-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.approved-business-grid article{background:#fffaf5;border:1px solid var(--approved-line);border-radius:17px;overflow:hidden}.approved-business-grid img{width:100%;height:255px;object-fit:cover;display:block}.approved-business-grid article>div{padding:22px 24px 26px}.approved-business-grid h3{font-size:27px;margin:0 0 10px}.approved-business-grid p{font-size:14px;line-height:1.55;color:#5e5752}.approved-business-grid ul{list-style:none;padding:0;margin:18px 0 0}.approved-business-grid li{margin:9px 0;font-size:13px}.approved-business-grid li:before{content:'✓';display:inline-flex;width:16px;height:16px;align-items:center;justify-content:center;border-radius:50%;background:var(--approved-peach);color:#fff;margin-right:9px;font-size:10px}
.approved-content-action{display:grid;grid-template-columns:1fr 1fr;background:#fffdf9}.approved-content-copy{padding:80px 5vw 54px max(32px,calc((100vw - 1180px)/2));display:flex;flex-direction:column;justify-content:center}.approved-content-copy h2{font-size:clamp(48px,5vw,72px);line-height:.98;margin:0 0 22px}.approved-content-copy h2 span{color:var(--approved-orange)}.approved-content-copy>p{font-size:17px;line-height:1.7;max-width:570px}.approved-proof{display:flex;gap:28px;flex-wrap:wrap;margin-top:25px;font-size:13px}.approved-content-photo{position:relative;min-height:620px;overflow:hidden}.approved-content-photo>img{width:100%;height:100%;object-fit:cover;object-position:center center;position:absolute;inset:0;transform:scale(1.03)}.approved-content-cards{position:absolute;right:6%;bottom:11%;top:auto;width:270px;display:grid;gap:10px}.approved-content-cards>div{background:#fff;border-radius:12px;padding:14px 16px;box-shadow:0 8px 26px #58402a28;font-size:12px}.approved-content-cards>div:first-child{padding:18px}.approved-content-cards p{line-height:1.5}.approved-trust-row{grid-column:1/-1;background:#f6f3fa;display:grid;grid-template-columns:1.5fr repeat(6,1fr);gap:18px;align-items:center;padding:22px max(32px,calc((100vw - 1180px)/2));font-size:12px;text-align:center}.approved-trust-row strong{font-family:Fraunces,serif;font-size:18px}.approved-more-time{grid-column:1/-1;padding:36px max(32px,calc((100vw - 1180px)/2))}.approved-more-time h3{text-align:center;font-size:36px;margin:0 0 20px}.approved-start-banner{grid-column:1/-1;margin:0 max(32px,calc((100vw - 1180px)/2)) 55px;background:#fae9df;border-radius:18px;padding:22px 30px;display:flex;align-items:center;justify-content:space-between}.approved-start-banner>div{display:flex;gap:16px;align-items:center}.approved-start-banner b{font-size:30px}.approved-start-banner span{display:flex;flex-direction:column}.approved-start-banner strong{font-family:Fraunces,serif;font-size:22px}.approved-start-banner small{margin-top:4px}
.approved-footer{background:#171717;color:#eee;padding:34px max(32px,calc((100vw - 1180px)/2));display:grid;grid-template-columns:auto 1fr auto;gap:30px;align-items:center}.approved-footer>div{display:flex;gap:22px;justify-content:center}.approved-footer a{color:#ddd;text-decoration:none;font-size:13px}.approved-footer small{grid-column:1/-1;text-align:center;color:#888;border-top:1px solid #333;padding-top:18px}

/* Standalone pricing + FAQ pages */
body.approved-page{margin:0;background:#fffdfb;color:var(--approved-ink);font-family:Manrope,system-ui,sans-serif}.approved-page .approved-nav{background:#fff;color:#161616;border-bottom:1px solid #eee}.approved-page .approved-nav-links a,.approved-page .approved-nav-actions>a:first-child{opacity:1;color:#222}.approved-page .approved-nav .logo{color:#111}.approved-page-main{max-width:1020px;margin:0 auto;padding:54px 28px 70px}.approved-page-head{text-align:center;max-width:720px;margin:0 auto 34px}.approved-page-head .approved-kicker{color:var(--approved-orange)}.approved-page-head h1{font-size:54px;line-height:1.02;margin:0 0 14px}.approved-page-head h1 span{color:var(--approved-orange)}.approved-page-head p{color:#5f5b58;line-height:1.6}.approved-page-proof{display:flex;justify-content:center;gap:42px;flex-wrap:wrap;margin-top:24px;font-size:13px}.approved-page-proof span:before{content:'✓';color:var(--approved-orange);margin-right:8px}
.approved-pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:34px 0}.approved-plan{border:1px solid #eee2da;border-radius:16px;padding:28px;background:#fff;box-shadow:0 8px 24px #59361a0c;display:flex;flex-direction:column;position:relative}.approved-plan.yearly{background:#fff9f5;border-color:#efb296}.approved-best{position:absolute;right:20px;top:18px;background:var(--approved-orange);color:white;border-radius:7px;padding:7px 11px;font-size:10px;font-weight:800}.approved-plan-label{color:var(--approved-orange);font-weight:800;letter-spacing:.08em;font-size:13px}.approved-plan-price{font-family:Fraunces,serif;font-size:44px;margin:10px 0 0}.approved-plan-price small{font-family:Manrope,sans-serif;font-size:12px;font-weight:500}.approved-plan-desc{font-size:13px;line-height:1.55;color:#5f5a56;min-height:64px}.approved-plan-save{color:var(--approved-green);font-size:12px;font-weight:800}.approved-plan ul{list-style:none;padding:18px 0;border-top:1px solid #eee2da;flex:1}.approved-plan li{font-size:12px;margin:11px 0;line-height:1.4}.approved-plan li:before{content:'✓';color:var(--approved-orange);font-weight:900;margin-right:9px}.approved-plan .approved-btn{width:100%;box-sizing:border-box}.approved-guarantee-note{text-align:center;font-size:12px;color:#5e5955;margin-top:11px}.approved-secure{text-align:center;font-size:12px;color:#5f5a56;margin:16px 0 36px}.approved-compare{border:1px solid #eee2da;border-radius:16px;padding:22px;background:#fff;margin:0 0 28px;overflow:auto}.approved-compare table{border-collapse:collapse;width:100%;font-size:12px}.approved-compare th,.approved-compare td{padding:14px 12px;border-bottom:1px solid #eee;text-align:center}.approved-compare th:first-child,.approved-compare td:first-child{text-align:left}.approved-compare thead th{font-family:Fraunces,serif;font-size:17px}.approved-compare .yearly-col{color:var(--approved-green);font-weight:800}.approved-guarantee{display:grid;grid-template-columns:1fr 1fr;gap:20px}.approved-guarantee>div{border:1px solid #eee2da;border-radius:16px;padding:24px;background:#fff}.approved-guarantee h2{font-size:27px;margin:0 0 10px}.approved-guarantee p{font-size:13px;line-height:1.6;color:#5f5a56}.approved-bottom-cta{margin-top:22px;background:#fae9df;border-radius:16px;padding:20px 24px;display:flex;justify-content:space-between;align-items:center}.approved-bottom-cta strong{font-family:Fraunces,serif;font-size:22px}.approved-bottom-cta small{display:block;margin-top:4px}
.approved-faq-search{max-width:640px;margin:24px auto 30px;position:relative}.approved-faq-search input{width:100%;box-sizing:border-box;border:1px solid #e7ded8;border-radius:11px;padding:16px 18px;font:inherit;background:#fff}.approved-topic-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:30px}.approved-topic-row button{border:1px solid #eaded6;background:#fff;border-radius:10px;padding:11px 15px;font:inherit;font-size:12px}.approved-topic-row button.active{color:var(--approved-orange);border-color:#f0b39a;background:#fff8f4}.approved-faq-group{margin:30px 0}.approved-faq-group h2{font-size:28px;margin:0 0 12px}.approved-faq-list details{border:1px solid #ebe3dd;border-bottom:0;background:#fff}.approved-faq-list details:first-child{border-radius:12px 12px 0 0}.approved-faq-list details:last-child{border-bottom:1px solid #ebe3dd;border-radius:0 0 12px 12px}.approved-faq-list summary{padding:16px 18px;font-weight:700;cursor:pointer;list-style:none}.approved-faq-list summary::-webkit-details-marker{display:none}.approved-faq-list summary:after{content:'⌄';float:right}.approved-faq-list details[open] summary:after{content:'⌃'}.approved-faq-answer{padding:0 18px 18px;color:#5f5a56;font-size:13px;line-height:1.65}.approved-support{background:#faeee7;border-radius:16px;padding:24px;display:flex;justify-content:space-between;align-items:center;margin-top:36px}.approved-support h3{font-size:24px;margin:0 0 6px}.approved-support p{margin:0;color:#5f5a56;font-size:13px}
@media(max-width:960px){.approved-nav{grid-template-columns:auto auto;justify-content:space-between;height:auto;padding:18px 24px}.approved-nav-links{grid-column:1/-1;order:3;justify-content:flex-start;overflow:auto;padding-top:10px}.approved-hero{grid-template-columns:1fr;padding:60px 28px}.approved-hero-photo{min-height:480px}.approved-demo-grid{grid-template-columns:1fr 1fr}.approved-demo-grid>div:nth-child(2){border-right:0}.approved-device-visual{min-height:330px}.approved-benefit-strip{grid-template-columns:1fr 1fr}.approved-benefit-strip>div:nth-child(2){border-right:0}.approved-business-grid{grid-template-columns:1fr}.approved-business-grid img{height:360px}.approved-content-action{grid-template-columns:1fr}.approved-content-copy{padding:60px 28px}.approved-content-photo{min-height:560px}.approved-trust-row{grid-template-columns:repeat(3,1fr)}.approved-trust-row strong{grid-column:1/-1}.approved-footer{grid-template-columns:1fr;text-align:center}.approved-footer>div{flex-wrap:wrap}.approved-pricing-grid{grid-template-columns:1fr}.approved-guarantee{grid-template-columns:1fr}}
@media(max-width:640px){.approved-nav-links{gap:18px}.approved-nav-actions{gap:12px}.approved-nav-actions .approved-btn{padding:0 16px;min-height:42px}.approved-hero-copy h1{font-size:50px}.approved-hero-photo{min-height:400px}.approved-floating-card{width:60%;padding:16px}.approved-demo-intro h2{font-size:43px}.approved-demo-grid{grid-template-columns:1fr}.approved-demo-grid>div{border-right:0;border-bottom:1px solid #37312d}.approved-benefit-strip{grid-template-columns:1fr}.approved-benefit-strip>div{border-right:0;border-bottom:1px solid var(--approved-line)}.approved-feature-stack article,.approved-feature-stack article.reverse{grid-template-columns:1fr}.approved-feature-stack article.reverse>div{order:2}.approved-feature-stack article.reverse>img{order:1}.approved-feature-stack p,.approved-feature-stack a{padding-left:0;margin-left:0}.approved-business-grid img{height:260px}.approved-proof{gap:12px;flex-direction:column}.approved-content-cards{right:4%;bottom:6%;width:220px}.approved-trust-row{grid-template-columns:1fr 1fr}.approved-start-banner{margin:0 18px 35px;align-items:flex-start;gap:18px;flex-direction:column}.approved-page-main{padding:40px 18px}.approved-page-head h1{font-size:42px}.approved-page-proof{gap:15px}.approved-bottom-cta,.approved-support{align-items:flex-start;flex-direction:column;gap:16px}}


.auth-captcha { margin: 1rem 0 0.8rem; min-height: 65px; }
.auth-captcha[hidden] { display: none; }

.support-main { max-width: 1080px; }
.support-head { margin-bottom: 34px; }
.support-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.support-copy,
.support-form {
  background: #fff;
  border: 1px solid #ebe3dd;
  border-radius: 16px;
  padding: 28px;
}
.support-copy h2 { margin: 0 0 12px; font-size: 27px; }
.support-copy > p { color: #5f5a56; font-size: 14px; line-height: 1.7; }
.support-callout {
  margin-top: 24px;
  padding: 18px;
  background: #faeee7;
  border-radius: 12px;
  display: grid;
  gap: 6px;
}
.support-callout strong { font-size: 14px; }
.support-callout span { color: #5f5a56; font-size: 13px; line-height: 1.55; }
.support-callout a { color: var(--approved-orange); font-size: 13px; font-weight: 700; }
.support-field { margin-bottom: 18px; }
.support-field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.support-field label span { color: #7b746e; font-weight: 500; }
.support-field input,
.support-field select,
.support-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ded5cf;
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  font: inherit;
  padding: 12px 13px;
}
.support-field textarea { resize: vertical; min-height: 150px; }
.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  outline: none;
  border-color: var(--approved-orange);
  box-shadow: 0 0 0 3px rgba(225, 112, 69, 0.12);
}
.support-field small { display: block; color: #7b746e; margin-top: 6px; font-size: 11px; line-height: 1.45; }
.support-submit { border: 0; cursor: pointer; }
.support-success-box { text-align: left; }
.support-success-link { display: flex; text-decoration: none; margin-top: 1.2rem; }
.approved-guarantee a { color: var(--approved-orange); font-weight: 700; }

@media(max-width:760px) {
  .support-layout { grid-template-columns: 1fr; }
  .support-copy, .support-form { padding: 22px; }
}

/* V22 mobile alignment hardening — keep approved desktop layout unchanged. */
@media (max-width: 640px) {
  .approved-feature-stack article,
  .approved-feature-stack article.reverse,
  .approved-feature-stack article:nth-child(3) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .approved-feature-stack article img,
  .approved-feature-stack article:nth-child(3) img {
    width: 100%;
    height: 260px;
    min-height: 0;
    object-fit: cover;
    display: block;
  }

  .approved-feature-stack article:nth-child(1) img {
    object-position: center 48%;
  }

  .approved-feature-stack article:nth-child(2) img {
    object-position: center 44%;
  }

  .approved-feature-stack article:nth-child(3) img {
    object-position: center 43%;
  }

  .approved-feature-stack article > div,
  .approved-feature-stack article.reverse > div {
    order: 2;
    padding: 28px 24px 30px;
    background: #fffaf5;
  }

  .approved-feature-stack article > img,
  .approved-feature-stack article.reverse > img {
    order: 1;
  }

  .approved-feature-stack h3 {
    font-size: 28px;
    line-height: 1.08;
    margin: 4px 0 12px;
  }

  .approved-feature-stack p {
    font-size: 15px;
    line-height: 1.55;
  }
}
