/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0b0c10;
  --bg-alt:     #0f1117;
  --panel:      rgba(255, 255, 255, 0.05);
  --panel-hover:rgba(255, 255, 255, 0.08);
  --border:     rgba(255, 255, 255, 0.08);
  --text:       #f0f0f5;
  --muted:      rgba(235, 235, 245, 0.55);
  --muted2:     rgba(235, 235, 245, 0.35);
  --blue:       #0a84ff;
  --cyan:       #64d2ff;
  --green:      #30d158;
  --purple:     #bf5af2;
  --orange:     #ff9f0a;
  --pink:       #ff375f;
  --yellow:     #ffd60a;
  --red:        #ff453a;
  --shadow:     0 8px 32px rgba(0, 0, 0, 0.45);
}

html { scroll-behavior: smooth; }

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

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

em { font-style: italic; color: var(--cyan); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 132, 255, 0.35);
}
.btn--primary:hover {
  background: #1a8fff;
  box-shadow: 0 6px 28px rgba(10, 132, 255, 0.5);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--panel);
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}
.btn--nav {
  background: rgba(10, 132, 255, 0.12);
  color: var(--blue);
  border: 1px solid rgba(10, 132, 255, 0.25);
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 10px;
}
.btn--nav:hover { background: rgba(10, 132, 255, 0.2); }
.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 14px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.nav__logo--sm { width: 26px; height: 26px; font-size: 13px; border-radius: 6px; }
.nav__name { font-weight: 700; font-size: 18px; color: var(--text); }
.nav__links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--text); background: var(--panel); }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
  text-align: center;
}
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.15;
}
.hero__glow--left  { background: var(--blue);   top: -150px; left: -150px; }
.hero__glow--right { background: var(--purple); top: -100px; right: -150px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: rgba(100, 210, 255, 0.1);
  border: 1px solid rgba(100, 210, 255, 0.2);
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(44px, 7.5vw, 86px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__accent {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__note { font-size: 12px; color: var(--muted2); }

/* ── Strip ── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-alt);
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.strip__item { font-size: 13px; font-weight: 500; color: var(--muted); }
.strip__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ── Sections ── */
.section { padding: 100px 0; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__header { text-align: center; margin-bottom: 64px; }
.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Problem section ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.problem-card {
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}
.problem-card--bad  { background: rgba(255, 69, 58, 0.04);  border-color: rgba(255, 69, 58, 0.15); }
.problem-card--good { background: rgba(48, 209, 88, 0.04);  border-color: rgba(48, 209, 88, 0.15); }
.problem-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 20px;
}
.problem-card__label--bad  { background: rgba(255, 69, 58, 0.12);  color: var(--red);   border: 1px solid rgba(255, 69, 58, 0.25); }
.problem-card__label--good { background: rgba(48, 209, 88, 0.12);  color: var(--green); border: 1px solid rgba(48, 209, 88, 0.25); }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problem-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.problem-list__item--good { color: var(--text); }
.problem-list__icon {
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 1px;
  font-weight: 700;
}
.problem-list__item--bad  .problem-list__icon { color: var(--red);   }
.problem-list__item--good .problem-list__icon { color: var(--green); }

/* ── Feature cards ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.16);
  background: var(--panel-hover);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon--blue   { background: rgba(10,  132, 255, 0.12); color: var(--blue);   }
.feature-card__icon--purple { background: rgba(191,  90, 242, 0.12); color: var(--purple); }
.feature-card__icon--green  { background: rgba(48,  209,  88, 0.12); color: var(--green);  }
.feature-card__icon--cyan   { background: rgba(100, 210, 255, 0.12); color: var(--cyan);   }
.feature-card__icon--yellow { background: rgba(255, 214,  10, 0.12); color: var(--yellow); }
.feature-card__icon--pink   { background: rgba(255,  55,  95, 0.12); color: var(--pink);   }
.feature-card__icon--orange { background: rgba(255, 159,  10, 0.12); color: var(--orange); }
.feature-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card__body  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── How it works ── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 290px;
  text-align: center;
  padding: 32px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.step__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.step__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step__body  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step__arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  align-self: center;
  flex-shrink: 0;
}

/* ── Example box ── */
.example-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.example-box__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  margin-bottom: 12px;
}
.example-box__text {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 16px;
}
.example-box__arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}
.example-box__output {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.example-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
}
.example-tag--folder   { background: rgba(100,210,255,0.1); color: var(--cyan);   border: 1px solid rgba(100,210,255,0.2); }
.example-tag--type     { background: rgba(191,90,242,0.1);  color: var(--purple); border: 1px solid rgba(191,90,242,0.2); }
.example-tag--priority { background: rgba(255,69,58,0.1);   color: var(--red);    border: 1px solid rgba(255,69,58,0.2); }
.example-tag--due      { background: rgba(48,209,88,0.1);   color: var(--green);  border: 1px solid rgba(48,209,88,0.2); }

/* ── Audience ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.audience-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
}
.audience-card--featured {
  border-color: rgba(10, 132, 255, 0.4);
  background: rgba(10, 132, 255, 0.05);
}
.audience-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.audience-card__emoji { font-size: 32px; margin-bottom: 16px; display: block; }
.audience-card__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.audience-card__body  { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.audience-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.audience-card__list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.audience-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ── CTA section ── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 110px 0;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__glow {
  position: absolute;
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(10, 132, 255, 0.18), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.cta-section__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-section__sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__note { font-size: 12px; color: var(--muted2); margin-top: 18px; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-alt);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer__name { font-weight: 700; font-size: 16px; }
.footer__tagline { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.footer__copy   { font-size: 12px; color: var(--muted2); }
.footer__right  { display: flex; gap: 48px; }
.footer__col    { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  margin-bottom: 4px;
}
.footer__link { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.footer__link:hover { color: var(--text); }

/* ── Scroll animations ── */
[data-animate],
[data-animate-child] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].is-visible,
[data-animate-child].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav active link ── */
.nav__link--active { color: var(--text); background: var(--panel); }

