/* ============================================================
   VÍTĚZSLAV JANÍK — Bulletproof premium dark theme
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --bg: #05070d;
  --bg-card: #0d121c;
  --bg-elevated: #11172278;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e7ecf3;
  --text-muted: #9aa3b2;
  --text-dim: #6b7385;
  --ink: #f8fafc;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --accent-deep: #0ea5e9;
  --accent-glow: rgba(125, 211, 252, 0.35);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  --container: 1120px;
  --container-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2rem);

  --header-h: 64px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

body.menu-open { overflow: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--accent-strong);
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #38BDF8, #7DD3FC, #0EA5E9);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
  z-index: 10000;
  transition: width 0.08s linear;
  pointer-events: none;
  will-change: width;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { transition: none; }
}

/* ===== SCROLL-SPY (active nav link) ===== */
.header__nav a.is-active,
.mobile-menu a.is-active {
  color: var(--accent-strong);
}
.header__nav a.is-active::after,
.mobile-menu a.is-active::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, #38BDF8, #7DD3FC);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}
.mobile-menu a.is-active::after {
  margin-left: auto;
  margin-right: auto;
}
/* Buttons should NOT show the active underline */
.header__nav a.btn.is-active::after,
.mobile-menu a.btn.is-active::after { display: none; }

/* ===== COUNTER (animated number) ===== */
.counter {
  display: inline-block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #7DD3FC 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(56, 189, 248, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(14, 165, 233, 0.06), transparent 60%);
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.bg__orb--1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.6), transparent 70%);
  animation: orbFloat1 22s ease-in-out infinite alternate;
}

.bg__orb--2 {
  width: 600px;
  height: 600px;
  bottom: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4), transparent 70%);
  animation: orbFloat2 28s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  to { transform: translate(10%, 10%) scale(1.15); }
}
@keyframes orbFloat2 {
  to { transform: translate(-10%, -10%) scale(0.9); }
}

.bg__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(125,211,252,0.7), transparent),
    radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 65% 85%, rgba(125,211,252,0.5), transparent),
    radial-gradient(1px 1px at 80% 25%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(125,211,252,0.5), transparent),
    radial-gradient(1px 1px at 20% 88%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 45% 50%, rgba(125,211,252,0.5), transparent),
    radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,0.5), transparent);
  animation: starsTwinkle 6s ease-in-out infinite;
}

@keyframes starsTwinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .bg__orb, .bg__stars { animation: none; }
}

/* ===== HEADER (transparent — floating pills) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding-top: env(safe-area-inset-top, 0px);
  pointer-events: none; /* let clicks pass through bare areas */
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.65rem clamp(0.75rem, 2.5vw, 1.5rem);
  height: var(--header-h);
}

/* Re-enable interactions on actual pills */
.header__logo,
.header__nav,
.header__toggle {
  pointer-events: auto;
}

/* ===== Floating VJ pill ===== */
.header__logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.header__logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  background: linear-gradient(135deg,
    rgba(56, 189, 248, 0.28) 0%,
    rgba(14, 165, 233, 0.12) 100%);
  border: 1px solid rgba(125, 211, 252, 0.5);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 28px rgba(0, 0, 0, 0.45),
    0 4px 16px rgba(56, 189, 248, 0.25);
  text-shadow:
    0 0 12px rgba(125, 211, 252, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s, box-shadow 0.2s, text-shadow 0.2s;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .header__logo-text {
    background: linear-gradient(135deg,
      rgba(56, 189, 248, 0.18) 0%,
      rgba(14, 165, 233, 0.08) 100%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
  }
}

.header__logo:hover .header__logo-text,
.header__logo:focus-visible .header__logo-text {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 4px 22px rgba(56, 189, 248, 0.45);
  text-shadow:
    0 0 18px rgba(125, 211, 252, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.6);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.header__nav a:not(.btn):hover {
  color: var(--ink);
}

/* ===== Floating burger pill ===== */
.header__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
    rgba(20, 26, 38, 0.7) 0%,
    rgba(8, 11, 20, 0.5) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .header__toggle {
    background: linear-gradient(135deg,
      rgba(20, 26, 38, 0.45) 0%,
      rgba(8, 11, 20, 0.3) 100%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
  }
}

.header__toggle:hover,
.header__toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.5);
}

.header__toggle:active {
  transform: translateY(0);
}

.header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

body.menu-open .header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .header__toggle span:nth-child(2) {
  opacity: 0;
}
body.menu-open .header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU (sibling of header — truly viewport fixed) ===== */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 999;
  flex-direction: column;
  padding: 1.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom, 0px));
  background: #050810;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}

body.menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu a:not(.btn) {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* Mobile breakpoint */
@media (max-width: 820px) {
  .header__nav { display: none; }
  .header__toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
}

/* ===== LAYOUT ===== */
main, .footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-deep));
  color: #021018;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-strong);
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--center {
  display: flex;
  justify-content: center;
  color: var(--text-dim);
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow__dot { animation: none; }
}

