/* ═══════════════════════════════════════════
   UNICRUSH — SHARED DESIGN SYSTEM
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #FDFCFF;
  --surface:   #F5F1FF;
  --surface2:  #EDE6FF;
  --lav-light: #DDD6FE;
  --flame:     #FF4458;
  --flame2:    #FF6B35;
  --violet:    #7C3AED;
  --lavender:  #A78BFA;
  --text:      #1A0A2E;
  --text2:     #6B5B8A;
  --text3:     #B8ABCD;
  --white:     #FFFFFF;
  --green:     #34C759;
  --grad:      linear-gradient(135deg, #FF4458 0%, #FF6B35 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,68,88,0.08) 0%, rgba(255,107,53,0.05) 100%);
  --grad-v:    linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
  --shadow-card: 0 20px 60px rgba(124,58,237,0.1), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-btn:  0 8px 24px rgba(255,68,88,0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.heading em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
}

.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--flame);
}

.body-lg { font-size: 18px; line-height: 1.7; color: var(--text2); }
.body-md { font-size: 15px; line-height: 1.6; color: var(--text2); }
.body-sm { font-size: 13px; line-height: 1.5; color: var(--text3); }

/* ── BUTTONS ── */
.btn-flame {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--grad);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  border-radius: 50px; border: none;
  cursor: pointer; text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-flame:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,68,88,0.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--lav-light);
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--lavender); background: var(--surface); }

.btn-outline-flame {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--flame);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--flame);
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-flame:hover { background: var(--flame); color: var(--white); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(253,252,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lav-light);
  z-index: 1000;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
}

.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--text2); text-decoration: none;
  position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--flame); }
.nav-link.active::after { width: 100%; }

.nav-auth { display: flex; align-items: center; gap: 12px; }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 72px 60px 32px;
  margin-top: 120px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 24px; max-width: 260px; }

.footer-socials { display: flex; gap: 10px; }
.social-dot { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: block; }

.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }

.footer-link { display: block; font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }

.store-btn { display: inline-block; padding: 10px 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; margin-bottom: 10px; cursor: pointer; transition: border-color 0.2s; }
.store-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.page-wrap { padding-top: 72px; } /* offset fixed nav */

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lav-light);
  box-shadow: var(--shadow-card);
  padding: 40px;
}

.card-surface {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--lav-light);
  padding: 40px;
}

/* ── BADGE / CHIPS ── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: var(--surface2);
  border: 1px solid var(--lav-light);
  border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--violet);
}
.chip-flame {
  background: #FFF0F2; border-color: #FFCDD2; color: var(--flame);
}

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-input {
  width: 100%;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--lav-light);
  background: var(--bg);
  padding: 0 16px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--lavender); }
.form-input::placeholder { color: var(--text3); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--lav-light); margin: 32px 0; }

/* ── GRADIENT TEXT ── */
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.violet-text { background: var(--grad-v); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── SECTION ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── DECORATIVE ── */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.float { animation: float 4s ease-in-out infinite; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,68,88,0.3); }
  70%  { box-shadow: 0 0 0 16px rgba(255,68,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,68,88,0); }
}
.pulse { animation: pulse-ring 2.5s ease infinite; }

