/* =========================================================
   Syntaxory – style.css
   Mobile-first · CSS Custom Properties · No framework
   ========================================================= */

/* === 1. CUSTOM PROPERTIES ================================ */
:root {
  /* Colors */
  --accent:       #6BA8B1;
  --accent-hover: #5a9aa4;
  --accent-soft:  rgba(107,168,177,.14);
  --accent-warm:  #E8B77B;
  --accent-warm-hover: #e0a85f;
  --ink:          #10222a;
  --muted:        #5c6c77;
  --divider:      rgba(107,168,177,.2);
  --bg-light:     #f2f8f9;
  --bg-warm:      #fff6ed;
  --white:        #ffffff;

  /* Glass */
  --glass:        rgba(255,255,255,.82);
  --glass-soft:   rgba(255,255,255,.7);
  --glass-border: rgba(107,168,177,.22);

  /* Shadows */
  --shadow-sm:    0 4px 16px rgba(16,34,42,.08);
  --shadow-md:    0 12px 38px rgba(16,34,42,.12);
  --shadow-lg:    0 18px 54px rgba(16,34,42,.20);

  /* Radii */
  --r-sm:   12px;
  --r:      20px;
  --r-lg:   28px;
  --r-pill: 999px;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Spacing */
  --pad-x:    clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 10vw, 120px);
  --card-pad: clamp(20px, 3vw, 32px);
  --gap:      clamp(16px, 2.5vw, 28px);

  /* Transition */
  --ease: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

/* === 2. RESET & BASE ===================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* === 3. TYPOGRAPHY ======================================= */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
h4 { font-size: 1rem; }

p { color: var(--muted); line-height: 1.7; }
.lead { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--muted); }

strong { font-weight: 600; color: var(--ink); }

