/* SlideCV standalone cozy premium homepage */
:root {
  --ink: #15213f;
  --ink-soft: #53627d;
  --blue: #4c78f1;
  --blue-deep: #315fd9;
  --blue-soft: #edf3ff;
  --lilac: #9a86e8;
  --lilac-soft: #f4f0ff;
  --rose: #ef94aa;
  --rose-soft: #fff0f4;
  --mint: #5fc3a3;
  --mint-soft: #eafaf4;
  --peach: #efb16d;
  --peach-soft: #fff6e9;
  --line: #dfe7f6;
  --line-strong: #cad7ee;
  --surface: #ffffff;
  --page: #f9fbff;
  --shadow-xl: 0 30px 90px rgba(72, 91, 142, .15);
  --shadow-lg: 0 22px 58px rgba(72, 91, 142, .12);
  --shadow-md: 0 14px 34px rgba(72, 91, 142, .10);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  background:
    radial-gradient(circle at 8% 6%, rgba(192, 210, 255, .35), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(236, 221, 255, .35), transparent 27%),
    linear-gradient(#fbfdff, #f8fbff 48%, #fff);
}
button, input { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
svg { display: block; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }
.cozy-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.cozy-section { padding: 88px 0; }
.cozy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cozy-centered-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.cozy-centered-heading h2,
.cozy-section-heading h2,
.cozy-faq-grid h2,
.cozy-final-cta-card h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.055em;
}
.cozy-centered-heading p,
.cozy-section-heading p,
.cozy-faq-grid > div:first-child p,
.cozy-final-cta-card p {
  color: var(--ink-soft);
  font-size: 16px;
}

/* Header */
.cozy-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  border-bottom: 1px solid rgba(218, 229, 246, .78);
  background: rgba(250, 252, 255, .88);
  backdrop-filter: blur(18px);
}
.cozy-nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.cozy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.035em;
}
.cozy-brand > span:last-child > span { color: var(--blue); }
.cozy-brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: linear-gradient(145deg, #edf3ff, #fff);
  box-shadow: 0 8px 20px rgba(76, 120, 241, .15);
}
.cozy-brand-mark svg { width: 28px; height: 28px; }
.cozy-nav-links { display: flex; align-items: center; gap: 28px; }
.cozy-nav-links a {
  color: #263653;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.cozy-nav-links a:hover { color: var(--blue); transform: translateY(-1px); }
.cozy-nav-actions { justify-self: end; display: flex; gap: 10px; }
.cozy-mobile-toggle { display: none; }
.cozy-mobile-panel { display: none; }

/* Buttons */
.cozy-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.cozy-button:hover { transform: translateY(-2px); }
.cozy-button-primary {
  background: linear-gradient(135deg, var(--blue), #668cf6);
  color: #fff;
  box-shadow: 0 14px 28px rgba(76, 120, 241, .25);
}
.cozy-button-primary:hover { box-shadow: 0 18px 34px rgba(76, 120, 241, .32); }
.cozy-button-secondary,
.cozy-button-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(72, 91, 142, .06);
}
.cozy-button-large { min-height: 54px; padding-inline: 24px; border-radius: 16px; }
.cozy-button-light { background: #fff; color: var(--blue-deep); box-shadow: 0 16px 34px rgba(47, 69, 130, .14); }

/* Hero */
.cozy-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 46px;
}
.cozy-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  gap: 56px;
  align-items: center;
}
.cozy-hero-copy { padding-left: 12px; }
.cozy-trust-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #dce7fb;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: #405b91;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(72, 91, 142, .05);
}
.cozy-trust-pill svg { width: 15px; height: 15px; color: var(--rose); }
#cozy-hero-title {
  margin: 24px 0 22px;
  max-width: 600px;
  font-size: clamp(48px, 5.35vw, 78px);
  line-height: .99;
  letter-spacing: -.067em;
  font-weight: 800;
}
.cozy-script-word {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-family: var(--script);
  font-size: 1.12em;
  letter-spacing: -.035em;
  font-weight: 700;
}
.cozy-script-word svg {
  position: absolute;
  left: -2%;
  bottom: -3px;
  width: 105%;
  height: 14px;
  color: #6e90f6;
  overflow: visible;
}
.cozy-script-word svg path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: cozy-draw-line .75s .35s ease-out forwards;
}
.cozy-hero-lede {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}
.cozy-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cozy-hero-note { margin: 12px 0 0; color: #7c899e; font-size: 12px; font-weight: 700; }
.cozy-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: .65;
  pointer-events: none;
}
.cozy-hero-blob-one { width: 380px; height: 380px; right: 16%; top: 4%; background: rgba(205, 218, 255, .34); }
.cozy-hero-blob-two { width: 250px; height: 250px; right: 3%; top: 27%; background: rgba(235, 221, 255, .35); }