/* ── Preview section ── */
.preview-section {
  padding: 48px 0 96px;
  text-align: center;
}
.preview-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted2);
  margin-bottom: 32px;
}
.preview-wrap { perspective: 1200px; }
.preview-card {
  max-width: 940px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  transform-origin: center top;
  will-change: transform, opacity;
}

/* ── Dashboard mockup ── */
.mockup {
  display: grid;
  grid-template-columns: 190px 1fr 152px;
  height: 420px;
  text-align: left;
}

/* Sidebar */
.mockup__sidebar {
  background: rgba(255,255,255,0.025);
  border-right: 1px solid var(--border);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}
.mockup__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mockup__logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.mockup__brand-name { font-size: 14px; font-weight: 700; color: var(--text); }
.mockup__sidebar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted2);
  padding: 6px 4px 2px;
}
.mockup__folder {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup__folder--active { background: rgba(10,132,255,0.12); color: var(--blue); }
.mockup__folder--completed { color: var(--muted2); }
.mockup__folder-icon { flex-shrink: 0; font-size: 10px; }
.mockup__folder-count {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  color: var(--muted2);
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
}

/* Main column */
.mockup__main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
}
.mockup__section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.mockup__count-badge {
  background: rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.mockup__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-left-width: 3px;
  border-radius: 10px;
  padding: 9px 13px;
}
.mockup__card--high    { border-left-color: var(--red); }
.mockup__card--med     { border-left-color: var(--yellow); }
.mockup__card--overdue { background: rgba(255,69,58,0.06); }
.mockup__card-title {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup__card-meta { display: flex; align-items: center; gap: 8px; }
.mockup__chip {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
}
.mockup__chip--overdue { background: rgba(255,69,58,0.15); color: var(--red); }
.mockup__due { font-size: 10px; color: var(--cyan); font-weight: 500; }
.mockup__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: auto;
}
.mockup__badge--high { background: rgba(255,69,58,0.15);  color: var(--red);    }
.mockup__badge--med  { background: rgba(255,214,10,0.15); color: var(--yellow); }

/* Legend column */
.mockup__legend {
  background: rgba(255,255,255,0.02);
  border-left: 1px solid var(--border);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup__legend-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted2);
}
.mockup__streak { font-size: 18px; color: var(--text); font-weight: 700; }
.mockup__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup__dot--high { background: var(--red);    }
.mockup__dot--med  { background: var(--yellow); }
.mockup__dot--low  { background: var(--green);  }

/* ── Creator / About page ── */
@property --ring-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.creator-section {
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
/* Gradient top border */
.creator-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}
/* Radial glow behind content */
.creator-section::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(circle at 50% 30%, rgba(10,132,255,0.08), transparent 60%);
  pointer-events: none;
}

/* Floating background blobs */
.creator-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.06;
}
.creator-blob--1 { width: 200px; height: 200px; background: var(--blue);   top: 10%; right: 12%; animation: blob-float 9s ease-in-out infinite; }
.creator-blob--2 { width: 150px; height: 150px; background: var(--cyan);   bottom: 18%; left: 8%; animation: blob-float 11s ease-in-out infinite reverse; }
.creator-blob--3 { width: 100px; height: 100px; background: var(--purple); top: 55%; left: 38%; animation: blob-float 13s ease-in-out infinite 2s; }
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(14px, -18px); }
}