/* === 4. LAYOUT =========================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-y);
}
.section--light { background: linear-gradient(rgba(107,168,177,.13), rgba(107,168,177,.13)), rgba(242,248,249,.75); }
.section--warm  { background: linear-gradient(rgba(232,183,123,.25), rgba(232,183,123,.25)), rgba(255,246,237,.75); }
.section--white { background: rgba(255,255,255,0.68); }

.section__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section__header h2 { margin-bottom: .6rem; }
.section__header .lead { max-width: 560px; margin-inline: auto; }

/* === 5. BUTTONS ========================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-pill);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,168,177,.38);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(107,168,177,.35);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--accent);
  color: #fff;
}

.btn--sm { padding: .55rem 1.25rem; font-size: .875rem; }
.btn--lg { padding: .9rem 2.25rem; font-size: 1.05rem; }

/* === 6. CARDS (glassmorphism) ============================ */
.card {
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: var(--card-pad);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* === 7. TOP BAR ========================================== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__contact { display: flex; align-items: center; gap: .5rem; }
.topbar__contact a { color: rgba(255,255,255,.75); transition: color 120ms; }
.topbar__contact a:hover { color: var(--accent); }
.topbar__sep { opacity: .4; }
.topbar__lang {
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
  color: rgba(255,255,255,.5);
}
.topbar__lang.is-active { color: #fff; background: rgba(107,168,177,.3); }

/* === 8. SITE HEADER ====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 200ms;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.site-header__logo { flex-shrink: 0; }
.site-header__logo img { height: 36px; width: auto; }

.site-nav { margin-left: auto; display: none; }
.site-nav__list { display: flex; align-items: center; gap: .25rem; }
.site-nav__link {
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 140ms, background 140ms;
}
.site-nav__link:hover { color: var(--ink); background: var(--accent-soft); }
.site-nav__link.is-active { color: var(--accent); font-weight: 600; }

.site-header__cta { display: none; }

/* Language dropdown */
.lang-dropdown {
  position: relative;
  display: none;
}
.lang-dropdown__toggle {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  padding: .3rem .6rem;
  border-radius: 4px;
  border: 1px solid var(--divider);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s, border-color .2s;
}
.lang-dropdown__toggle:hover { color: var(--ink); border-color: var(--muted); }
.lang-dropdown__toggle svg { transition: transform .2s; }
.lang-dropdown[aria-expanded="true"] .lang-dropdown__toggle svg,
.lang-dropdown__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + .35rem);
  right: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--divider);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: .35rem 0;
  min-width: 6rem;
  z-index: 1000;
  list-style: none;
  margin: 0;
}
.lang-dropdown__menu.is-open { display: block; }
.lang-dropdown__menu li { margin: 0; }
.lang-dropdown__menu a {
  display: block;
  padding: .4rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.lang-dropdown__menu a:hover { color: var(--ink); background: var(--accent-soft, #f0f0f0); }

/* Mobile variant */
.lang-dropdown--mobile { display: inline-block; margin-bottom: .75rem; }
.lang-dropdown--mobile .lang-dropdown__menu { left: 0; right: auto; bottom: auto; top: calc(100% + .35rem); z-index: 9999; position: absolute; }

/* === 9. HAMBURGER ======================================== */
.hamburger {
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
  transition: background 140ms;
}
.hamburger:hover { background: var(--accent-soft); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms ease, opacity 200ms;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === 10. MOBILE MENU ===================================== */
.mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--divider);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-menu.is-open { max-height: 500px; overflow: visible; }

.mobile-nav__list {
  padding: 1rem 0 .5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav__link {
  display: block;
  padding: .7rem 1rem;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--muted);
  transition: color 140ms, background 140ms;
}
.mobile-nav__link:hover, .mobile-nav__link.is-active { color: var(--accent); background: var(--accent-soft); }
.mobile-nav__cta { margin: .75rem 0 .5rem; display: inline-flex; }

/* === 11. HERO ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(107,168,177,.13), transparent 70%),
    radial-gradient(900px 700px at 85% 15%, rgba(232,183,123,.25), transparent 70%),
    linear-gradient(120deg, rgba(242,248,249,0.85) 0%, rgba(255,246,237,0.85) 100%);
  padding-block: clamp(80px, 14vw, 150px);
}

#constellation {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

#main { position: relative; z-index: 1; }

.hero__bg-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  width: var(--s, 400px);
  height: var(--s, 400px);
  top: var(--top, 20%);
  left: var(--left, 20%);
  border-radius: 50%;
  background: var(--c, rgba(107,168,177,.2));
  filter: blur(80px);
  transform: translateY(var(--shiftY, 0px));
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero__h1 { margin-bottom: 1.25rem; max-width: 1100px; }
.hero__perex {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero__note {
  font-size: .82rem;
  color: var(--muted);
  opacity: .8;
}
.hero__logo {
  margin-bottom: 1.5rem;
}
.hero__logo img { height: 72px; width: auto; margin-inline: auto; }

/* === 12. TRUST BAR ======================================= */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 2.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.trust-badge svg { color: var(--accent); flex-shrink: 0; }

/* === 13. SECTION ICON HEADER (feature/security cards) === */
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.card-icon--warm { background: rgba(232,183,123,.15); color: var(--accent-warm); }

/* === 14. COMPANY PILLARS ================================= */
.pillars-grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 640px)  { .pillars-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(3,1fr); } }

.pillar-card { display: flex; flex-direction: column; gap: .75rem; }
.pillar-card h3 { font-size: 1.15rem; }

/* === 15. PRODUCT CARDS =================================== */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  flex: 0 1 480px;
  max-width: 480px;
}
.product-card__logo { height: 28px; width: auto; }
.product-card__logo--lg { height: 48px; margin-bottom: .5rem; }
.product-card h3 { text-align: center; }
.product-card p { text-align: center; }
.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  margin-top: .25rem;
}
.badge {
  background: var(--accent-soft);
  border-radius: var(--r-pill);
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--glass-border);
}
.badge--warm { background: rgba(232,183,123,.15); color: #b07a30; border-color: rgba(232,183,123,.3); }

/* === 16. FEATURES GRID =================================== */
.features-grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4,1fr); } }

