:root {
  --pacific: #3B7A9A;
  --pacific-dark: #2A5A75;
  --pacific-deeper: #1F4458;
  --coral: #E89B8A;
  --coral-deep: #D17F6E;
  --cream: #FDFAF3;
  --blush: #F5C2C0;
  --plum: #4A3548;
  --gold: #E0B870;
  --soft-cream: #FFFEFB;
  --pacific-light: #B0CCD9;
  --border: #E0D5C5;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Helvetica', 'Arial', sans-serif;
  color: var(--plum);
  background: var(--soft-cream);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}

/* TOP NAV BAR (the "Claude" header equivalent) */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  background: var(--soft-cream);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-logo {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--pacific);
}
.topbar-meta { color: #999; font-size: 12px; }
.topbar-actions { color: #888; font-size: 12px; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--pacific-deeper) 0%, var(--pacific) 100%);
  color: var(--cream);
  padding: 60px 32px 72px 32px;
  text-align: center;
}
.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--cream);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Georgia', serif;
  font-size: 56px;
  margin: 0 0 18px 0;
  font-weight: 700;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}

/* CTA BAR (Coral) */
.cta-bar {
  background: var(--coral);
  color: white;
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
}
.cta-bar .cta-emoji { font-size: 20px; }
.cta-bar .cta-text { color: white; }
.cta-bar .cta-btn {
  background: white;
  color: var(--coral-deep);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* MEMBERSHIP/INFO BAR (cream — original look) */
.info-bar {
  background: var(--cream);
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.info-bar-text { font-size: 14px; color: var(--plum); }
.info-bar-text strong { color: var(--pacific); }
.info-bar-btn {
  background: var(--pacific-deeper);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* TABS */
.tabs-wrap {
  background: var(--soft-cream);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  overflow-x: auto;
}
.tabs {
  display: flex;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.tab {
  padding: 18px 16px;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--plum);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.tab:hover { color: var(--pacific); }
.tab.active {
  color: var(--pacific);
  font-weight: 700;
  border-bottom-color: var(--coral);
}

/* CONTENT */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 80px 32px;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.section-title {
  font-family: 'Georgia', serif;
  color: var(--pacific);
  font-size: 36px;
  margin: 0 0 12px 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-20 -20 40 40'><g fill='none' stroke='%23E89B8A' stroke-width='2'><ellipse cx='0' cy='-10' rx='5' ry='9'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(72)'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(144)'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(216)'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(288)'/></g><circle cx='0' cy='0' r='4' fill='none' stroke='%23E0B870' stroke-width='2'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* DECORATIVE FLOWER DIVIDER */
.flower-divider {
  text-align: center;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.flower-divider::before,
.flower-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--coral);
  opacity: 0.4;
}
.flower-divider .bloom {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-20 -20 40 40'><g fill='none' stroke='%23E89B8A' stroke-width='2'><ellipse cx='0' cy='-10' rx='5' ry='9'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(72)'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(144)'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(216)'/><ellipse cx='0' cy='-10' rx='5' ry='9' transform='rotate(288)'/></g><circle cx='0' cy='0' r='4' fill='none' stroke='%23E0B870' stroke-width='2'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.section-intro {
  font-size: 17px;
  color: var(--plum);
  margin: 0 0 32px 0;
  max-width: 720px;
}

h3 {
  font-family: 'Georgia', serif;
  color: var(--pacific);
  font-size: 22px;
  margin: 32px 0 12px 0;
}
h4 {
  color: var(--pacific);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 24px 0 10px 0;
}

/* DEFINITION CARD (Dark Pacific Blue with soft Honey Gold heading) */
.def-card {
  background: linear-gradient(135deg, var(--pacific-deeper) 0%, var(--pacific) 100%);
  color: var(--cream);
  padding: 32px 36px;
  border-radius: 14px;
  margin: 24px 0;
  position: relative;
  box-shadow: 0 6px 24px rgba(59,122,154,0.15);
}
.def-card::after {
  content: '💡';
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 24px;
  opacity: 0.3;
}
.def-card-label {
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.def-card-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--cream);
  margin: 0;
}
.def-card-text strong { color: var(--coral); font-weight: 700; }

/* FLOW DIAGRAM (boxes + arrows like reference) */
.flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 32px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-box {
  background: white;
  border: 2px solid var(--pacific);
  border-radius: 10px;
  padding: 16px 18px;
  min-width: 140px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.4;
}
.flow-arrow {
  color: var(--coral);
  font-size: 26px;
  font-weight: 700;
}

/* VIBE CARDS (for taglines, names, etc.) */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 16px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.card.coral-accent { border-left: 4px solid var(--coral); }
.card.pacific-accent { border-left: 4px solid var(--pacific); }
.card.gold-accent { border-left: 4px solid var(--gold); }

.quote-box {
  background: var(--cream);
  border-left: 4px solid var(--pacific);
  padding: 20px 24px;
  margin: 14px 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--plum);
  border-radius: 0 8px 8px 0;
}
.quote-box.coral { border-left-color: var(--coral); }
.quote-box.gold { border-left-color: var(--gold); }

/* TAGLINE STACK */
.tagline-stack {
  background: white;
  padding: 32px;
  border-radius: 14px;
  border: 2px solid var(--border);
  text-align: center;
  margin: 24px 0;
}
.tagline-stack .name {
  font-family: 'Georgia', serif;
  font-size: 38px;
  color: var(--pacific);
  margin-bottom: 12px;
  font-weight: 700;
}
.tagline-stack .tag1 {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--coral-deep);
  margin: 6px 0;
}
.tagline-stack .tag2 {
  font-style: italic;
  font-size: 16px;
  color: var(--plum);
  margin: 6px 0;
}

/* COLOR SWATCHES */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.swatch {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.swatch-color { height: 80px; }
.swatch-info { padding: 12px 14px; }
.swatch-name { font-weight: 700; color: var(--plum); font-size: 14px; }
.swatch-hex {
  font-family: 'Monaco', monospace;
  font-size: 12px;
  color: #888;
  margin: 2px 0 4px 0;
}
.swatch-role { font-size: 11px; color: #777; }

/* TWO-COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 20px 0;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

.do-box, .dont-box {
  padding: 20px 24px;
  border-radius: 10px;
}
.do-box {
  background: #E6F0F2;
  border-left: 4px solid var(--pacific);
}
.dont-box {
  background: #FCE8E4;
  border-left: 4px solid var(--coral-deep);
}
.do-box h4 { color: var(--pacific); margin-top: 0; }
.dont-box h4 { color: var(--coral-deep); margin-top: 0; }
.do-box ul, .dont-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}
.do-box li, .dont-box li { margin: 6px 0; }

/* SIGNATURE LINES */
.sig-line {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  margin: 8px 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--plum);
  border-radius: 0 6px 6px 0;
}

/* ARCH BLOCK */
.arch-block {
  background: var(--pacific-deeper);
  color: var(--cream);
  padding: 28px 32px;
  border-radius: 12px;
  font-family: 'Monaco', monospace;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 20px 0;
}
.arch-block .arch-key { color: var(--coral); font-weight: 700; }

/* KEYWORD CHIPS */
.chip-set { margin: 16px 0; }
.chip-set-label {
  font-weight: 700;
  color: var(--pacific);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--plum);
}
.chip:hover {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}

/* STORY CARD (audience thoughts) */
.thought-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin: 8px 0;
  font-style: italic;
  color: var(--plum);
  font-size: 14px;
}

/* LAUNCH SPRINT */
.day-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 12px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.day-num {
  background: var(--pacific);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.day-num.launch { background: var(--coral); }
.day-content h4 { margin-top: 0; color: var(--pacific); }
.day-content { flex: 1; }

/* FOOTER */
.footer {
  background: var(--pacific-deeper);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px;
  font-size: 13px;
  margin-top: 60px;
}
.footer .brand-line {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: var(--coral);
  font-size: 16px;
  margin-bottom: 8px;
}

/* PERSONA BADGE */
.persona-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 8px;
}
.persona-mom { background: var(--coral); color: white; }
.persona-50 { background: var(--pacific); color: white; }

@media print {
  .tab-content { display: block !important; page-break-before: always; }
  .tabs-wrap, .topbar, .info-bar, .cta-bar { display: none; }
}
