/* =========================================================
   VLADISLAVA — design tokens
   ======================================================== == */
:root {
  --yellow: #C9A876;
  --yellow-deep: #9B7A4F;
  --yellow-soft: #E8DDC9;
  --ink: #1F1813;
  --ink-soft: #2D241B;
  --ink-mute: #7A6A57;
  --line: #DDD2BD;
  --bg: #F5EFE3;
  --bg-cream: #EAE0CD;
  --danger: #C2452D;
  --ok: #6B7E3A;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-xl: 48px;
  --r-pill: 999px;

  --shadow-sm: 0 4px 18px rgba(0,0,0,.05);
  --shadow-md: 0 12px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.12);
  --shadow-yellow: 0 18px 40px rgba(201, 168, 118, .45);

  --font-display: "Unbounded", "Archivo Black", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-script: "Caveat", "Brush Script MT", cursive;

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--yellow); color: var(--ink); }

/* Display headings */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-wrap: balance;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  user-select: none;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(201, 168, 118, .6); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn .arrow {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px) rotate(-45deg); }
.btn-dark .arrow { background: var(--yellow); color: var(--ink); }

/* Section header eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--yellow);
}
.eyebrow.outline {
  background: transparent;
  border: 1px solid var(--ink);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--ink);
  display: inline-block;
}

/* Container */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Marquee */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
  width: 100%;
}
.marquee__track {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Yellow blob bg */
.blob {
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 30% 30%, var(--yellow) 0%, rgba(201,168,118,0) 60%);
  filter: blur(10px);
  pointer-events: none;
  opacity: .9;
}

/* Forms */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 16px 18px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  /* 16px min: anything smaller makes iOS Safari auto-zoom the page on focus */
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--yellow-soft);
}
.form-field .hint {
  font-size: 12px; color: var(--ink-mute);
}

/* Avatar placeholder */
.avatar-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  color: var(--ink);
  font-weight: 800;
  font-family: var(--font-display);
  border-radius: 999px;
  text-transform: uppercase;
}

/* utility */
.flex { display: flex; }
.col { flex-direction: column; }
.center { align-items: center; justify-content: center; }
.between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.mute { color: var(--ink-mute); }
.bold { font-weight: 700; }
.upper { text-transform: uppercase; letter-spacing: .12em; }

/* Pulse dot */
.pulse-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--ok);
  display: inline-block;
}
.pulse-dot::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 999px;
  background: var(--ok);
  opacity: .3;
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0% { transform: scale(.6); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Star icon (sport burst) */
.burst {
  display: inline-block;
  color: var(--yellow);
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
}