.creator-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.creator-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(100,210,255,0.3);
  margin-bottom: 14px;
}

/* Heading */
.creator-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.creator-for-students {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Name & meta */
.creator-name-text { font-size: 15px; font-weight: 700; color: var(--blue); }
.creator-meta {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 32px;
  line-height: 1.6;
}
.creator-meta-dots { font-size: 13px; color: var(--muted2); }

/* Body text */
.creator-body { max-width: 580px; }
.creator-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.creator-intro {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 24px !important;
}
.creator-highlight {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  font-style: normal;
  text-align: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0 !important;
  margin: 8px 0 24px !important;
}

/* Inline phrase emphasis */
.em-cyan    { color: var(--cyan); text-shadow: 0 0 12px rgba(100,210,255,0.22); }
.em-blue    { color: var(--blue); }
.em-bold    { font-weight: 700; }
.em-semibold{ font-weight: 600; }

/* Feedback & connect */
.creator-feedback {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.creator-connect-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
}

/* Contact links */
.creator-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  transition: all 0.2s ease;
}
.creator-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: var(--panel-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.creator-link--email:hover    { border-color: rgba(100,210,255,0.4); color: var(--cyan); box-shadow: 0 8px 24px rgba(100,210,255,0.15); }
.creator-link--discord:hover  { border-color: rgba(114,137,218,0.5); color: #7289da;     box-shadow: 0 8px 24px rgba(114,137,218,0.15); }
.creator-link--twitter:hover  { border-color: rgba(29,161,242,0.4);  color: #1da1f2;    box-shadow: 0 8px 24px rgba(29,161,242,0.15);  }
.creator-link--linkedin:hover  { border-color: rgba(10,102,194,0.5);  color: #0a66c2;    box-shadow: 0 8px 24px rgba(10,102,194,0.15);  }
.creator-link--instagram:hover { border-color: rgba(225,48,108,0.5);  color: #e1306c;    box-shadow: 0 8px 24px rgba(225,48,108,0.15);  }
.creator-note { font-size: 12px; color: var(--muted2); }

/* Photo column */
.creator-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.creator-photo-ring {
  border-radius: 26px;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-alt), var(--bg-alt)) padding-box,
    conic-gradient(from var(--ring-angle), var(--blue) 0%, var(--cyan) 40%, var(--purple) 70%, var(--blue) 100%) border-box;
  animation: ring-spin 8s linear infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 40px rgba(10,132,255,0.18);
}
.creator-photo-ring:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 56px rgba(10,132,255,0.32);
}
@keyframes ring-spin { to { --ring-angle: 360deg; } }

.creator-photo {
  width: 420px;
  height: 315px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.creator-photo-label {
  font-size: 12px;
  color: var(--muted2);
  text-align: center;
}

/* Directional scroll animations */
[data-animate="from-left"]  { transform: translateX(-36px); }
[data-animate="from-right"] { transform: translateX(36px); }
[data-animate="from-left"].is-visible,
[data-animate="from-right"].is-visible { transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer__right { display: none; }
  .mockup__legend { display: none; }
  .mockup { grid-template-columns: 160px 1fr; }
  .creator-layout { grid-template-columns: 1fr 340px; gap: 40px; }
  .creator-photo { width: 320px; height: 240px; }
  .creator-body { max-width: none; }
}
@media (max-width: 640px) {
  .hero { padding: 72px 0 56px; }
  .section { padding: 64px 0; }
  .step__arrow { display: none; }
  .steps { gap: 12px; }
  .step { max-width: 100%; }
  .strip__dot { display: none; }
  .features { grid-template-columns: 1fr; }
  .mockup__sidebar { display: none; }
  .mockup { grid-template-columns: 1fr; }
  .mockup__card { min-width: 0; }
  .preview-section { padding: 32px 0 64px; }
  .creator-layout { grid-template-columns: 1fr; gap: 36px; }
  .creator-photo-wrap { order: -1; }
  .creator-photo { width: 100%; max-width: 360px; height: 270px; }
  .creator-section { padding: 60px 0; }
  .creator-intro { font-size: 17px !important; }
  .creator-body p { font-size: 15px; }
  .creator-highlight { font-size: 17px !important; }
  .creator-contact { flex-direction: column; }
  .creator-link { justify-content: center; min-height: 48px; }
}