/* Product stage */
.cozy-product-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.cozy-stage-sheet {
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(213,224,255,.72), rgba(245,240,255,.86));
  box-shadow: var(--shadow-lg);
}
.cozy-stage-sheet-one { transform: rotate(-5deg) translate(-22px, 12px); }
.cozy-stage-sheet-two { transform: rotate(5deg) translate(30px, -4px); opacity: .72; }
.cozy-editor-window {
  position: relative;
  z-index: 3;
  width: min(100%, 610px);
  border: 1px solid rgba(207, 220, 244, .92);
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translateY(4px);
  animation: cozy-editor-enter .7s ease-out both;
}
.cozy-editor-topbar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid #ebf0f8;
  background: rgba(248, 251, 255, .94);
}
.cozy-window-dots { display: flex; gap: 6px; }
.cozy-window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #dbe5f5; }
.cozy-window-dots span:first-child { background: #f0a4b5; }
.cozy-window-dots span:nth-child(2) { background: #f3c178; }
.cozy-window-dots span:nth-child(3) { background: #79c8ad; }
.cozy-save-state { display: inline-flex; align-items: center; gap: 5px; color: #67ad96; font-size: 10px; font-weight: 800; }
.cozy-save-state svg { width: 13px; height: 13px; }
.cozy-export-button { border: 0; border-radius: 9px; background: var(--blue); color: #fff; padding: 7px 11px; font-size: 10px; font-weight: 800; }
.cozy-editor-body { min-height: 444px; display: grid; grid-template-columns: 76px 1fr; }
.cozy-editor-tools {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 10px;
  border-right: 1px solid #edf1f8;
  background: #fbfcff;
}
.cozy-editor-tools button {
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 1px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: #7b879d;
}
.cozy-editor-tools button span { font-size: 15px; line-height: 1; }
.cozy-editor-tools button small { font-size: 7px; font-weight: 700; }
.cozy-editor-tools button.active { border-color: #d9e5ff; background: var(--blue-soft); color: var(--blue); box-shadow: 0 8px 16px rgba(76,120,241,.08); }
.cozy-resume-paper {
  align-self: center;
  width: calc(100% - 46px);
  min-height: 386px;
  margin: 22px auto;
  padding: 28px 30px;
  border: 1px solid #e4eaf4;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 17px 30px rgba(50, 70, 120, .09);
  color: #293650;
  font-size: 8.5px;
}
.cozy-resume-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.cozy-resume-header h2 { margin: 0; color: #17213d; font-size: 25px; line-height: 1.05; letter-spacing: -.04em; }
.cozy-resume-header p { margin: 5px 0 0; color: var(--blue); font-size: 10px; font-weight: 800; }
.cozy-resume-header > span { padding: 5px 8px; border-radius: 999px; background: var(--mint-soft); color: #3f987d; font-size: 7px; font-weight: 800; }
.cozy-contact-row { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 13px 0 12px; color: #7a879c; font-size: 7px; }
.cozy-resume-summary { margin: 0 0 16px; color: #56647c; font-size: 8px; line-height: 1.55; }
.cozy-resume-section { margin-top: 15px; }
.cozy-resume-section h3 { margin: 0 0 9px; padding-bottom: 5px; border-bottom: 1px solid #dce5f3; color: var(--blue); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.cozy-resume-role { display: flex; justify-content: space-between; gap: 12px; }
.cozy-resume-role strong { display: block; color: #26324b; font-size: 9px; }
.cozy-resume-role span { display: block; margin-top: 2px; color: #7b879b; font-size: 7px; }
.cozy-resume-role time { color: #8995a8; font-size: 7px; white-space: nowrap; }
.cozy-resume-section ul { margin: 8px 0 0; padding-left: 14px; color: #58657b; line-height: 1.65; }
.cozy-resume-education { margin-top: 12px; }
.cozy-skill-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.cozy-skill-row span { padding: 4px 7px; border: 1px solid #e2e9f4; border-radius: 999px; background: #f9fbff; color: #5a6981; font-size: 6.5px; font-weight: 700; }
.cozy-score-card {
  position: absolute;
  right: -8px;
  top: 184px;
  z-index: 5;
  width: 146px;
  padding: 16px;
  border: 1px solid #e1e9f5;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: cozy-float 5s ease-in-out infinite;
}
.cozy-score-card > span { display: block; color: #718099; font-size: 9px; font-weight: 700; }
.cozy-score-ring { width: 66px; height: 66px; display: grid; place-items: center; margin: 10px auto 7px; border-radius: 50%; background: conic-gradient(var(--mint) 0 92%, #e9f2ef 92%); }
.cozy-score-ring::before { content: ''; position: absolute; width: 50px; height: 50px; border-radius: 50%; background: #fff; }
.cozy-score-ring strong { position: relative; z-index: 1; color: #263650; font-size: 20px; }
.cozy-score-card b { display: block; color: #33415b; font-size: 10px; }
.cozy-score-card ul { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 5px; text-align: left; color: #5a6c83; font-size: 8px; }
.cozy-score-card li { display: flex; justify-content: space-between; }
.cozy-autosave-card {
  position: absolute;
  right: 70px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid #e1e9f5;
  border-radius: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-md);
  animation: cozy-float 5s 1.2s ease-in-out infinite;
}
.cozy-cloud-icon { color: var(--mint); font-size: 20px; }
.cozy-autosave-card strong, .cozy-autosave-card small { display: block; }
.cozy-autosave-card strong { font-size: 9px; }
.cozy-autosave-card small { color: #8591a5; font-size: 7px; }
.cozy-doodle { position: absolute; z-index: 6; font-family: var(--script); pointer-events: none; }
.cozy-doodle-plane { left: 15%; top: 1%; color: var(--blue); font-size: 29px; transform: rotate(-12deg); animation: cozy-plane 6s ease-in-out infinite; }
.cozy-doodle-star { color: #f2bb73; font-size: 26px; animation: cozy-twinkle 3.2s ease-in-out infinite; }
.cozy-star-one { left: 2%; top: 20%; }
.cozy-star-two { right: 2%; top: 9%; animation-delay: 1s; }
.cozy-doodle-heart { color: var(--rose); font-size: 30px; animation: cozy-float 5.5s ease-in-out infinite; }
.cozy-heart-one { left: 0; bottom: 24%; }
.cozy-heart-two { right: -1%; top: 24%; animation-delay: .8s; }
.cozy-capability-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.cozy-capability-row > div { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 11px 12px; border-radius: 16px; }
.cozy-capability-row strong, .cozy-capability-row small { display: block; }
.cozy-capability-row strong { font-size: 11px; color: #2b3a58; }
.cozy-capability-row small { margin-top: 1px; color: #77859b; font-size: 8px; }
.cozy-capability-icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-soft); color: var(--blue); font-weight: 900; }
.cozy-capability-icon.mint { background: var(--mint-soft); color: var(--mint); }
.cozy-capability-icon.peach { background: var(--peach-soft); color: var(--peach); }
.cozy-capability-icon.rose { background: var(--rose-soft); color: var(--rose); }
.cozy-capability-icon.lilac { background: var(--lilac-soft); color: var(--lilac); }

/* Template showcase */
.cozy-template-section { border-top: 1px solid rgba(221,231,247,.8); background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(246,250,255,.9)); }
.cozy-section-heading { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 32px; }
.cozy-section-heading p { margin-bottom: 0; }
.cozy-text-link { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; color: var(--blue-deep); font-size: 13px; font-weight: 800; text-decoration: none; }
.cozy-template-track { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.cozy-template-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 14px 14px 16px;
  border: 1px solid #e1e8f4;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cozy-template-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.cozy-template-card.selected { border-color: #7aa0ff; box-shadow: 0 0 0 3px rgba(76,120,241,.08), var(--shadow-lg); }
.cozy-selected-check { position: absolute; right: 8px; top: 8px; z-index: 2; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; }
.cozy-template-card > strong { color: #2b3b58; font-size: 12px; }
.cozy-template-paper { --accent: var(--blue); min-height: 230px; display: grid; grid-template-columns: 25% 1fr; gap: 10px; overflow: hidden; padding: 13px; border: 1px solid #e4eaf4; border-radius: 14px; background: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); }
.cozy-template-paper.modern { --accent: #4c78f1; }
.cozy-template-paper.executive { --accent: #223458; }
.cozy-template-paper.creative { --accent: #ed91a9; }
.cozy-template-paper.minimal { --accent: #9a86e8; grid-template-columns: 1fr; }
.cozy-template-paper.professional { --accent: #5fc3a3; }
.cozy-template-paper.elegant { --accent: #e0a354; }
.cozy-template-paper.minimal .tpl-side { display: none; }
.tpl-side { border-radius: 8px; background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 78%, #27344f)); opacity: .95; }
.tpl-main { display: flex; flex-direction: column; align-items: stretch; padding-top: 7px; }
.tpl-name { height: 12px; width: 82%; border-radius: 999px; background: #263650; }
.tpl-role { height: 6px; width: 55%; margin-top: 7px; border-radius: 999px; background: var(--accent); opacity: .8; }
.tpl-rule { height: 2px; margin: 14px 0 10px; background: var(--accent); opacity: .7; }
.tpl-lines { display: grid; gap: 8px; }
.tpl-lines i { display: block; height: 5px; width: 90%; border-radius: 999px; background: #dce4ef; }
.tpl-lines i.short { width: 64%; }
.tpl-lines b { display: block; height: 24px; margin: 3px 0; border-left: 3px solid var(--accent); border-radius: 5px; background: #f6f8fc; }

/* Steps */
.cozy-soft-panel { padding: 48px; border: 1px solid #e0e9f8; border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(244,248,255,.92)); box-shadow: var(--shadow-lg); }
.cozy-centered-heading em { color: var(--blue); font-family: var(--script); font-style: normal; font-size: 1.16em; }
.cozy-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cozy-step-card { position: relative; min-height: 255px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr; gap: 14px; padding: 24px; border: 1px solid #e1e8f4; border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); }
.cozy-step-card h3 { margin: 2px 0 6px; font-size: 16px; }
.cozy-step-card p { margin: 0; color: #748198; font-size: 12px; line-height: 1.65; }
.cozy-step-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-weight: 800; }
.cozy-step-visual { grid-column: 1 / -1; align-self: end; min-height: 88px; position: relative; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(145deg, #f7f9ff, #eef3ff); overflow: hidden; }
.cozy-step-visual > span { position: relative; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: #fff; color: var(--blue); font-size: 22px; box-shadow: 0 12px 24px rgba(72,91,142,.12); }
.cozy-step-visual i { position: absolute; width: 78px; height: 54px; border: 1px solid #dce6f8; border-radius: 12px; background: rgba(255,255,255,.7); transform: translateX(-42px) rotate(-5deg); }
.cozy-step-visual i:last-child { transform: translateX(42px) rotate(5deg); }
.cozy-step-card > b { position: absolute; right: -26px; top: 50%; z-index: 3; color: #8aa6f1; font-family: var(--script); font-size: 24px; font-weight: 700; }

/* Features */
.cozy-features-section { background: linear-gradient(180deg, transparent, rgba(246,250,255,.9)); }
.cozy-feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cozy-feature-grid article { min-height: 220px; padding: 24px 20px; border: 1px solid #e2e9f5; border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); transition: transform .24s ease, box-shadow .24s ease; }
.cozy-feature-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 16px; background: var(--blue-soft); color: var(--blue); font-size: 20px; font-weight: 900; }
.feature-icon.lilac { background: var(--lilac-soft); color: var(--lilac); }
.feature-icon.mint { background: var(--mint-soft); color: var(--mint); }
.feature-icon.peach { background: var(--peach-soft); color: var(--peach); }
.feature-icon.rose { background: var(--rose-soft); color: var(--rose); }
.cozy-feature-grid h3 { margin: 0 0 10px; font-size: 15px; }
.cozy-feature-grid p { margin: 0; color: #748198; font-size: 12px; line-height: 1.65; }

/* Pricing */
.pricing-section { background: #fff; }
.pricing-toggle-container { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 5px; border: 1px solid #dce5f3; border-radius: 999px; background: #fff; box-shadow: 0 10px 26px rgba(72,91,142,.06); }
.toggle-label { height: 36px; padding: 0 12px; border: 0; border-radius: 999px; background: transparent; color: #6c7a90; font-size: 12px; font-weight: 800; }
.toggle-label.active { color: var(--blue); }
.pricing-toggle-switch { width: 52px; height: 30px; padding: 3px; border: 0; border-radius: 999px; background: #dce7fa; transition: background .2s ease; }
.pricing-toggle-switch span { display: block; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 4px 10px rgba(50,70,120,.18); transition: transform .2s ease; }
.pricing-toggle-switch.yearly { background: var(--blue); }
.pricing-toggle-switch.yearly span { transform: translateX(22px); }
.pricing-discount-badge { padding: 5px 8px; border-radius: 999px; background: var(--mint-soft); color: #46977d; font-size: 9px; font-weight: 800; }
.pricing-plans-grid { max-width: 860px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 0 auto; }
.pricing-card { position: relative; display: flex; flex-direction: column; min-height: 510px; padding: 32px; border: 1px solid #dfe7f4; border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: #8aa8f4; background: linear-gradient(155deg, #f3f6ff, #fff 45%); box-shadow: 0 24px 60px rgba(76,120,241,.18); }
.pricing-card-kicker { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card h3 { margin: 10px 0 7px; font-size: 28px; letter-spacing: -.04em; }
.plan-subtitle { margin: 0; min-height: 48px; color: #78859a; font-size: 13px; }
.plan-price-block { display: flex; align-items: baseline; gap: 4px; margin: 24px 0; }
.original-price { color: #a0abba; font-size: 12px; text-decoration: line-through; }
.currency { color: var(--ink); font-size: 18px; font-weight: 800; }
.price-value { font-size: 44px; line-height: 1; letter-spacing: -.06em; }
.billing-period { color: #7a879c; font-size: 12px; }
.plan-features-list { list-style: none; display: grid; gap: 13px; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid #e5ebf5; color: #4f5e75; font-size: 12px; }
.pricing-card .cozy-button { width: 100%; margin-top: auto; }
.popular-ribbon { position: absolute; right: 22px; top: 20px; padding: 6px 10px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 9px; font-weight: 800; }
#slidecv-region-pricing-toggle { margin-inline: auto !important; }

/* FAQ */
.cozy-faq-section { background: linear-gradient(180deg, rgba(246,250,255,.8), #fff); }
.cozy-faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; align-items: start; }
.cozy-faq-list { display: grid; gap: 12px; }
.cozy-faq-item { border: 1px solid #e0e8f5; border-radius: 18px; background: #fff; box-shadow: 0 10px 24px rgba(72,91,142,.05); overflow: hidden; }
.cozy-faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 20px; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 800; }
.cozy-faq-item button b { color: var(--blue); font-size: 21px; transition: transform .2s ease; }
.cozy-faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.cozy-faq-item > div p { min-height: 0; overflow: hidden; margin: 0; padding: 0 20px; color: #718098; font-size: 13px; line-height: 1.65; }
.cozy-faq-item.open > div { grid-template-rows: 1fr; }
.cozy-faq-item.open > div p { padding-bottom: 18px; }
.cozy-faq-item.open button b { transform: rotate(45deg); }

/* CTA and footer */
.cozy-final-cta { padding: 20px 0 88px; }
.cozy-final-cta-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; padding: 44px 52px; overflow: hidden; border-radius: 30px; background: linear-gradient(135deg, #6f91f5, #8e9ff3 58%, #9c91e9); color: #fff; box-shadow: 0 26px 60px rgba(76,120,241,.24); }
.cozy-final-cta-card::before, .cozy-final-cta-card::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.14); }
.cozy-final-cta-card::before { width: 180px; height: 180px; right: 12%; top: -110px; }
.cozy-final-cta-card::after { width: 120px; height: 120px; left: -50px; bottom: -50px; }
.cozy-final-cta-card .cozy-eyebrow { color: rgba(255,255,255,.85); }
.cozy-final-cta-card p { color: rgba(255,255,255,.82); }
.cta-doodle { position: absolute; left: 30px; bottom: 10px; color: rgba(255,255,255,.55); font-family: var(--script); font-size: 56px; transform: rotate(-12deg); }
.cozy-footer { border-top: 1px solid #e1e8f3; background: #fff; }
.cozy-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 42px; padding: 58px 0 38px; }
.cozy-footer-grid p { max-width: 290px; color: #7a879d; font-size: 13px; }
.cozy-footer-grid h3 { margin: 0 0 14px; font-size: 12px; }
.cozy-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.cozy-footer-grid a:not(.cozy-brand), .cozy-footer-bottom a { color: #748198; font-size: 12px; text-decoration: none; }
.cozy-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid #ebeff6; color: #8b96a8; font-size: 11px; }
.cozy-footer-bottom div { display: flex; gap: 16px; }

/* Auth modal */
.auth-modal-overlay { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(21,33,63,.52); backdrop-filter: blur(14px); }
.auth-modal-overlay.active, .auth-modal-overlay.show, .auth-modal-overlay.open { display: flex; }
.auth-modal-container { position: relative; width: min(460px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 32px; border: 1px solid #e2e8f3; border-radius: 28px; background: linear-gradient(180deg, #fff, #f9fbff); box-shadow: 0 36px 90px rgba(21,33,63,.32); }
.auth-close-btn { position: absolute; right: 18px; top: 18px; width: 36px; height: 36px; border: 1px solid #e0e7f2; border-radius: 12px; background: #fff; color: #7c899c; font-size: 21px; }
.auth-brand-mini { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-weight: 800; }
.auth-brand-mini .cozy-brand-mark { width: 32px; height: 32px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 24px; padding: 5px; border-radius: 999px; background: #eef2f8; }
.auth-tab-btn { height: 40px; border: 0; border-radius: 999px; background: transparent; color: #778499; font-weight: 800; }
.auth-tab-btn.active { background: #fff; color: var(--blue); box-shadow: 0 8px 18px rgba(72,91,142,.09); }
.auth-form-wrapper { display: none; }
.auth-form-wrapper.active { display: block; }
.form-header h3 { margin: 0 0 6px; font-size: 26px; letter-spacing: -.045em; }
.form-header p { margin: 0 0 18px; color: #7a879d; font-size: 13px; }
.social-btn { width: 100%; height: 48px; border: 1px solid #d9e3f2; border-radius: 14px; background: #fff; color: var(--ink); font-weight: 800; }
.auth-divider { display: flex; align-items: center; gap: 10px; margin: 18px 0; color: #9aa5b5; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.auth-divider::before, .auth-divider::after { content: ''; height: 1px; flex: 1; background: #e3e9f2; }
.auth-form-wrapper form { display: grid; gap: 14px; }
.auth-form-wrapper form > label { display: grid; gap: 7px; color: #55637a; font-size: 11px; font-weight: 800; }
.auth-form-wrapper input[type='text'], .auth-form-wrapper input[type='email'], .auth-form-wrapper input[type='password'] { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #d9e2f0; border-radius: 14px; background: #fff; color: var(--ink); outline: none; }
.auth-form-wrapper input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(76,120,241,.10); }
.auth-check { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; font-weight: 600 !important; line-height: 1.5; }
.auth-check input { margin-top: 3px; }
.auth-form-wrapper .cozy-button { width: 100%; }

/* Reveal motion */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes cozy-draw-line { to { stroke-dashoffset: 0; } }
@keyframes cozy-editor-enter { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: translateY(4px) scale(1); } }
@keyframes cozy-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes cozy-plane { 0%,100% { transform: translate(0,0) rotate(-12deg); } 50% { transform: translate(18px,-12px) rotate(-5deg); } }
@keyframes cozy-twinkle { 0%,100% { opacity: .35; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(18deg); } }

/* Responsive */
@media (max-width: 1120px) {
  .cozy-nav { grid-template-columns: auto 1fr auto; }
  .cozy-nav-links { justify-content: center; gap: 18px; }
  .cozy-hero-grid { grid-template-columns: minmax(0, .85fr) minmax(490px, 1.15fr); gap: 30px; }
  .cozy-product-stage { transform: scale(.92); transform-origin: center; margin-inline: -25px; }
  .cozy-template-track { grid-template-columns: repeat(3, 1fr); }
  .cozy-feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cozy-nav { min-height: 68px; grid-template-columns: 1fr auto; }
  .cozy-nav-links, .cozy-nav-actions { display: none; }
  .cozy-mobile-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; border: 1px solid #dce5f3; border-radius: 13px; background: #fff; }
  .cozy-mobile-toggle span { width: 20px; height: 2px; border-radius: 999px; background: var(--ink); }
  .cozy-mobile-panel { padding: 14px 24px 20px; border-top: 1px solid #e4eaf4; background: #fff; }
  .cozy-mobile-panel:not([hidden]) { display: grid; gap: 6px; }
  .cozy-mobile-panel > a { padding: 11px 8px; text-decoration: none; font-weight: 700; }
  .cozy-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
  .cozy-hero { padding-top: 54px; }
  .cozy-hero-grid { grid-template-columns: 1fr; }
  .cozy-hero-copy { max-width: 680px; padding-left: 0; text-align: center; margin-inline: auto; }
  .cozy-trust-pill { margin-inline: auto; }
  #cozy-hero-title { margin-inline: auto; }
  .cozy-hero-lede { margin-inline: auto; }
  .cozy-hero-actions { justify-content: center; }
  .cozy-product-stage { transform: none; margin: 20px auto 0; width: min(100%, 700px); }
  .cozy-capability-row { grid-template-columns: repeat(3, 1fr); }
  .cozy-step-grid { grid-template-columns: 1fr; }
  .cozy-step-card > b { display: none; }
  .cozy-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cozy-faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .cozy-final-cta-card { grid-template-columns: 1fr; text-align: center; }
  .cozy-final-cta-card .cozy-button { justify-self: center; }
  .cozy-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .cozy-shell { width: min(100% - 28px, 1240px); }
  .cozy-section { padding: 66px 0; }
  #cozy-hero-title { font-size: clamp(45px, 13vw, 62px); }
  .cozy-hero-lede { font-size: 15px; }
  .cozy-hero-actions { display: grid; grid-template-columns: 1fr; }
  .cozy-product-stage { min-height: 485px; margin-top: 8px; }
  .cozy-editor-window { width: 94%; border-radius: 22px; }
  .cozy-editor-body { min-height: 360px; grid-template-columns: 58px 1fr; }
  .cozy-editor-tools { padding: 10px 6px; }
  .cozy-editor-tools button { min-height: 44px; border-radius: 10px; }
  .cozy-editor-tools button small { display: none; }
  .cozy-resume-paper { width: calc(100% - 22px); min-height: 324px; margin: 12px auto; padding: 19px 18px; font-size: 7px; }
  .cozy-resume-header h2 { font-size: 19px; }
  .cozy-contact-row span:nth-child(3) { display: none; }
  .cozy-score-card { right: -2px; top: 170px; width: 118px; padding: 12px; transform: scale(.9); transform-origin: right center; }
  .cozy-autosave-card { right: 24px; bottom: 10px; }
  .cozy-doodle-plane { left: 5%; }
  .cozy-capability-row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .cozy-capability-row > div { padding: 8px; }
  .cozy-capability-row > div:last-child { grid-column: 1 / -1; justify-content: center; }
  .cozy-section-heading { align-items: start; flex-direction: column; }
  .cozy-template-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 18px; }
  .cozy-template-card { min-width: 72%; scroll-snap-align: start; }
  .cozy-soft-panel { padding: 26px 18px; border-radius: 26px; }
  .cozy-feature-grid { grid-template-columns: 1fr; }
  .pricing-plans-grid { grid-template-columns: 1fr !important; }
  .pricing-card { min-height: auto; padding: 26px; }
  .cozy-final-cta-card { padding: 36px 22px; border-radius: 24px; }
  .cozy-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cozy-footer-grid > div:first-child { grid-column: 1 / -1; }
  .cozy-footer-bottom { flex-direction: column; }
  .auth-modal-container { padding: 26px 20px; border-radius: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .cozy-script-word svg path { stroke-dashoffset: 0; }
}
