:root,
[data-theme="dark"] {
  --bg: #070b12;
  --bg-elevated: #0d1420;
  --bg-card: #111a28;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --accent: #34d399;
  --accent-hover: #6ee7b7;
  --accent-2: #10b981;
  --accent-glow: rgba(52, 211, 153, 0.35);
  --gradient: linear-gradient(135deg, #34d399 0%, #10b981 48%, #64748b 100%);
  --btn-on-accent: #042f1a;
  --nav-scrolled-bg: rgba(7, 11, 18, 0.88);
  --hero-badge-bg: rgba(16, 185, 129, 0.14);
  --hero-badge-border: rgba(52, 211, 153, 0.35);
  --surface-hover: rgba(255, 255, 255, 0.04);
  --surface-hover-strong: rgba(255, 255, 255, 0.06);
  --pill-bg: rgba(255, 255, 255, 0.04);
  --pill-hover-bg: rgba(52, 211, 153, 0.12);
  --pill-hover-border: rgba(52, 211, 153, 0.35);
  --accordion-open-border: rgba(16, 185, 129, 0.4);
  --accordion-head-hover: rgba(255, 255, 255, 0.03);
  --accordion-icon-bg: rgba(16, 185, 129, 0.18);
  --accordion-icon-open-bg: rgba(52, 211, 153, 0.22);
  --value-box-bg: rgba(16, 185, 129, 0.1);
  --table-head-bg: rgba(255, 255, 255, 0.04);
  --contact-icon-bg: rgba(16, 185, 129, 0.18);
  --card-shadow: rgba(0, 0, 0, 0.35);
  --hero-shadow: rgba(0, 0, 0, 0.5);
  --focus-ring: rgba(16, 185, 129, 0.35);
  --warning-bg: rgba(239, 68, 68, 0.08);
  --warning-border: rgba(239, 68, 68, 0.2);
  --warning-text: #fca5a5;
  --glow-a: rgba(16, 185, 129, 0.14);
  --glow-b: rgba(100, 116, 139, 0.1);
  --glow-c: rgba(16, 185, 129, 0.08);
  --mobile-nav-bg: rgba(7, 11, 18, 0.98);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --radius: 16px;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg: #e8ecef;
  --bg-elevated: #dfe3e7;
  --bg-card: #f6f8f7;
  --border: rgba(55, 71, 79, 0.14);
  --text: #1a2e28;
  --text-muted: #5a6c66;
  --accent: #047857;
  --accent-hover: #059669;
  --accent-2: #0d9488;
  --accent-glow: rgba(4, 120, 87, 0.22);
  --gradient: linear-gradient(135deg, #10b981 0%, #047857 42%, #7b8a94 100%);
  --btn-on-accent: #ffffff;
  --nav-scrolled-bg: rgba(232, 236, 239, 0.92);
  --hero-badge-bg: rgba(16, 185, 129, 0.12);
  --hero-badge-border: rgba(4, 120, 87, 0.28);
  --surface-hover: rgba(4, 120, 87, 0.06);
  --surface-hover-strong: rgba(4, 120, 87, 0.1);
  --pill-bg: rgba(255, 255, 255, 0.7);
  --pill-hover-bg: rgba(16, 185, 129, 0.14);
  --pill-hover-border: rgba(4, 120, 87, 0.35);
  --accordion-open-border: rgba(4, 120, 87, 0.4);
  --accordion-head-hover: rgba(4, 120, 87, 0.05);
  --accordion-icon-bg: rgba(16, 185, 129, 0.16);
  --accordion-icon-open-bg: rgba(4, 120, 87, 0.2);
  --value-box-bg: rgba(16, 185, 129, 0.1);
  --table-head-bg: rgba(123, 138, 148, 0.12);
  --contact-icon-bg: rgba(16, 185, 129, 0.14);
  --card-shadow: rgba(26, 46, 40, 0.1);
  --hero-shadow: rgba(26, 46, 40, 0.12);
  --focus-ring: rgba(4, 120, 87, 0.25);
  --warning-bg: rgba(220, 38, 38, 0.08);
  --warning-border: rgba(220, 38, 38, 0.22);
  --warning-text: #b91c1c;
  --glow-a: rgba(16, 185, 129, 0.18);
  --glow-b: rgba(123, 138, 148, 0.2);
  --glow-c: rgba(16, 185, 129, 0.1);
  --mobile-nav-bg: rgba(232, 236, 239, 0.98);
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

html {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.45s var(--ease-out), color 0.35s var(--ease-out);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--glow-a), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, var(--glow-b), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, var(--glow-c), transparent);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.nav__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.nav__links {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav__links li {
  flex-shrink: 0;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

html[lang="uk"] .nav__links {
  gap: 0.75rem;
}

html[lang="uk"] .nav__links a {
  font-size: 0.82rem;
}

html[lang="uk"] .nav__platform,
html[lang="uk"] .nav__cta {
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
}

@media (max-width: 1280px) {
  .nav__cta {
    display: none;
  }

  .nav__links {
    gap: 0.85rem;
  }

  html[lang="uk"] .nav__links {
    gap: 0.65rem;
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--pill-bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}

.theme-toggle:hover {
  border-color: var(--pill-hover-border);
  background: var(--pill-hover-bg);
  transform: scale(1.05);
}

.theme-toggle__icon {
  line-height: 1;
}

.theme-toggle__icon--dark {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--light {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--dark {
  display: block;
}

.lang-switch {
  display: flex;
  padding: 3px;
  background: var(--surface-hover-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.lang-switch__btn {
  padding: 0.35rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.lang-switch__btn--active {
  background: var(--gradient);
  color: var(--btn-on-accent);
}

.lang-switch__btn:hover:not(.lang-switch__btn--active) {
  color: var(--text);
}

.nav__cta {
  padding: 0.55rem 1.1rem;
  background: var(--gradient);
  color: var(--btn-on-accent) !important;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav__login {
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--text) !important;
  transition: border-color 0.2s, color 0.2s;
}

.nav__login:hover {
  border-color: rgba(52, 211, 153, 0.45);
  color: var(--accent) !important;
}

.nav__login-mobile {
  display: none;
}

.nav__platform {
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
}

.nav__platform-mobile {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--hero-badge-bg);
  border: 1px solid var(--hero-badge-border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}

.hero__title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero__subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.45s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient);
  color: var(--btn-on-accent);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--pill-hover-border);
  background: var(--surface-hover);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeScale 1.1s var(--ease-out) 0.3s forwards;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: pulse 4s ease-in-out infinite;
}

.hero__emblem {
  width: min(320px, 85%);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px var(--hero-shadow));
  animation: float 5s ease-in-out infinite;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.05); }
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0 0 2rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* About */
.about__content {
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
}

.about__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Pitch card */
.pitch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pitch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.pitch-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
}

/* Highlights */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--pill-hover-border);
  box-shadow: 0 12px 40px var(--card-shadow);
}

.highlight-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.highlight-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.highlight-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Recruiting */
.section--recruiting {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.section--recruiting::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  background: radial-gradient(circle, var(--glow-a), transparent 70%);
  pointer-events: none;
}

.recruiting-intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 52rem;
}

.recruiting-intro__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.recruiting-roles__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.recruiting-roles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recruiting-role-pill {
  padding: 0.45rem 0.9rem;
  background: var(--pill-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}

.recruiting-role-pill:hover {
  border-color: var(--pill-hover-border);
  background: var(--pill-hover-bg);
}

.recruiting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.recruiting-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.recruiting-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}

.recruiting-card:hover {
  transform: translateY(-4px);
  border-color: var(--pill-hover-border);
  box-shadow: 0 16px 40px var(--card-shadow);
}

.recruiting-card:hover::before {
  opacity: 1;
}

.recruiting-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.recruiting-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-family: var(--font-display);
}