.feature-card { display: flex; flex-direction: column; }
.feature-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.feature-card p { font-size: .9rem; }
.feature-note { font-size: .8rem; color: var(--muted); margin-top: 1.5rem; text-align: center; }

/* === 17. 3-STEP PROCESS ================================== */
.steps-grid {
  display: grid;
  gap: var(--gap);
  position: relative;
}
@media (min-width: 820px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(33.33% + 10px);
    right: calc(33.33% + 10px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    opacity: .35;
    pointer-events: none;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.step-card__num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-card__num--warm { background: var(--accent-warm); }
.step-card h3 { font-size: 1.05rem; }
.step-card p { font-size: .9rem; }

/* === 18. USE CASES ======================================= */
.usecases-grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 600px)  { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usecases-grid { grid-template-columns: repeat(4, 1fr); } }

.usecase-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.usecase-card h3 { font-size: 1rem; margin: 0; }
.usecase-card p  { font-size: .875rem; margin: 0; }

.usecase-highlight {
  margin-top: auto;
  padding: .6rem .875rem;
  background: rgba(232,183,123,.15);
  border-left: 3px solid var(--accent-warm);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .82rem;
  color: var(--ink);
  font-weight: 500;
}

/* === 19. SCREENSHOT SHOWCASE ============================== */
.scr-showcase {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}

.scr-row {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 3rem;
  align-items: center;
}
.scr-row--flip {
  grid-template-columns: 42fr 58fr;
}
.scr-row--flip .scr-img-wrap { order: 2; }
.scr-row--flip .scr-text     { order: 1; }

/* Image wrapper – decorative offset frame */
.scr-img-wrap {
  position: relative;
}
.scr-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid var(--accent);
  opacity: .18;
  z-index: -1;
}
.scr-row:nth-child(odd)  .scr-img-wrap::after { transform: rotate(2deg)  translate(8px, 8px); }
.scr-row:nth-child(even) .scr-img-wrap::after { transform: rotate(-2deg) translate(-8px, 6px); }

.scr-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(16,34,42,.22);
}

/* Per-row subtle transforms for off-grid feel */
.scr-row:nth-child(1) .scr-img-wrap img { transform: rotate(-1.5deg) translateY(-10px); }
.scr-row:nth-child(2) .scr-img-wrap img { transform: rotate(1deg)    translateY(8px); }
.scr-row:nth-child(3) .scr-img-wrap img { transform: rotate(-0.8deg) translateY(-4px); }
.scr-row:nth-child(4) .scr-img-wrap img { transform: rotate(1.5deg)  translateY(6px); }

/* Text side */
.scr-text { padding: .5rem 0; }

.scr-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .16;
  line-height: 1;
  margin-bottom: .2rem;
  letter-spacing: -.03em;
}
.scr-text h3 {
  font-size: 1.35rem;
  margin-bottom: .65rem;
  color: var(--ink);
}
.scr-text p {
  color: var(--muted);
  line-height: 1.75;
  font-size: .95rem;
}

@media (max-width: 819px) {
  .scr-row,
  .scr-row--flip             { grid-template-columns: 1fr; gap: 1.5rem; }
  .scr-row--flip .scr-img-wrap,
  .scr-row--flip .scr-text   { order: unset; }
  .scr-row:nth-child(n) .scr-img-wrap img { transform: none; }
  .scr-row:nth-child(n) .scr-img-wrap::after { display: none; }
  .scr-num                   { font-size: 2.5rem; }
}

/* === 20. PRICING ========================================= */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: rgba(107,168,177,.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  width: fit-content;
}
.pricing-toggle__btn {
  padding: .45rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--ease);
}
.pricing-toggle__btn.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding: var(--card-pad);
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-warm);
  color: #fff;
  padding: .2rem .9rem;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pricing-card__volume {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
}
.pricing-price {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.pricing-period { font-size: .9rem; font-weight: 500; color: var(--muted); }
.pricing-per-ns { font-size: .82rem; color: var(--muted); }
.pricing-saving {
  display: inline-block;
  background: rgba(72,180,97,.15);
  color: #2a8a45;
  border-radius: var(--r-sm);
  padding: .3rem .65rem;
  font-size: .78rem;
  font-weight: 700;
}
.pricing-divider { height: 1px; background: var(--divider); margin: .25rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: .5rem; margin-top: .25rem; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted);
}
.pricing-feature::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236BA8B1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note-global {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 1.5rem;
}
.pricing-cta-wrap { text-align: center; margin-top: 2.5rem; }