/* ===== HERO ===== */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.hero .eyebrow {
  margin: 0 auto 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.75rem;
  max-width: 18ch;
  margin-inline: auto;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__text {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 auto 1.25rem;
}

.hero__text strong {
  color: var(--ink);
  font-weight: 500;
}

.hero__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--accent);
  margin: 0 auto 2.5rem;
  max-width: 30ch;
}

.hero__cta {
  display: flex;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.5vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: center;
  margin: 0 0 1.25rem;
}

.section__lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}

.closer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  margin: 2rem 0;
  line-height: 1.55;
}

.highlight {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.08), rgba(14, 165, 233, 0.03));
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-left: 3px solid var(--accent-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

/* ===== CARDS (bullet list) ===== */
.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  padding-left: 3rem;
}

.card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 10px var(--accent-glow);
}

.card__title {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.02rem;
}

.card__text {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  padding: 1rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

/* ===== BRAND LINKS (Evigilans / Seth logos) ===== */
.brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.brand-link img {
  display: block;
  width: auto;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(125, 211, 252, 0.25));
  transition: filter 0.2s;
}

.brand-link__hint {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.brand-link:hover,
.brand-link:focus-visible {
  transform: translateY(-2px);
}

.brand-link:hover img,
.brand-link:focus-visible img {
  filter: drop-shadow(0 6px 24px rgba(125, 211, 252, 0.45));
}

.brand-link:hover .brand-link__hint,
.brand-link:focus-visible .brand-link__hint {
  color: var(--accent);
}

/* Evigilans logo — standalone, centered above the Seth feature card */
.brand-link--evigilans {
  display: flex;
  margin: 2.5rem auto 1.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 320px;
  position: relative;
}

.brand-link--evigilans::before {
  content: "Více o projektu";
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.15rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg);
  border-radius: 99px;
}

.brand-link--evigilans img {
  max-width: 180px;
  max-height: 80px;
  /* The image is on dark background — invert if needed */
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(125, 211, 252, 0.25));
}

.brand-link--evigilans:hover img,
.brand-link--evigilans:focus-visible img {
  filter: brightness(0) invert(1) drop-shadow(0 6px 24px rgba(125, 211, 252, 0.5));
}

/* Seth logo — inside the feature card, horizontal layout */
.brand-link--seth {
  display: flex;
  margin: 0.25rem 0 1.5rem;
  align-items: flex-start;
}

.brand-link--seth img {
  max-width: 220px;
  max-height: 60px;
}

@media (max-width: 480px) {
  .brand-link--evigilans {
    padding: 1.25rem 1.5rem;
    max-width: 100%;
  }
  .brand-link--evigilans img {
    max-width: 150px;
    max-height: 70px;
  }
  .brand-link--seth img {
    max-width: 180px;
    max-height: 50px;
  }
}

/* ===== FEATURE (Seth app card) ===== */
.feature {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.07), rgba(56, 189, 248, 0.02));
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.feature__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--ink);
  margin: 0 0 0.85rem;
}

.feature__text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

.feature__text strong {
  color: var(--ink);
}

.feature__footer {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.55;
}

.feature__footer strong {
  color: var(--ink);
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-deep));
  color: #021018;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 0.2rem;
}

/* ===== TIMELINE ===== */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline li {
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-strong);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.timeline li strong {
  color: var(--ink);
  margin-right: 0.5rem;
}

/* ===== ABOUT ===== */
.about {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about p {
  margin: 0 0 1.25rem;
}

.about strong {
  color: var(--ink);
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.simple-list li {
  padding: 0.75rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}

.simple-list li:last-child {
  border-bottom: none;
}

.simple-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.06), transparent);
  border-left: 3px solid var(--accent-strong);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.5;
}

.signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ===== CTA SECTION ===== */
.section--cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(125, 211, 252, 0.15);
  border-bottom: 1px solid rgba(125, 211, 252, 0.15);
}

.choice {
  margin: 2.5rem 0;
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.choice__item {
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 500;
}

.choice__item--no {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--text-dim);
}

.choice__item--yes {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 0.05));
  border: 1px solid var(--accent-strong);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.15);
}

.choice__or {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0;
}

/* ===== CONTACT ACTIONS ===== */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== CONTACT CARD ===== */
.contact-card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  gap: 0.85rem;
}

.contact-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.contact-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}

.contact-card__value:hover {
  color: var(--accent);
}

@media (max-width: 480px) {
  .contact-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .contact-card__value {
    font-size: 1.15rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  margin-top: clamp(2rem, 6vw, 4rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 calc(clamp(2rem, 5vw, 3rem) + env(safe-area-inset-bottom, 0px));
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 13, 0.6) 60%);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(125, 211, 252, 0.2) 20%,
    var(--accent-strong) 50%,
    rgba(125, 211, 252, 0.2) 80%,
    transparent 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.3);
  pointer-events: none;
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.footer__tagline em {
  font-style: italic;
  color: var(--accent);
}

.footer__brand {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #021018;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-deep));
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.menu-open .sticky-cta {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 820px) {
  .sticky-cta { display: flex; }
}