.recruiting-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.recruiting-cta {
  text-align: center;
}

/* Feature grid */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--pill-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.feature-pill:hover {
  background: var(--pill-hover-bg);
  border-color: var(--pill-hover-border);
  color: var(--text);
}

/* Accordion features */
.features-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.accordion-item.open {
  border-color: var(--accordion-open-border);
}

.accordion-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion-item__head:hover {
  background: var(--accordion-head-hover);
}

.accordion-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accordion-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  font-size: 1.1rem;
}

.accordion-item.open .accordion-item__icon {
  transform: rotate(45deg);
  background: var(--accordion-icon-open-bg);
}

.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.accordion-item__inner {
  padding: 0 1.35rem 1.35rem;
}

.accordion-item__inner ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.accordion-item__inner li {
  margin-bottom: 0.35rem;
}

.accordion-item__value {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--value-box-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--accent);
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.diff-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Audience table */
.audience-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.audience-table th,
.audience-table td {
  padding: 1.15rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.audience-table th {
  background: var(--table-head-bg);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.audience-table tr:last-child td {
  border-bottom: none;
}

.audience-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.audience-table td:last-child {
  color: var(--text-muted);
}

.audience-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: 12px;
  color: var(--warning-text);
  font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
}

.faq-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  transition: border-color 0.3s, transform 0.3s;
}

.contact__link:hover {
  border-color: var(--pill-hover-border);
  transform: translateX(4px);
  color: var(--text);
}

.contact__link-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--contact-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Reviews */
.reviews__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.review-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.review-card:hover {
  transform: scale(1.02);
  border-color: var(--pill-hover-border);
}

.review-card__stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card__text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.review-card__author {
  font-weight: 600;
  font-family: var(--font-display);
}

.review-card__role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.reviews__dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--text-muted);
  margin-left: 1rem;
}

.footer a:hover {
  color: var(--accent);
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle,
  .hero__actions {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__emblem {
    width: 200px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--mobile-nav-bg);
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__actions {
    order: 3;
    margin-left: auto;
  }

  .nav__burger {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__login {
    display: none;
  }

  .nav__platform-mobile {
    display: list-item;
  }

  .nav__platform-mobile a {
    color: var(--accent) !important;
    font-weight: 600;
  }

  .nav__burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__burger.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .audience-table thead {
    display: none;
  }

  .audience-table tr {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .audience-table td {
    display: block;
    padding: 0.25rem 0;
    border: none;
  }

  .audience-table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
  }
}

/* ── Platform login (embedded on landing) ── */
.platform-section {
  background: linear-gradient(180deg, transparent 0%, rgba(52, 211, 153, 0.04) 100%);
}

.platform-section__inner {
  max-width: 520px;
}

.platform-login-card,
.platform-auth-card {
  margin-top: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.platform-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-auth-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.platform-auth-field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.platform-auth-field input:focus {
  outline: none;
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.12);
}

.platform-auth-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.platform-auth-error {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 0.9rem;
}

.platform-login-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.platform-signed-in-label {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.platform-signed-in-sub {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Standalone auth pages (OTP, MFA, captcha) ── */
.platform-auth-page {
  min-height: 100vh;
  padding: 6rem 0 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.platform-auth-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.platform-auth-sub {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.platform-auth-hint {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
