/* ===================================================================
   Clent Mendelebar — Virtual Assistance / AI Consulting / Lead Gen
   =================================================================== */

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

:root {
  --bg: #0A0B08;
  --bg-alt: #111209;
  --bg-elev: #171911;
  --border: rgba(242, 239, 230, 0.09);
  --border-strong: rgba(242, 239, 230, 0.16);
  --text: #F2EFE6;
  --text-dim: #C3C0B2;
  --muted: #8C8A7C;
  --accent: #E7B84B;
  --accent-soft: rgba(231, 184, 75, 0.12);
  --accent-strong: rgba(231, 184, 75, 0.35);
  --accent-ink: #241A05;
  --rust: #C9744F;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button { font-family: inherit; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
}

.section {
  position: relative;
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.75;
}

.muted { color: var(--muted); }

/* corner marks — echoes the reference layout's crosshair grid */
.corners { position: relative; }
.corners::before, .corners::after,
.corners .cnr-tl, .corners .cnr-tr, .corners .cnr-bl, .corners .cnr-br { content: none; }
.cnr {
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  pointer-events: none;
}
.cnr-tl { top: -5px; left: -5px; }
.cnr-tr { top: -5px; right: -5px; }
.cnr-bl { bottom: -5px; left: -5px; }
.cnr-br { bottom: -5px; right: -5px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  box-shadow: 0 0 0 6px var(--accent-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translate(3px, -2px); }

/* success state: arrow swaps for a checkmark that draws itself in */
.btn-icon-check {
  display: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.btn.is-success { animation: btn-pop .45s var(--ease); }
.btn.is-success .btn-icon-arrow { display: none; }
.btn.is-success .btn-icon-check {
  display: block;
  animation: check-draw .45s .05s var(--ease) forwards;
}
@keyframes check-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes btn-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.045); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .btn.is-success { animation: none; }
  .btn.is-success .btn-icon-check { animation: none; stroke-dashoffset: 0; }
}

/* ---------- nav ---------- */
#nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1160px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(10, 11, 8, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color .3s ease, background-color .3s ease;
}
#nav.scrolled { border-color: var(--border-strong); background: rgba(10, 11, 8, 0.92); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand em { font-style: italic; color: var(--accent); }
.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.ham span {
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 900px) { .ham { display: none; } }
@media (max-width: 899px) { .nav-links { display: none; } }

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(10, 11, 8, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  text-decoration: none;
  color: var(--text);
}

/* ---------- hero ---------- */
#hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  margin-bottom: 30px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-strong);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(231,184,75,.5); }
  70% { box-shadow: 0 0 0 7px rgba(231,184,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(231,184,75,0); }
}

.hero-h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.04;
}
.hero-h1 i { font-style: italic; color: var(--accent); font-weight: 500; }

.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-note {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
}

.hero-photo-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  padding: 18px 18px 0;
  background: radial-gradient(circle at 50% 34%, rgba(231,184,75,.14), transparent 62%), var(--bg-elev);
  border: 1px solid var(--border-strong);
  transition: transform .5s var(--ease);
  will-change: transform;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.02) contrast(1.03);
}
.hero-photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  text-align: center; padding: 30px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  background: radial-gradient(circle at 50% 30%, rgba(231,184,75,.12), transparent 60%);
}
.hero-photo img[src=""], .hero-photo img:not([src]) { display: none; }

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}
.hero-badge .lbl { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.hero-badge .val { font-family: var(--serif); font-size: 1.2rem; color: var(--accent); }
@media (max-width: 500px) { .hero-badge { left: 0; bottom: -18px; padding: 12px 16px; } }

.glow {
  position: absolute;
  width: 640px; height: 640px;
  top: -260px; right: -220px;
  background: radial-gradient(circle, rgba(231,184,75,.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}

/* ---------- video intro ---------- */
#intro {
  padding: 90px 0;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  aspect-ratio: 16/8;
  max-width: 920px;
  margin: 0 auto;
  cursor: pointer;
}
.video-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 22%;
  filter: grayscale(.25) brightness(.55) contrast(1.05);
  transition: filter .4s ease, transform .6s var(--ease);
}
.video-frame:hover img { filter: grayscale(.1) brightness(.62) contrast(1.05); transform: scale(1.02); }
.video-play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.play-circle {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.video-frame:hover .play-circle { transform: scale(1.08); }
.play-circle svg { width: 22px; height: 22px; fill: var(--accent-ink); margin-left: 3px; }
.video-caption {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(10,11,8,.55);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
}
.video-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 300;
}
.video-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- problem ---------- */
#problem { background: var(--bg-alt); }
.problem-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) { .problem-wrap { grid-template-columns: 1fr; gap: 36px; } }

