/* Resume Aura — shared styles */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink: #1a0d2e;
  --ink-2: #2a1a47;
  --cream: #fef9f0;
  --paper: #fffdf7;
  --lemon: #fae14b;
  --mint: #b7f0cd;
  --coral: #ff8a7a;
  --magenta: #ff4db8;
  --violet: #8a5cf6;
  --cyan: #4dd6ff;
  --text-muted: #6b5e88;
  --sans: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  background: #ece6db;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* aura gradient — used in many places */
.aura-grad {
  background: conic-gradient(from 210deg at 50% 50%,
    #ff4db8 0deg, #8a5cf6 90deg, #4dd6ff 180deg, #fae14b 270deg, #ff4db8 360deg);
}
.aura-grad-soft {
  background: radial-gradient(circle at 30% 30%, #ff4db8, transparent 50%),
              radial-gradient(circle at 70% 40%, #8a5cf6, transparent 55%),
              radial-gradient(circle at 50% 80%, #4dd6ff, transparent 55%),
              radial-gradient(circle at 80% 70%, #fae14b, transparent 45%);
}

/* highlight swatches for editor issues */
.hl-verb    { background: rgba(255, 138, 122, 0.35); border-bottom: 2px solid #ff8a7a; }
.hl-metric  { background: rgba(250, 225, 75, 0.45); border-bottom: 2px solid #e5c71a; }
.hl-tense   { background: rgba(77, 214, 255, 0.3);  border-bottom: 2px solid #4dd6ff; }
.hl-passive { background: rgba(138, 92, 246, 0.25); border-bottom: 2px solid #8a5cf6; }
.hl-grammar { background: rgba(255, 77, 184, 0.25); border-bottom: 2px solid #ff4db8; }
.hl-vague   { background: rgba(183, 240, 205, 0.6); border-bottom: 2px solid #5ac77f; }

/* scrollbars inside phones */
.device-scroll::-webkit-scrollbar { width: 0; }
.device-scroll { scrollbar-width: none; }

/* bounce / pop animations */
@keyframes pop-in { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes blink { 0%, 90%, 100% { transform: scaleY(1); } 95% { transform: scaleY(0.1); } }
@keyframes count-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

.pop-in { animation: pop-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.float  { animation: float 3s ease-in-out infinite; }
.eye-blink { animation: blink 4s infinite; transform-origin: center; }

/* no-scrollbar utility */
.noscroll::-webkit-scrollbar { display: none; }
.noscroll { scrollbar-width: none; }

/* tweaks panel */
.tweaks {
  position: fixed; right: 18px; bottom: 18px; z-index: 9999;
  width: 300px; background: #fffdf7; border-radius: 18px;
  box-shadow: 0 20px 50px rgba(20,0,40,0.25), 0 0 0 1px rgba(0,0,0,0.06);
  font-family: var(--sans); font-size: 13px; overflow: hidden;
  transform: translateY(0); transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.tweaks.hidden { display: none; }
.tweaks h3 { margin: 0; padding: 14px 16px; background: var(--ink); color: var(--lemon); font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: 0.3px; }
.tweaks section { padding: 12px 16px; border-bottom: 1px solid #eee6d4; }
.tweaks section:last-child { border-bottom: none; }
.tweaks label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--ink); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.tweaks .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tweaks .chip { padding: 5px 10px; border-radius: 100px; background: #f0ebe0; border: none; cursor: pointer; font-size: 12px; font-family: inherit; font-weight: 500; color: var(--ink); }
.tweaks .chip.active { background: var(--ink); color: var(--lemon); }
.tweaks input[type=range] { width: 100%; accent-color: var(--violet); }

/* canvas layout */
.canvas {
  min-height: 100vh;
  padding: 60px 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 77, 184, 0.08), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(77, 214, 255, 0.08), transparent 40%),
    #ece6db;
}
.canvas-header { text-align: center; max-width: 780px; }
.canvas-header .eyebrow { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); }
.canvas-header h1 { font-family: var(--serif); font-size: 78px; line-height: 0.95; margin: 8px 0 12px; letter-spacing: -0.02em; color: var(--ink); font-weight: 400; }
.canvas-header h1 em { font-style: italic; background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.canvas-header p { font-size: 16px; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.55; }

.screen-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.screen-cell { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.screen-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.screen-label .num { display: inline-block; padding: 2px 6px; border-radius: 4px; background: var(--ink); color: var(--lemon); margin-right: 6px; }

.section-title { text-align: center; margin: 40px 0 -10px; }
.section-title .kicker { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); }
.section-title h2 { font-family: var(--serif); font-size: 48px; font-weight: 400; margin: 4px 0; color: var(--ink); letter-spacing: -0.01em; }

/* ==========================================================================
   LANDING PAGE
   ========================================================================== */

.landing { background: #ece6db; color: var(--ink); overflow-x: hidden; }

/* nav */
.landing-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(236, 230, 219, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(26, 13, 46, 0.08);
}
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav-logo-mark { width: 30px; height: 30px; border-radius: 50%; background: conic-gradient(from 210deg at 50% 50%, #ff4db8 0deg, #8a5cf6 90deg, #4dd6ff 180deg, #fae14b 270deg, #ff4db8 360deg); box-shadow: 0 2px 10px rgba(138, 92, 246, 0.35); }
.nav-logo-name { font-family: var(--serif); font-size: 22px; font-style: italic; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-link { font-size: 14px; color: var(--text-muted); text-decoration: none; font-weight: 500; }
.nav-link:hover { color: var(--ink); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 100px; border: none;
  font-family: var(--sans); font-weight: 700; font-size: 14px; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: var(--lemon); }
.btn-ink:hover { box-shadow: 0 8px 22px rgba(26, 13, 46, 0.3); }
.btn-lemon { background: var(--lemon); color: var(--ink); }
.btn-lemon:hover { box-shadow: 0 8px 22px rgba(250, 225, 75, 0.45); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(26, 13, 46, 0.15); }
.btn-ghost:hover { background: rgba(26, 13, 46, 0.04); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* hero */
.landing-hero {
  max-width: 1160px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-eyebrow { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); }
.hero-h1 { font-family: var(--serif); font-size: 84px; line-height: 0.96; letter-spacing: -0.02em; margin: 14px 0 16px; font-weight: 400; }
.hero-h1 em { font-style: italic; background: linear-gradient(90deg, var(--magenta), var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 17px; line-height: 1.55; color: var(--text-muted); max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-trust { margin-top: 18px; display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.hero-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.hero-phone { display: flex; justify-content: center; align-items: flex-start; min-height: 720px; }

/* sections */
.section { padding: 72px 24px; }
.section-alt { background: var(--cream); }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-kicker { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); }
.section-h2 { font-family: var(--serif); font-size: 52px; line-height: 1; margin: 10px 0 10px; font-weight: 400; letter-spacing: -0.01em; }
.section-h2 em { font-style: italic; background: linear-gradient(90deg, var(--magenta), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-lede { font-size: 16px; color: var(--text-muted); line-height: 1.55; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: var(--paper); border-radius: 20px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(26, 13, 46, 0.06);
  box-shadow: 0 1px 3px rgba(26, 13, 46, 0.03);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); font-weight: 700; font-family: var(--serif); font-size: 22px;
  margin-bottom: 14px;
}
.feature-icon.a { background: linear-gradient(135deg, var(--magenta), var(--violet)); color: #fff; }
.feature-icon.b { background: linear-gradient(135deg, var(--lemon), var(--coral)); }
.feature-icon.c { background: linear-gradient(135deg, var(--cyan), var(--mint)); }
.feature-title { font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -0.01em; margin: 0 0 8px; }
.feature-body { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--paper); border-radius: 20px; padding: 24px 22px; border: 1px solid rgba(26, 13, 46, 0.06); position: relative; }
.step-n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; color: var(--violet); font-weight: 700; }
.step-title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 6px 0 6px; letter-spacing: -0.01em; }
.step-body { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* verdict strip */
.verdict-strip {
  margin: 32px auto 0; max-width: 800px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted);
  text-align: center; line-height: 2;
}
.verdict-strip .pip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--paper); border-radius: 100px; border: 1px solid rgba(26, 13, 46, 0.06); }
.verdict-strip .pip .dot { width: 7px; height: 7px; border-radius: 50%; }

/* pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 820px; margin: 0 auto; }
.pricing-card {
  background: var(--paper); border-radius: 22px; padding: 28px 26px;
  border: 1px solid rgba(26, 13, 46, 0.08);
  display: flex; flex-direction: column; gap: 14px;
}
.pricing-card.pro {
  background: linear-gradient(135deg, #1a0d2e, #3d1a55); color: #fff;
  border-color: transparent; position: relative; overflow: hidden;
}
.pricing-card.pro::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 77, 184, 0.5), transparent 60%);
  filter: blur(24px); pointer-events: none;
}
.plan-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.pricing-card.pro .plan-name { color: var(--lemon); }
.plan-price { font-family: var(--serif); font-size: 48px; line-height: 1; letter-spacing: -0.02em; }
.plan-price .unit { font-size: 16px; font-family: var(--sans); color: var(--text-muted); margin-left: 4px; }
.pricing-card.pro .plan-price .unit { color: rgba(255, 255, 255, 0.6); }
.plan-alt { font-size: 12px; color: var(--text-muted); font-family: var(--mono); letter-spacing: 0.05em; }
.pricing-card.pro .plan-alt { color: rgba(255, 255, 255, 0.7); }
.plan-save { display: inline-block; margin-left: 6px; background: var(--lemon); color: var(--ink); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; padding: 2px 8px; border-radius: 100px; text-transform: uppercase; }
.plan-list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.45; position: relative; }
.plan-list li { display: flex; gap: 8px; align-items: flex-start; }
.plan-list li::before { content: '✓'; color: var(--violet); font-weight: 700; flex-shrink: 0; }
.pricing-card.pro .plan-list li::before { color: var(--lemon); }
.pricing-card.pro .plan-list { color: rgba(255, 255, 255, 0.85); }
.plan-cta { margin-top: auto; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--paper); border-radius: 16px; border: 1px solid rgba(26, 13, 46, 0.06);
  padding: 18px 22px;
}
.faq-q { font-family: var(--sans); font-weight: 700; font-size: 16px; margin: 0 0 6px; color: var(--ink); }
.faq-a { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* footer */
.landing-footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.75);
  padding: 48px 24px 36px;
  position: relative; overflow: hidden;
}
.landing-footer::before {
  content: ''; position: absolute; top: -80px; left: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 77, 184, 0.18), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; position: relative; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; max-width: 320px; }
.footer-brand .nav-logo-name { color: #fff; }
.footer-tag { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lemon); margin: 0 0 4px; font-weight: 700; }
.footer-col a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-small { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.footer-small a { color: rgba(255, 255, 255, 0.45); text-decoration: none; }
.footer-small a:hover { color: rgba(255, 255, 255, 0.7); }

/* legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 96px; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.legal-back { font-size: 13px; color: var(--text-muted); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.legal-back:hover { color: var(--ink); }
.legal-eyebrow { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-muted); }
.legal-h1 { font-family: var(--serif); font-size: 56px; line-height: 1; letter-spacing: -0.02em; margin: 10px 0 6px; font-weight: 400; }
.legal-effective { font-family: var(--mono); font-size: 12px; color: var(--text-muted); }
.legal-body { margin-top: 28px; font-size: 15px; line-height: 1.7; color: #342557; }
.legal-body h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.01em; margin: 34px 0 8px; color: var(--ink); }
.legal-body h2:first-of-type { margin-top: 12px; }
.legal-body p { margin: 10px 0; }
.legal-body a { color: var(--violet); text-decoration: underline; text-decoration-color: rgba(138, 92, 246, 0.3); text-underline-offset: 3px; }
.legal-body a:hover { text-decoration-color: var(--violet); }
.legal-body code { font-family: var(--mono); font-size: 13px; background: rgba(138, 92, 246, 0.08); padding: 2px 6px; border-radius: 4px; color: var(--ink); }
.legal-body ul { padding-left: 20px; }
.legal-body ul li { margin: 6px 0; }
.legal-body strong { color: var(--ink); }

/* mobile */
@media (max-width: 760px) {
  .nav-links { gap: 10px; }
  .nav-links .nav-link { display: none; }
  .nav-links .nav-link.keep { display: inline; }
  .landing-hero { grid-template-columns: 1fr; padding: 40px 20px 24px; gap: 24px; }
  .hero-h1 { font-size: 54px; }
  .hero-phone { min-height: 620px; }
  .section { padding: 52px 20px; }
  .section-h2 { font-size: 36px; }
  .feature-grid, .steps, .pricing-grid { grid-template-columns: 1fr; }
  .legal-h1 { font-size: 40px; }
  .legal-body { font-size: 15px; }
  .footer-top { flex-direction: column; gap: 24px; }
}