/* === 21. COMPARISON TABLE ================================ */
.comparison-table { display: flex; flex-direction: column; gap: var(--gap); }

.comparison-row {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .comparison-row { grid-template-columns: 1.1fr repeat(3, 1fr); } }

/* Desktop: unified grid so columns align between both rows */
@media (min-width: 600px) {
  .comparison-table {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    column-gap: var(--gap);
    row-gap: calc(var(--gap) * 1.5);
  }
  .comparison-row { display: contents; }
}

/* Cells – base */
.cmp-cell {
  border-radius: var(--r);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: .45rem;
  text-align: center;
}

/* Row 1 – Syntax */
.comparison-row--syntax .cmp-cell {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}
.cmp-cell--label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-cell--label img { width: 178px; height: 108px; object-fit: contain; flex-shrink: 0; }
.cmp-plan-name { font-size: 1.75rem; font-weight: 800; color: var(--accent); }
.cmp-ns                          { font-size: .85rem; color: var(--muted); }
.comparison-row--conv .cmp-ns   { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.cmp-price     { font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.cmp-period    { font-size: .75em; font-weight: 400; }
.cmp-per-ns    { font-size: .82rem; color: var(--muted); }
.cmp-cell--featured {
  position: relative;
  border-color: var(--accent) !important;
  border-width: 2px !important;
}
.cmp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-warm);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: .2rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Row 2 – Konvenční */
.comparison-row--conv .cmp-cell {
  background: #fff;
  border: 1px solid rgba(232,183,123,.5);
}
.cmp-cell--label-conv {
  text-align: left;
  justify-content: center;
}
.cmp-cell--label-conv h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.cmp-cell--label-conv p  { font-size: .65rem; color: var(--muted); white-space: nowrap; }
.cmp-conv-line {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  font-size: .9rem;
}
.cmp-conv-line span  { color: var(--muted); }
.cmp-conv-line strong { font-weight: 700; }

.comparison-saving-badge {
  background: rgba(72,180,97,.15);
  color: #2a8a45;
  border-radius: var(--r-sm);
  padding: .5rem .75rem;
  font-size: .82rem;
  font-weight: 700;
  margin-top: .25rem;
  align-self: stretch;
  text-align: center;
}

/* === 22. CALCULATOR ====================================== */
.calc-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.calc-slider-wrap { display: flex; flex-direction: column; gap: 1rem; }
.calc-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent) var(--pct, 20%), rgba(107,168,177,.2) var(--pct, 20%));
  outline: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform 120ms;
}
input[type=range]::-webkit-slider-thumb:active { transform: scale(1.2); }

