/* ============================================================
   Anaboo AI — wealth.anaboo.ai landing page
   Brand: Purple #50008b · Orange #ff5500 · White #ffffff
   Font: Inter
   ============================================================ */

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

:root {
  --purple: #50008b;
  --purple-dark: #2a0048;
  --purple-deep: #1a0030;
  --orange: #ff5500;
  --orange-light: #ff9466;
  --orange-soft: #fff5ed;
  --purple-soft: #faf5ff;
  --text: #111827;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --border: #e5e7eb;
  --white: #ffffff;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: #e64d00; border-color: #e64d00; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--purple); }
.btn-ghost { background: transparent; color: var(--purple); border: none; padding: 10px 14px; }
.btn-ghost:hover { color: var(--orange); }
.btn-ghost-light { background: transparent; color: var(--orange-light); border: none; padding: 10px 14px; }
.btn-ghost-light:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo img { height: 36px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; }
.main-nav a:hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

@media (max-width: 820px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    gap: 12px;
  }
  body.nav-open .main-nav { display: flex; }
  .nav-toggle { display: block; color: var(--purple); }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,85,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 80px; }
}

.eyebrow {
  color: var(--orange-light);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.03;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero h1 .accent { color: var(--orange); }

.hero .lead {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: #fef2e8;
  margin-bottom: 12px;
  line-height: 1.35;
}
.hero .sub-lead {
  font-size: 17px;
  color: #e9d9f7;
  margin-bottom: 32px;
}
.hero .sub-lead strong { color: var(--orange-light); }

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-row-light .btn-outline-light { border-width: 2px; }

.trust-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-row > div {
  display: flex;
  flex-direction: column;
}
.trust-row strong {
  color: var(--orange-light);
  font-size: 18px;
  font-weight: 700;
}
.trust-row span {
  font-size: 13px;
  color: #e9d9f7;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--orange);
  padding: 22px 24px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
.stat-card-orange {
  background: var(--orange);
  border-color: var(--orange);
}
.stat-card-orange .stat-num { color: var(--white); }
.stat-card-orange .stat-label { color: #fff5ed; }
.stat-card-ghost { background: transparent; }
.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card-orange .stat-num { font-size: 36px; }
.stat-card-ghost .stat-num { font-size: 30px; color: var(--white); }
.stat-label {
  font-size: 13px;
  color: #e9d9f7;
  line-height: 1.4;
}

/* ---------- Intro / Brett note ---------- */
.intro {
  padding: 80px 0;
  background: var(--white);
}
.intro-note {
  max-width: 780px;
  margin: 0 auto 40px;
  padding: 40px;
  background: var(--purple-soft);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
}
.intro-note h2 { color: var(--purple); font-size: 28px; margin-bottom: 18px; }
.intro-note p { margin-bottom: 14px; color: #374151; font-size: 16px; }
.intro-note p.signoff { margin-top: 16px; font-weight: 600; color: var(--purple); }

.pullquote {
  max-width: 780px;
  margin: 0 auto;
  padding: 28px 36px;
  background: var(--orange-soft);
  border-left: 5px solid var(--orange);
  font-size: 20px;
  font-weight: 500;
  color: var(--purple);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* ---------- Section shell ---------- */
.section { padding: 80px 0; }
.section-light { background: #fafafa; }
.section-dark { background: var(--purple); color: var(--white); }
.section-cta { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%); color: var(--white); }

.section-head {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-num {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--purple);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-head-light h2 { color: var(--white); }
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}
.section-head-light .section-lead { color: #e9d9f7; }

/* ---------- Opportunity ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 30px; }
}
.two-col p {
  font-size: 17px;
  color: #374151;
  margin-bottom: 14px;
}
.two-col strong { color: var(--purple); }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 4px;
}
.stat-big {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span:last-child {
  color: var(--text-muted);
  font-size: 14px;
}

.callout {
  background: var(--purple);
  color: var(--white);
  padding: 28px 36px;
  border-left: 5px solid var(--orange);
  border-radius: 4px;
  max-width: 900px;
  margin: 40px auto 0;
}
.callout-orange {
  background: var(--orange);
  border-left-color: var(--purple);
}
.callout h4 {
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.callout-orange h4 { color: var(--purple-deep); }
.callout .big { font-size: 22px; font-weight: 600; line-height: 1.3; }

/* ---------- Skills ---------- */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.skill-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  padding: 26px 24px;
  border-radius: 6px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(80, 0, 139, 0.1);
  border-left-color: var(--purple);
}
.skill-card-highlight {
  background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
  border-left-color: var(--purple);
}
.skill-num {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  align-self: flex-start;
}
.skill-card h3 {
  font-size: 19px;
  color: var(--purple);
  margin-bottom: 6px;
  line-height: 1.25;
}
.skill-tag {
  color: var(--orange);
  font-style: italic;
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.skill-card > p:not(.skill-tag) {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
}
.skill-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.skill-meta .saved {
  color: var(--orange);
  font-weight: 700;
}

.total-bar {
  margin-top: 36px;
  background: var(--purple);
  color: var(--white);
  padding: 28px 36px;
  border-radius: 6px;
  border-left: 5px solid var(--orange);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.total-bar strong { display: block; font-size: 18px; margin-bottom: 4px; }
.total-bar span:not(.total-num span) { color: #e9d9f7; font-size: 14px; }
.total-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.total-num span {
  font-size: 14px;
  color: var(--orange-light);
  font-weight: 500;
  margin-left: 6px;
}

/* ---------- Typical day tabs ---------- */
.persona-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  font-family: inherit;
}
.tab:hover { border-color: var(--orange); color: var(--orange-light); }
.tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.persona-panel { display: none; max-width: 1020px; margin: 0 auto; }
.persona-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.panel-label {
  text-align: center;
  color: var(--orange-light);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 20px;
}

.day-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 700px) {
  .day-split { grid-template-columns: 1fr; }
}
.day-col { padding: 26px 28px; color: var(--text); }
.day-col.today { background: #f9fafb; border-right: 1px solid var(--border); }
.day-col.aios { background: var(--purple-soft); }
.day-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.day-col.today h5 { color: var(--text-muted); border-bottom-color: #d1d5db; }
.day-col.aios h5 { color: var(--orange); border-bottom-color: var(--orange); }
.day-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: #374151;
}
.day-row .time {
  color: var(--purple);
  font-weight: 700;
  min-width: 46px;
  font-variant-numeric: tabular-nums;
}
.day-row em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
}

.reclaimed {
  margin-top: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
}
.reclaimed strong { font-weight: 700; }

/* ---------- MAS ---------- */
.mas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.mas-box {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
}
.mas-box h4 {
  color: var(--purple);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.mas-box p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Roadmap ---------- */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 780px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}
.roadmap-phase {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 6px;
  position: relative;
}
.roadmap-phase-mid {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(80, 0, 139, 0.2);
}
.roadmap-phase h3 {
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 8px;
}
.roadmap-phase-mid h3 { color: var(--white); }
.phase-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.phase-skills {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}
.roadmap-phase-mid .phase-skills { color: var(--orange-light); }
.roadmap-phase ul {
  list-style: none;
  padding: 0;
}
.roadmap-phase li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 14px;
  color: #374151;
}
.roadmap-phase li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.roadmap-phase-mid li { color: #e9d9f7; }
.roadmap-phase-mid li::before { color: var(--orange-light); }

.honesty-box {
  max-width: 820px;
  margin: 0 auto;
  background: #fef2e8;
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  border-radius: 4px;
}
.honesty-box h4 {
  color: var(--purple);
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.honesty-box ul { list-style: none; padding: 0; }
.honesty-box li {
  padding: 6px 0;
  font-size: 14px;
  color: #374151;
}
.honesty-box li strong { color: var(--purple); }

/* ---------- Pilot ---------- */
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.pilot-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid var(--orange);
  padding: 22px 24px;
  border-radius: 6px;
  color: var(--white);
}
.pilot-item h4 {
  color: var(--orange-light);
  font-size: 16px;
  margin-bottom: 8px;
}
.pilot-item p {
  color: #e9d9f7;
  font-size: 14px;
  line-height: 1.5;
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,85,0,0.1);
  border: 2px solid var(--orange);
  padding: 48px 40px;
  border-radius: 8px;
  text-align: center;
}
.cta-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-box p {
  font-size: 17px;
  color: #e9d9f7;
  margin-bottom: 26px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-deep);
  color: #e9d9f7;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 50px;
  padding: 60px 24px 40px;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
.footer-brand { }
.footer-logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { margin-bottom: 10px; font-size: 14px; }
.footer-tag { font-style: italic; color: var(--orange-light); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 560px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-links h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-links a, .footer-links span {
  display: block;
  color: #e9d9f7;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
}
.footer-links a:hover { color: var(--orange-light); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
}
.footer-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: #9e7cb8;
}
.footer-bar .signoff { color: var(--orange-light); font-style: italic; }

/* ---------- Stack box (10 + 16 + custom reframe) ---------- */
.stack-box {
  max-width: 820px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: 0 4px 12px rgba(80, 0, 139, 0.05);
}
.stack-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.stack-row:last-child { border-bottom: none; }
.stack-row.stack-equals {
  background: var(--purple-soft);
  margin: 12px -20px -20px;
  padding: 24px 20px;
  border-radius: 0 0 6px 6px;
  border-bottom: none;
}
.stack-count {
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 24px;
  padding: 8px 18px;
  border-radius: 6px;
  min-width: 78px;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}
.stack-equals-symbol {
  background: var(--purple);
  font-size: 28px;
}
.stack-row > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stack-row strong {
  color: var(--purple);
  font-size: 17px;
}
.stack-row span {
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- Bundled 16 grid ---------- */
.bundled-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.bundled-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 4px;
}
.bundled-cat h4 {
  color: var(--purple);
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bundled-cat ul {
  list-style: none;
  padding: 0;
}
.bundled-cat li {
  padding: 4px 0;
  font-size: 14px;
  color: #374151;
  position: relative;
  padding-left: 16px;
}
.bundled-cat li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Phone button on mobile */
@media (max-width: 820px) {
  .main-nav a[href^="tel:"] {
    font-size: 13px;
  }
}