/* ═══════════════════════════════════════════
   INDEX PAGE — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 40%, rgba(255,68,88,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 20% 70%, rgba(124,58,237,0.07) 0%, transparent 70%),
    var(--bg);
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  position: relative; z-index: 1;
}

.hero-text {}
.hero-eyebrow { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--grad); border-radius: 2px; }

.hero-title { margin-bottom: 24px; }
.hero-body { font-size: 18px; line-height: 1.7; color: var(--text2); margin-bottom: 40px; max-width: 480px; }

.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 52px; }

.hero-stats {
  display: flex; gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--lav-light);
}
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text3); margin-top: 4px; font-weight: 500; }

/* Hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px; height: 560px;
  background: var(--text);
  border-radius: 44px;
  border: 3px solid #2C2C2E;
  box-shadow: 0 40px 100px rgba(26,10,46,0.3), 0 0 0 1px rgba(255,255,255,0.06) inset;
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
.phone-island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 28px; background: #000; border-radius: 14px; z-index: 10; }
.phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, #FFF5F6 0%, #F8F4FF 50%, #FFF0F2 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px;
}
.phone-card {
  width: 100%; height: 320px;
  background: white;
  border-radius: 24px;
  border: 1.5px solid var(--lav-light);
  box-shadow: 0 8px 32px rgba(124,58,237,0.12);
  overflow: hidden; position: relative;
}
.phone-card-bg {
  height: 200px;
  background: linear-gradient(135deg, #FFE8EC 0%, #EDE6FF 100%);
  display: flex; align-items: flex-end; justify-content: center;
}
.phone-avatar { width: 80px; height: 110px; border-radius: 40px 40px 28px 28px; background: linear-gradient(180deg, #FFCDD4 0%, #C4B5FD 100%); }
.phone-card-info { padding: 14px; }
.phone-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text); }
.phone-card-sub { font-size: 11px; color: var(--text2); margin-top: 2px; }
.phone-card-actions { display: flex; gap: 8px; margin-top: 12px; justify-content: center; }
.ph-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.ph-btn-skip { background: #FFF0F2; }
.ph-btn-like { background: var(--grad); box-shadow: 0 4px 12px rgba(255,68,88,0.3); }

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: white; border-radius: 16px;
  border: 1px solid var(--lav-light);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
  padding: 14px 18px;
  font-size: 13px;
}
.float-card-1 { left: -70px; top: 80px; animation: float 3.5s 0.5s ease-in-out infinite; }
.float-card-2 { right: -60px; bottom: 120px; animation: float 4s 1s ease-in-out infinite; }
.float-card-name { font-weight: 600; color: var(--text); font-size: 13px; }
.float-card-sub { color: var(--text3); font-size: 11px; margin-top: 2px; }
.float-match { font-size: 11px; font-weight: 700; color: var(--flame); margin-top: 6px; }

/* ── HOW IT WORKS ── */
.how-section { padding: 120px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.how-card {
  padding: 40px 36px;
  border-radius: 28px;
  border: 1.5px solid var(--lav-light);
  background: var(--white);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.how-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(124,58,237,0.12); }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 20px; opacity: 0.25;
  position: absolute; top: 24px; right: 28px;
}
.how-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.how-icon-flame { background: #FFF0F2; border: 1px solid #FFCDD2; }
.how-icon-violet { background: var(--surface2); border: 1px solid var(--lav-light); }
.how-icon-green { background: #EDFAF3; border: 1px solid #B2EFD0; }
.how-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.how-body { font-size: 14px; line-height: 1.65; color: var(--text2); }

/* ── FEATURES TEASER ── */
.features-teaser { padding: 60px 0 120px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
.feat-card {
  padding: 36px; border-radius: 24px;
  border: 1px solid var(--lav-light);
  background: var(--surface);
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.2s;
}
.feat-card:hover { background: var(--surface2); }
.feat-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.feat-text-wrap {}
.feat-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.feat-body { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 60px 120px;
  border-radius: 32px;
  background: var(--grad);
  padding: 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; right: -40px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; color: white; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-banner-sub { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: white; color: var(--flame); font-size: 15px; font-weight: 700; border-radius: 50px; cursor: pointer; text-decoration: none; transition: transform 0.2s; }
.btn-white:hover { transform: translateY(-2px); }
.btn-white-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; background: transparent; color: white; font-size: 15px; font-weight: 600; border-radius: 50px; border: 2px solid rgba(255,255,255,0.4); cursor: pointer; text-decoration: none; transition: border-color 0.2s; }
.btn-white-ghost:hover { border-color: white; }

/* ═══════════════════════════════════════════
   FEATURES PAGE — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

.page-hero {
  padding: 140px 60px 100px;
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero .display { margin-bottom: 24px; }
.page-hero .body-lg { max-width: 600px; margin: 0 auto; }

/* Feature blocks alternating */
.feat-block {
  padding: 80px 0;
  border-top: 1px solid var(--lav-light);
}
.feat-block-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 100px;
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
}
.feat-block-inner.reverse { direction: rtl; }
.feat-block-inner.reverse > * { direction: ltr; }

.feat-block-text {}
.feat-block-eyebrow { margin-bottom: 14px; }
.feat-block-title { margin-bottom: 18px; }
.feat-block-body { margin-bottom: 28px; }

.feat-point { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.feat-point-dot { width: 22px; height: 22px; border-radius: 50%; background: #FFF0F2; border: 1.5px solid #FFCDD2; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-point-dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--flame); display: block; }
.feat-point-text { font-size: 14px; color: var(--text2); line-height: 1.55; }

/* Feature visual box */
.feat-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid var(--lav-light);
  box-shadow: 0 20px 60px rgba(124,58,237,0.1);
}

.vis-matching {
  background: linear-gradient(135deg, #FFF5F6 0%, #F5F1FF 100%);
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 40px;
}
.match-pile { position: relative; width: 180px; height: 280px; }
.match-pile-card {
  position: absolute;
  width: 160px; height: 240px;
  border-radius: 20px; border: 1.5px solid var(--lav-light);
  background: white;
  box-shadow: 0 8px 24px rgba(124,58,237,0.1);
}
.match-pile-card:nth-child(1) { left: 20px; top: 20px; transform: rotate(4deg); background: linear-gradient(135deg, #FFE8EC, #EDE6FF); }
.match-pile-card:nth-child(2) { left: 10px; top: 10px; transform: rotate(-2deg); background: linear-gradient(135deg, #EDE6FF, #FFF0E8); }
.match-pile-card:nth-child(3) { left: 0; top: 0; transform: rotate(0deg); background: white; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; }
.main-card-sil { width: 80px; height: 120px; border-radius: 40px 40px 28px 28px; background: linear-gradient(180deg, #FFCDD4 0%, #C4B5FD 100%); }

.pct-badge { background: var(--grad); color: white; font-size: 20px; font-weight: 700; border-radius: 20px; padding: 16px 28px; font-family: 'Cormorant Garamond', serif; box-shadow: 0 8px 20px rgba(255,68,88,0.35); }
.pct-label { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; text-align: center; }

.vis-verify {
  background: linear-gradient(135deg, #F5F1FF 0%, #EDE6FF 100%);
  height: 380px; padding: 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.verify-step {
  display: flex; align-items: center; gap: 16px;
  background: white; border-radius: 16px; padding: 18px 22px;
  border: 1px solid var(--lav-light);
}
.verify-num { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.verify-txt { font-size: 14px; font-weight: 500; color: var(--text); }
.verify-check { margin-left: auto; color: var(--green); font-size: 18px; }

.vis-messaging {
  background: linear-gradient(135deg, #FFF5F6 0%, #FFF0E8 100%);
  height: 380px; padding: 32px;
  display: flex; flex-direction: column; gap: 12px; justify-content: center;
}
.msg-bubble { padding: 12px 18px; border-radius: 20px; font-size: 13.5px; max-width: 80%; }
.msg-in { background: #EDE6FF; border: 1px solid var(--lav-light); color: var(--text); border-bottom-left-radius: 6px; align-self: flex-start; }
.msg-out { background: var(--grad); color: white; border-bottom-right-radius: 6px; align-self: flex-end; box-shadow: 0 4px 12px rgba(255,68,88,0.25); }
.msg-voice { background: white; border: 1px solid var(--lav-light); border-radius: 20px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; align-self: flex-start; max-width: 80%; }
.voice-play { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; }
.voice-bars { display: flex; align-items: center; gap: 2px; }
.vb { width: 3px; border-radius: 2px; background: rgba(124,58,237,0.3); }

.vis-privacy {
  background: linear-gradient(135deg, #0F0A1E 0%, #1A0A2E 100%);
  height: 380px; padding: 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.priv-row { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.priv-icon { font-size: 20px; }
.priv-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.priv-status { margin-left: auto; font-size: 11px; font-weight: 700; color: #34C759; background: rgba(52,199,89,0.15); border-radius: 20px; padding: 3px 10px; }

/* ── ALL FEATURES GRID ── */
.all-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto; padding: 0 60px 120px;
}
.mini-feat {
  padding: 32px; border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--lav-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mini-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(124,58,237,0.1); }
.mini-feat-icon { font-size: 28px; margin-bottom: 16px; }
.mini-feat-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.mini-feat-body { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   PRICING PAGE — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

.pricing-hero {
  padding: 140px 60px 80px;
  text-align: center;
}
.pricing-hero .eyebrow { margin-bottom: 20px; }
.pricing-hero .display { margin-bottom: 24px; }
.pricing-hero .body-lg { max-width: 560px; margin: 0 auto 48px; }

/* Toggle */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--surface); border-radius: 50px; padding: 6px;
  border: 1px solid var(--lav-light); margin-bottom: 72px;
}
.toggle-opt { padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--text2); }
.toggle-opt.active { background: var(--grad); color: white; box-shadow: 0 4px 14px rgba(255,68,88,0.3); }
.toggle-save { background: #EDFAF3; color: #34C759; font-size: 11px; font-weight: 700; border-radius: 20px; padding: 3px 10px; }

/* Plans grid */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto; padding: 0 60px;
  align-items: start;
}

.plan-card {
  border-radius: 28px; padding: 44px 36px;
  border: 1.5px solid var(--lav-light);
  background: var(--white);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(124,58,237,0.12); }

.plan-card.featured {
  background: var(--text);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 32px 80px rgba(26,10,46,0.3);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 20px; padding: 5px 18px;
  box-shadow: 0 4px 14px rgba(255,68,88,0.4);
}

.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 16px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.5); }

.plan-price-wrap { margin-bottom: 8px; }
.plan-price { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 600; line-height: 1; color: var(--text); }
.plan-card.featured .plan-price { color: white; }
.plan-price sup { font-size: 28px; font-weight: 400; vertical-align: top; margin-top: 14px; display: inline-block; }
.plan-price sub { font-size: 16px; font-weight: 400; color: var(--text3); }
.plan-card.featured .plan-price sub { color: rgba(255,255,255,0.45); }

.plan-desc { font-size: 14px; color: var(--text2); margin-bottom: 32px; line-height: 1.5; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.6); }

.plan-cta { width: 100%; }
.plan-cta-featured { width: 100%; padding: 14px; background: var(--grad); color: white; font-size: 15px; font-weight: 700; border-radius: 50px; border: none; cursor: pointer; box-shadow: 0 8px 24px rgba(255,68,88,0.4); display: block; text-align: center; text-decoration: none; }

.plan-divider { height: 1px; background: var(--lav-light); margin: 32px 0; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,0.1); }

.plan-feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.pf-check { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 10px; font-weight: 700; }
.pf-check.yes { background: #FFF0F2; border: 1.5px solid #FFCDD2; color: var(--flame); }
.pf-check.no  { background: var(--surface); border: 1.5px solid var(--lav-light); color: var(--text3); }
.plan-card.featured .pf-check.yes { background: rgba(255,68,88,0.2); border-color: rgba(255,68,88,0.3); }
.plan-card.featured .pf-check.no  { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.pf-text { font-size: 14px; color: var(--text2); }
.plan-card.featured .pf-text { color: rgba(255,255,255,0.7); }
.pf-text.muted { color: var(--text3); }

/* Compare table */
.compare-section { padding: 100px 60px 120px; max-width: 1100px; margin: 0 auto; }
.compare-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--text); text-align: center; margin-bottom: 56px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { padding: 16px 24px; text-align: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); border-bottom: 2px solid var(--lav-light); }
.compare-table th:first-child { text-align: left; }
.compare-table th.hi { color: var(--flame); }
.compare-table td { padding: 16px 24px; text-align: center; font-size: 14px; color: var(--text2); border-bottom: 1px solid var(--surface2); }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-table tr:hover td { background: var(--surface); }
.check-yes { color: var(--flame); font-size: 18px; }
.check-no  { color: var(--text3); font-size: 18px; }

/* Guarantee strip */
.guarantee {
  background: var(--surface);
  border-radius: 24px; margin: 0 60px 100px;
  padding: 60px 80px;
  display: flex; align-items: center; gap: 60px;
}
.guarantee-icon { font-size: 56px; flex-shrink: 0; }
.guarantee-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.guarantee-body { font-size: 15px; color: var(--text2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CREDIBILITY PAGE — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

.cred-hero {
  padding: 140px 60px 100px;
  text-align: center; max-width: 800px; margin: 0 auto;
}

/* Stats banner */
.stats-banner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--lav-light);
  margin: 0 60px; border-radius: 24px; overflow: hidden;
  margin-bottom: 100px;
}
.stat-block {
  background: var(--white); padding: 52px 32px;
  text-align: center;
  transition: background 0.2s;
}
.stat-block:hover { background: var(--surface); }
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 700; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.stat-desc { font-size: 14px; color: var(--text2); font-weight: 500; }

/* Press logos */
.press-section { padding: 0 60px 100px; }
.press-eyebrow { text-align: center; margin-bottom: 40px; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.press-logo { padding: 16px 32px; border-radius: 14px; background: var(--surface); border: 1px solid var(--lav-light); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text2); letter-spacing: 0.02em; }

/* Testimonials */
.testimonials-section { padding: 80px 60px; background: var(--surface); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.test-card {
  background: var(--white); border-radius: 24px;
  border: 1px solid var(--lav-light);
  padding: 36px;
  box-shadow: 0 8px 32px rgba(124,58,237,0.06);
  transition: transform 0.2s;
}
.test-card:hover { transform: translateY(-4px); }
.test-stars { color: var(--flame); font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.test-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--text); line-height: 1.5; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #FFE8EC 0%, #EDE6FF 100%); border: 2px solid var(--lav-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.test-av-sil { width: 22px; height: 30px; border-radius: 11px 11px 8px 8px; background: linear-gradient(180deg, #FFCDD4 0%, #C4B5FD 100%); }
.test-name { font-size: 14px; font-weight: 600; color: var(--text); }
.test-uni { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* Awards */
.awards-section { padding: 100px 60px; }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.award-card {
  padding: 40px 32px; border-radius: 24px;
  border: 1.5px solid var(--lav-light); background: var(--white);
  text-align: center;
}
.award-icon { font-size: 44px; margin-bottom: 18px; }
.award-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.award-org { font-size: 12px; color: var(--flame); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.award-body { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* Trust section */
.trust-section { background: var(--text); padding: 100px 60px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 56px; }
.trust-item { text-align: center; }
.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 8px; }
.trust-sub { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.trust-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: white; text-align: center; }
.trust-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════
   LOGIN & SIGNUP PAGES — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

.auth-layout {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left panel — visual */
.auth-visual {
  background: var(--text);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 72px;
}

.auth-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 80% 20%, rgba(255,68,88,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 20% 80%, rgba(124,58,237,0.2) 0%, transparent 60%),
    var(--text);
}

.auth-visual-logo {
  position: absolute; top: 40px; left: 72px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  z-index: 2;
}

/* Phone mockups stacked */
.phones-stack {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 2;
}
.auth-phone {
  width: 200px; height: 400px;
  background: #2C2C2E; border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  overflow: hidden; position: relative;
}
.auth-phone-screen { position: absolute; inset: 0; background: linear-gradient(170deg, #FFF5F6 0%, #F8F4FF 100%); }
.auth-phone-island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 70px; height: 22px; background: #000; border-radius: 11px; z-index: 5; }
.auth-phone-content { position: absolute; top: 48px; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; padding: 16px; gap: 10px; }
.auth-mini-card { width: 100%; flex: 1; border-radius: 18px; background: white; border: 1px solid var(--lav-light); box-shadow: 0 6px 20px rgba(124,58,237,0.1); overflow: hidden; }
.auth-mini-card-bg { height: 60%; background: linear-gradient(135deg, #FFE8EC, #EDE6FF); display: flex; align-items: flex-end; justify-content: center; }
.auth-mini-sil { width: 44px; height: 64px; border-radius: 22px 22px 14px 14px; background: linear-gradient(180deg, #FFCDD4, #C4B5FD); }
.auth-mini-info { padding: 10px; }
.auth-mini-name { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600; color: var(--text); }
.auth-mini-sub { font-size: 10px; color: var(--text2); }

.auth-quote {
  position: relative; z-index: 2;
}
.auth-quote-text { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: white; line-height: 1.4; margin-bottom: 16px; font-style: italic; }
.auth-quote-attr { font-size: 13px; color: rgba(255,255,255,0.45); }

/* Right panel — form */
.auth-form-panel {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 80px;
  background: var(--bg);
}

.auth-form-wrap { width: 100%; max-width: 400px; }

.auth-form-eyebrow { margin-bottom: 12px; }
.auth-form-title { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: var(--text); line-height: 1.1; margin-bottom: 10px; }
.auth-form-sub { font-size: 14px; color: var(--text2); margin-bottom: 40px; }

/* Social login */
.social-login { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; height: 52px; border-radius: 14px; border: 1.5px solid var(--lav-light); background: var(--white); font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.social-btn:hover { border-color: var(--lavender); background: var(--surface); }
.social-icon { width: 22px; height: 22px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 14px; }

.or-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.or-line { flex: 1; height: 1px; background: var(--lav-light); }
.or-text { font-size: 12px; color: var(--text3); font-weight: 500; }

.form-submit { width: 100%; height: 52px; border-radius: 14px; border: none; background: var(--grad); color: white; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 24px rgba(255,68,88,0.3); transition: transform 0.2s, box-shadow 0.2s; margin-top: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,68,88,0.4); }

.form-forgot { text-align: right; margin-top: -12px; margin-bottom: 20px; }
.form-forgot a { font-size: 13px; color: var(--flame); text-decoration: none; font-weight: 500; }

.auth-switch { text-align: center; margin-top: 28px; font-size: 14px; color: var(--text2); }
.auth-switch a { color: var(--flame); font-weight: 600; text-decoration: none; }

.auth-nav-link { position: absolute; top: 40px; right: 72px; z-index: 100; }

/* ── SIGNUP PAGE SPECIFIC ── */
.signup-layout { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }

/* Left — visual */
.signup-visual {
  background: linear-gradient(170deg, #FFF5F6 0%, #F5F1FF 50%, #FFF0E8 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 80px 60px;
}
.signup-visual-logo { position: absolute; top: 40px; left: 60px; font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.blob-v1 { position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,68,88,0.12), transparent 70%); pointer-events: none; }
.blob-v2 { position: absolute; bottom: -60px; left: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%); pointer-events: none; }

/* Steps visual */
.steps-visual { display: flex; flex-direction: column; gap: 20px; width: 100%; max-width: 360px; position: relative; z-index: 2; }
.step-row { display: flex; align-items: center; gap: 18px; padding: 20px 24px; background: rgba(255,255,255,0.8); border-radius: 20px; border: 1px solid var(--lav-light); backdrop-filter: blur(10px); box-shadow: 0 8px 28px rgba(124,58,237,0.08); }
.step-num { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: white; flex-shrink: 0; }
.step-num.s1 { background: var(--grad); box-shadow: 0 4px 12px rgba(255,68,88,0.3); }
.step-num.s2 { background: var(--grad-v); box-shadow: 0 4px 12px rgba(124,58,237,0.25); }
.step-num.s3 { background: var(--grad); box-shadow: 0 4px 12px rgba(255,68,88,0.3); }
.step-text { font-size: 14px; font-weight: 600; color: var(--text); }
.step-sub { font-size: 12px; color: var(--text2); margin-top: 2px; }
.step-check { margin-left: auto; font-size: 20px; }

.signup-tagline { text-align: center; margin-top: 36px; position: relative; z-index: 2; }
.signup-tagline-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--text); line-height: 1.3; }
.signup-tagline-sub { font-size: 14px; color: var(--text2); margin-top: 8px; }

/* Right — form */
.signup-form-panel {
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px;
}
.signup-form-wrap { width: 100%; max-width: 420px; }

.signup-form-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: var(--text); line-height: 1.1; margin-bottom: 8px; }
.signup-form-sub { font-size: 14px; color: var(--text2); margin-bottom: 36px; }

/* Progress dots */
.progress-dots { display: flex; gap: 8px; margin-bottom: 36px; }
.prog-dot { height: 4px; border-radius: 2px; }
.prog-dot.done { background: var(--grad); flex: 1; }
.prog-dot.active { background: var(--grad); flex: 2; opacity: 0.5; }
.prog-dot.pending { background: var(--lav-light); flex: 1; }

.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* University autocomplete look */
.form-input-uni { position: relative; }
.uni-badge { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 700; color: var(--green); background: #EDFAF3; border-radius: 20px; padding: 2px 8px; }

/* DOB row */
.dob-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

/* Gender chips */
.gender-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.gender-chip { padding: 9px 20px; border-radius: 50px; border: 1.5px solid var(--lav-light); font-size: 13px; font-weight: 500; color: var(--text2); cursor: pointer; transition: all 0.15s; }
.gender-chip.selected { border-color: var(--flame); background: #FFF0F2; color: var(--flame); }

.terms-row { display: flex; align-items: flex-start; gap: 12px; margin: 20px 0; }
.terms-check { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--lav-light); background: var(--white); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; cursor: pointer; }
.terms-check.checked { background: var(--grad); border-color: transparent; color: white; font-size: 11px; }
.terms-text { font-size: 13px; color: var(--text2); line-height: 1.5; }
.terms-text a { color: var(--flame); }

.form-submit-full { width: 100%; height: 54px; border-radius: 14px; border: none; background: var(--grad); color: white; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 24px rgba(255,68,88,0.3); }

.free-badge { display: inline-flex; align-items: center; gap: 6px; background: #EDFAF3; border: 1px solid #B2EFD0; border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 600; color: #34C759; margin-bottom: 24px; }

/* ── Content figures (real imagery) ───────── */
.content-figure { max-width: 1000px; margin: 48px auto; padding: 0 60px; }
.content-figure img { width: 100%; height: auto; aspect-ratio: 1280 / 860; border-radius: 24px; box-shadow: var(--shadow-card); display: block; object-fit: cover; }
.content-figure figcaption { margin-top: 12px; font-size: 13px; color: var(--text3); text-align: center; }
@media (max-width: 700px){ .content-figure { padding: 0 24px; } }

/* ═══════════════════════════════════════════
   BLOG — hub + article styles
   ═══════════════════════════════════════════ */
.blog-hero { padding: 130px 60px 40px; text-align: center; max-width: 760px; margin: 0 auto; }
.blog-hero .eyebrow { margin-bottom: 18px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1160px; margin: 32px auto 100px; padding: 0 60px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1.5px solid var(--lav-light); border-radius: 22px; overflow: hidden; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(124,58,237,0.12); }
.blog-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.blog-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--flame); }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 600; color: var(--text); line-height: 1.25; }
.blog-card-excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--text3); margin-top: 6px; }

/* Article */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 120px 24px 40px; }
.article-breadcrumb { font-size: 13px; color: var(--text3); margin-bottom: 18px; }
.article-breadcrumb a { color: var(--text2); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--flame); }
.article-wrap h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5vw, 52px); font-weight: 600; line-height: 1.1; color: var(--text); margin-bottom: 18px; }
.article-byline { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text3); margin-bottom: 32px; }
.article-byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text3); }
.article-hero-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-card); margin-bottom: 36px; }
.article-body { font-size: 16.5px; line-height: 1.8; color: var(--text2); }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--text); margin: 44px 0 14px; line-height: 1.2; }
.article-body h3 { font-size: 19px; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--flame); }
.article-body strong { color: var(--text); }
.article-lead { font-size: 19px; line-height: 1.7; color: var(--text); margin-bottom: 28px; }
.article-cta { background: var(--surface); border: 1.5px solid var(--lav-light); border-radius: 20px; padding: 32px; text-align: center; margin: 44px 0; }
.article-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 10px; color: var(--text); }
.article-cta p { font-size: 14px; color: var(--text2); margin-bottom: 18px; }
.article-faq { margin: 44px 0; }
.article-faq .qa { border-top: 1px solid var(--lav-light); padding: 20px 0; }
.article-faq .qa h3 { margin: 0 0 8px; font-size: 17px; }
.article-faq .qa p { margin: 0; font-size: 15px; line-height: 1.7; }

/* ── Brand logo image in nav & footer ───────── */
.nav-logo { display: inline-flex; align-items: center; gap: 9px; }
.nav-logo img { width: 32px; height: 32px; border-radius: 7px; -webkit-text-fill-color: initial; flex-shrink: 0; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; }
.footer-logo img { width: 30px; height: 30px; border-radius: 7px; -webkit-text-fill-color: initial; }
@media (max-width: 768px){ .nav-logo img { width: 28px; height: 28px; } }