.calc-hero {
  text-align: center;
  background: linear-gradient(135deg, rgba(107,168,177,.08), rgba(232,183,123,.08));
  border: 2px solid var(--accent);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
}
.calc-hero__label {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .5rem;
}
.calc-hero__amount {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.calc-hero__sub { font-size: .9rem; color: var(--muted); }
.calc-hero__sub strong { color: var(--accent); font-weight: 700; }

.calc-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.calc-breakdown__item { text-align: center; }
.calc-breakdown__item span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .25rem;
}
.calc-breakdown__item strong { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.calc-breakdown__vs { font-size: .85rem; font-weight: 700; color: var(--muted); }

.calc-note { font-size: .78rem; color: var(--muted); margin-top: 1rem; }
.calc-plan-rec { font-size: .9rem; font-weight: 600; color: var(--ink); margin-top: .5rem; }
.calc-plan-rec strong { font-size: 1.05rem; font-weight: 700; color: var(--accent); }

/* === 23. FAQ CHAT BUBBLES ================================ */
.faq-list { display: flex; flex-direction: column; gap: 1.5rem; }

.faq-item { display: flex; flex-direction: column; gap: .6rem; }

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  user-select: none;
}
.faq-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-avatar--client { background: var(--accent-soft); color: var(--accent); }
.faq-avatar--syntax { background: rgba(232,183,123,.2); color: #b07a30; }

.faq-q-bubble {
  background: rgba(107,168,177,.1);
  border: 1px solid rgba(107,168,177,.18);
  border-radius: 18px 18px 18px 4px;
  padding: .875rem 1.125rem;
  font-weight: 600;
  font-size: .925rem;
  color: var(--ink);
  flex: 1;
  transition: background 140ms;
}
.faq-question:hover .faq-q-bubble,
.faq-item.is-open .faq-q-bubble { background: rgba(107,168,177,.18); }

.faq-chevron {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 10px;
  transition: transform 260ms ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .38s ease, opacity .3s ease;
}
.faq-item.is-open .faq-answer { max-height: 400px; opacity: 1; }

.faq-a-bubble {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(107,168,177,.18);
  border-radius: 4px 18px 18px 18px;
  padding: .875rem 1.125rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

/* FAQ overrides on warm background */
.section--warm .faq-q-bubble {
  background: rgba(255,255,255,.72);
  border-color: rgba(232,183,123,.4);
}
.section--warm .faq-question:hover .faq-q-bubble,
.section--warm .faq-item.is-open .faq-q-bubble {
  background: rgba(255,255,255,.92);
}
.section--warm .faq-a-bubble {
  background: rgba(255,255,255,.9);
  border-color: rgba(232,183,123,.3);
}
.section--warm .faq-avatar--syntax {
  background: rgba(232,183,123,.45);
  color: #8a5210;
}
.section--warm .faq-avatar--client {
  background: rgba(107,168,177,.2);
  color: var(--accent);
}

/* === 24. TESTIMONIALS ==================================== */
.testimonials-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
  padding-block: .5rem;
}
.testimonials-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: tcarousel 60s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes tcarousel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { animation: none; flex-wrap: wrap; width: auto; padding-inline: var(--pad-x); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: clamp(260px, 30vw, 340px);
  flex-shrink: 0;
}
.testimonial-card blockquote {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card blockquote::before { content: '\201E'; font-size: 1.4rem; color: var(--accent); font-style: normal; display: block; margin-bottom: .25rem; }
.testimonial-author { display: flex; flex-direction: column; gap: .1rem; }
.testimonial-author strong { font-size: .9rem; }
.testimonial-author span  { font-size: .8rem; color: var(--muted); }

/* === 25. SECURITY CARDS ================================== */
.security-grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 640px)  { .security-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .security-grid { grid-template-columns: repeat(3,1fr); } }

.security-card { display: flex; flex-direction: column; gap: .75rem; }
.security-card h3 { font-size: 1.05rem; }

.security-extra {
  background: linear-gradient(135deg, rgba(107,168,177,.1), rgba(232,183,123,.1));
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
  text-align: center;
}

/* === 26. CONTACT FORM ==================================== */
.contact-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 820px) { .contact-layout { grid-template-columns: 1fr 1fr; } }