.problem-lines p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--text-dim);
}
.problem-lines p + p { margin-top: 22px; }
.problem-lines strong { color: var(--text); font-weight: 500; }

/* ---------- offer ---------- */
.offer-intro {
  max-width: 680px;
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 56px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color .3s ease, transform .3s var(--ease);
}
.offer-card:hover { border-color: var(--accent-strong); transform: translateY(-4px); }
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(231,184,75,.10), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.offer-card:hover::before { opacity: 1; }

.offer-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.offer-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.offer-card h3 { margin-bottom: 10px; }
.offer-card p { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; }

.pull-quote {
  margin-top: 56px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--text);
  max-width: 720px;
  line-height: 1.5;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.offer-cta { margin-top: 44px; }

/* ---------- process ---------- */
#process { background: var(--bg-alt); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 44px; }
}
.step {
  position: relative;
  padding: 0 32px 0 0;
}
.step:not(:last-child) { border-right: 1px solid var(--border); }
@media (max-width: 860px) { .step:not(:last-child) { border-right: none; } }

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; max-width: 300px; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 44px; } }

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-strong);
  background: var(--bg-elev);
  max-width: 380px;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 12%;
}

.about-copy p { color: var(--text-dim); font-size: 17px; line-height: 1.8; }
.about-copy p + p { margin-top: 18px; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .03em;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
}
.chip svg { width: 13px; height: 13px; stroke: var(--accent); flex-shrink: 0; }

/* ---------- proof ---------- */
.proof-quote {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 40px;
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 880px;
  margin-bottom: 56px;
}

/* ---------- faq ---------- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.15rem;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq-q .plus::before { width: 14px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 14px; }
.faq-item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p {
  padding-bottom: 26px;
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 640px;
}

/* ---------- contact / closing ---------- */
#contact { background: var(--bg-alt); }
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 48px; } }

.contact-info p { color: var(--text-dim); font-size: 17px; line-height: 1.8; margin-bottom: 36px; max-width: 420px; }

.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ic svg { width: 17px; height: 17px; stroke: var(--accent); }
.contact-detail .lbl { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-detail .val { font-size: 15px; color: var(--text); }
.contact-detail a.val { text-decoration: none; }
.contact-detail a.val:hover { color: var(--accent); }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 9px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-status { margin-top: 16px; font-family: var(--mono); font-size: 13px; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: var(--rust); }

/* ---------- closing ---------- */
#closing {
  text-align: center;
  padding: 130px 0;
}
#closing .eyebrow { justify-content: center; }
#closing h2 { max-width: 780px; margin: 0 auto; }
#closing .hero-actions { justify-content: center; margin-top: 40px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.foot-copy { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-family: var(--mono); font-size: 12.5px; text-decoration: none; color: var(--muted); transition: color .2s ease; }
.foot-links a:hover { color: var(--text); }

/* ---------- reveal-on-scroll ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; }
.rv.d2 { transition-delay: .16s; }
.rv.d3 { transition-delay: .24s; }
.rv.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .pulse-dot { animation: none; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transition: opacity .25s ease, width .25s var(--ease), height .25s var(--ease);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent-strong);
  transition: opacity .3s ease, width .3s var(--ease), height .3s var(--ease), border-color .3s ease, background-color .3s ease;
}
html.has-cursor.cursor-ready .cursor-dot,
html.has-cursor.cursor-ready .cursor-ring { opacity: 1; }
html.has-cursor .cursor-ring.is-active {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
  background: var(--accent-soft);
}
html.has-cursor .cursor-dot.is-active { opacity: 0; }

html.has-cursor, html.has-cursor * { cursor: none !important; }
html.has-cursor input,
html.has-cursor textarea,
html.has-cursor select { cursor: text !important; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