.trial-box {
  background: linear-gradient(135deg, rgba(107,168,177,.12), rgba(232,183,123,.12));
  border: 2px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 3rem var(--card-pad);
  margin-bottom: 2rem;
}
.trial-box__title { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.trial-box__subtitle { font-weight: 600; color: var(--accent); margin-bottom: .75rem; }
.trial-box__desc { font-size: .9rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--ink); }
.form-input,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color 160ms, box-shadow 160ms;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107,168,177,.18);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; margin-top: .5rem; }
.form-message { padding: .75rem 1rem; border-radius: var(--r-sm); font-size: .875rem; display: none; }
.form-message--success { background: rgba(72,180,97,.12); color: #2a8a45; border: 1px solid rgba(72,180,97,.3); }
.form-message--error   { background: rgba(220,50,50,.08);  color: #b32020;  border: 1px solid rgba(220,50,50,.25); }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info__text { display: flex; flex-direction: column; gap: .15rem; }
.contact-info__text strong { font-size: .875rem; font-weight: 600; }
.contact-info__text a { font-size: .95rem; color: var(--accent); }
.contact-info__text a:hover { text-decoration: underline; }

/* === 27. CTA SECTION ===================================== */
.cta-section {
  background: rgba(255,255,255,0.68);
  padding-block: var(--section-y);
  text-align: center;
}
.cta-section h2 { color: var(--ink); margin-bottom: 2rem; }
.cta-section p  { color: var(--muted); margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }

/* === 28. SECURITY HIGHLIGHT ROW ========================== */
/* === dark section variant === */
.section--dark {
  background: rgba(14,31,39,0.90);
  color: rgba(232,244,246,0.85);
}
.section--dark h2 { color: #fff; }
.section--dark .btn-outline--light {
  border-color: rgba(107,168,177,.55);
  color: #fff;
}
.section--dark .btn-outline--light:hover {
  background: rgba(107,168,177,.18);
  border-color: var(--accent);
}

/* === why bento grid === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 680px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .why-card:nth-child(1) { grid-column: 1 / 3; }
  .why-card:nth-child(4) { grid-column: 2 / 4; }
  .why-card:nth-child(5) { grid-column: 1 / 3; }
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(107,168,177,0.22);
  border-radius: var(--r);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.why-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(107,168,177,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-card h3 { font-size: 1rem; color: #fff; margin: 0; }
.why-card p  { font-size: .875rem; color: rgba(232,244,246,0.65); line-height: 1.6; margin: 0; }

.section--warm .why-card {
  background: rgba(255,255,255,.6);
  border-color: rgba(232,183,123,.3);
}
.section--warm .why-card h3 { color: var(--ink); }
.section--warm .why-card p  { color: var(--muted); }
.section--warm .why-card__icon {
  background: rgba(107,168,177,.15);
  color: var(--accent);
}
.section--white .why-card,
.section--light .why-card {
  background: #fff;
  border-color: rgba(232,183,123,.35);
  box-shadow: 0 2px 12px rgba(232,183,123,.12);
}
.section--white .why-card h3,
.section--light .why-card h3 { color: var(--ink); }
.section--white .why-card p,
.section--light .why-card p  { color: var(--muted); }
.section--white .why-card__icon,
.section--light .why-card__icon {
  background: rgba(232,183,123,.18);
  color: #c07a2a;
}
.section--white .why-grid .why-card:nth-child(2),
.section--white .why-grid .why-card:nth-child(5) {
  border-color: rgba(107,168,177,.3);
  box-shadow: 0 2px 12px rgba(107,168,177,.1);
}
.section--white .why-grid .why-card:nth-child(2) .why-card__icon,
.section--white .why-grid .why-card:nth-child(5) .why-card__icon {
  background: rgba(107,168,177,.15);
  color: var(--accent);
}

/* === 29. FOOTER ========================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding-top: clamp(48px, 7vw, 80px);
}
.site-footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) {
  .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
.site-footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.site-footer__brand img { filter: brightness(0) invert(1); opacity: .85; }
.site-footer__privacy { font-size: .75rem; color: rgba(255,255,255,.45); transition: color 140ms; text-decoration: none; }
.site-footer__privacy:hover { color: var(--accent); }
.site-footer__tagline { font-size: .875rem; line-height: 1.6; max-width: 240px; }

.site-footer__nav ul { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__nav a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color 140ms; }
.site-footer__nav a:hover { color: var(--accent); }

.site-footer__contact { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__contact a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color 140ms; }
.site-footer__contact a:hover { color: var(--accent); }

.site-footer__legal {
  padding-block: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* === 30. SCROLL REVEAL =================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }
.reveal:nth-child(7) { transition-delay: .48s; }
.reveal:nth-child(8) { transition-delay: .56s; }

/* === 31. KEYFRAME ANIMATIONS ============================= */
@keyframes mesh {
  0%   { transform: rotate(0) translate3d(0,0,0); }
  33%  { transform: rotate(120deg) translate3d(1.5%,-1.5%,0); }
  66%  { transform: rotate(240deg) translate3d(-1.5%,1.5%,0); }
  100% { transform: rotate(360deg) translate3d(0,0,0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: .9; transform: scale(1.04); }
}

/* === 32. FOCUS STYLES ==================================== */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === 33. RESPONSIVE ====================================== */
@media (min-width: 820px) {
  .site-header__cta { display: inline-flex; }
  .lang-dropdown { display: inline-block; }
}
@media (min-width: 1024px) {
  .site-nav { display: block; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* === 34. INSIGHTS & ARTICLES ============================= */
.hero--article .hero__inner { padding-bottom: 2rem; }
.article-meta {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: .875rem; color: var(--muted); margin-bottom: 1rem;
}
.article-back {
  color: var(--accent); text-decoration: none; font-weight: 500;
}
.article-back:hover { text-decoration: underline; }

.article-body {
  max-width: 720px; margin: 0 auto;
  font-size: 1.0625rem; line-height: 1.75; color: var(--ink);
}
.article-body h2 {
  font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--ink);
}
.article-body h3 {
  font-size: 1.2rem; font-weight: 600; margin: 2rem 0 .75rem; color: var(--ink);
}
.article-body p { margin: 0 0 1.25rem; }
.article-body ul { margin: 0 0 1.25rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: .5rem; }
.article-body li::marker { color: var(--accent); }

.article-tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  background: var(--accent-soft); color: var(--accent); padding: .15em .6em;
  border-radius: var(--r-pill); vertical-align: middle; margin-left: .5rem;
}

.article-tip {
  background: var(--bg-warm); border-left: 3px solid var(--accent-warm);
  padding: 1rem 1.25rem; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.25rem 0 1.5rem; font-size: .95rem;
}
.article-tip p { margin: .25rem 0 0; }

.buzzword-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap); margin: 1.5rem 0;
}
.buzzword-card {
  background: var(--bg-light); border-radius: var(--r-sm);
  padding: 1.25rem; font-size: .95rem;
}
.buzzword-card p { margin: .5rem 0 0; color: var(--muted); }

.semaphore { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.semaphore-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--r-sm); background: var(--bg-light);
}
.semaphore-dot {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; margin-top: .2rem;
}
.semaphore-item--green .semaphore-dot  { background: #22c55e; }
.semaphore-item--orange .semaphore-dot { background: #f59e0b; }
.semaphore-item--red .semaphore-dot    { background: #ef4444; }
.semaphore-item p { margin: .25rem 0 0; color: var(--muted); font-size: .95rem; }

.checklist { list-style: none; padding-left: 0; }
.checklist li {
  position: relative; padding-left: 2rem; margin-bottom: .75rem;
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .35em;
  width: 18px; height: 18px; border: 2px solid var(--accent);
  border-radius: 4px;
}

.article-next {
  margin-top: 2rem; padding: 1.25rem; background: var(--accent-soft);
  border-radius: var(--r-sm); font-size: .95rem; font-style: italic;
  color: var(--muted);
}

/* Insight cards (listing page) */
.insights-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--gap);
}
.insight-card {
  display: flex; flex-direction: column; padding: var(--card-pad);
  text-decoration: none; color: inherit; transition: var(--ease);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.insight-card time {
  font-size: .8rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: .5rem;
}
.insight-card h3 {
  font-size: 1.15rem; font-weight: 600; margin: 0 0 .5rem; color: var(--ink);
}
.insight-card p { font-size: .95rem; color: var(--muted); margin: 0 0 1rem; flex: 1; }
.insight-card__read {
  font-size: .875rem; font-weight: 500; color: var(--accent);
}

/* === 35. REDUCED MOTION ================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  #constellation { display: none; }
}
