:root {
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

  --accent: #7c5cff;
  --accent-2: #16d6ff;

  --radius: 18px;
  --radius-sm: 14px;
  --container: 1100px;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(124, 92, 255, 0.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(22, 214, 255, 0.2), transparent 55%),
    radial-gradient(700px 500px at 40% 110%, rgba(124, 92, 255, 0.16), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

body.vote-page {
  background:
    radial-gradient(1200px 760px at 50% -10%, rgba(124, 92, 255, 0.26), transparent 62%),
    radial-gradient(1000px 720px at 50% 115%, rgba(22, 214, 255, 0.18), transparent 62%),
    radial-gradient(900px 620px at -10% 45%, rgba(124, 92, 255, 0.10), transparent 62%),
    #050712;
}

body.home-page {
  background:
    radial-gradient(1400px 900px at 50% 70%, rgba(124, 92, 255, 0.16), transparent 68%),
    radial-gradient(1200px 820px at 55% 120%, rgba(22, 214, 255, 0.14), transparent 68%),
    radial-gradient(1000px 700px at 100% 55%, rgba(22, 214, 255, 0.08), transparent 68%),
    #050712;
}

.section--cards {
  background: #050712;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.splash-active {
  overflow: hidden;
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 28px;
  background: transparent;
  transition: opacity 600ms ease, transform 600ms ease;
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(2px 2px at 12% 22%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%),
    radial-gradient(2px 2px at 68% 18%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 55%),
    radial-gradient(2px 2px at 86% 40%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 55%),
    radial-gradient(2px 2px at 34% 70%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 55%),
    radial-gradient(2px 2px at 76% 78%, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0) 55%);
  opacity: 0.9;
}

.splash__panels {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.splash__panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(124, 92, 255, 0.22), rgba(255, 255, 255, 0) 60%),
    radial-gradient(860px 520px at 85% 25%, rgba(22, 214, 255, 0.14), rgba(255, 255, 255, 0) 62%),
    rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
}

.splash__panel--top {
  top: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.10);
}

.splash__panel--bottom {
  bottom: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.10);
}

.splash__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 14px;
  place-items: center;
}

.splash__loading {
  width: min(520px, 92vw);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  padding: 18px 18px 16px;
}

.splash__loading-label {
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.splash__bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
  overflow: hidden;
}

.splash__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.95), rgba(22, 214, 255, 0.85));
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.22);
  animation: splash-load 1.6s ease-out forwards;
}

.splash--hide {
  opacity: 0;
  transform: scale(1.02);
}

.splash--reveal .splash__panel--top {
  animation: splash-open-top 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.splash--reveal .splash__panel--bottom {
  animation: splash-open-bottom 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.splash--reveal .splash__content {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}

@keyframes splash-load {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes splash-open-top {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes splash-open-bottom {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 100%, 0);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(14, 18, 36, 0.78), rgba(7, 10, 18, 0.58));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.header::after {
  content: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(22px 22px at 28% 24%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.55), rgba(22, 214, 255, 0.20));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.brand__logo {
  width: 22px;
  height: 22px;
  opacity: 0.95;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.brand__name {
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  font-weight: 780;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.nav__link {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition:
    transform 120ms ease,
    background 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.nav__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav__link:active {
  transform: translateY(0);
}

.nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 214, 255, 0.18), 0 0 0 1px rgba(22, 214, 255, 0.45) inset;
}

.nav__link--active {
  color: var(--text);
  border-color: rgba(124, 92, 255, 0.28);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.38), rgba(22, 214, 255, 0.16));
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.18);
}

.hero {
  padding: 56px 0 18px;
}

.hero--imageonly {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__bg-image {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(22px 22px at 30% 25%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.scroll-cue:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(124, 92, 255, 0.35);
  background:
    radial-gradient(22px 22px at 30% 25%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(22, 214, 255, 0.08));
}

.scroll-cue:active {
  transform: translateX(-50%) translateY(0);
}

.scroll-cue:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(22, 214, 255, 0.20),
    0 0 0 1px rgba(22, 214, 255, 0.45) inset,
    0 22px 70px rgba(0, 0, 0, 0.55);
}

.scroll-cue__icon {
  display: grid;
  place-items: center;
}

.section--center {
  position: relative;
  text-align: center;
  background: url("assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(360px, 40vw, 560px);
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.section--center::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.section--center .container {
  position: relative;
  z-index: 1;
}

.section--center .h1 {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.hero--bg {
  position: relative;
  padding: 86px 0 56px;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.85), rgba(7, 10, 18, 0.55)),
    linear-gradient(180deg, rgba(7, 10, 18, 0.55), rgba(7, 10, 18, 0.85)),
    url("assets/homehero.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 18% 20%, rgba(124, 92, 255, 0.22), rgba(255, 255, 255, 0) 70%),
    radial-gradient(780px 420px at 80% 30%, rgba(22, 214, 255, 0.14), rgba(255, 255, 255, 0) 70%);
  opacity: 0.9;
}

.hero--bg .container {
  position: relative;
  z-index: 1;
}

.hero--bg .hero__grid {
  grid-template-columns: 1fr;
}

.hero--bg .hero__copy {
  max-width: 76ch;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.hero__media {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.55),
    rgba(22, 214, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.28;
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero__card {
  position: relative;
}

.hero__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.6), rgba(22, 214, 255, 0.25), rgba(255, 255, 255, 0));
  opacity: 0.45;
  filter: blur(10px);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
}

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

.mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: 13px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #0b1020;
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(22, 214, 255, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.22);
  font-weight: 700;
}

.button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: none;
  border: 1px solid var(--border);
}

.vote-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.vote-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.vote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.vote-meta {
  min-width: 0;
}

.vote-title {
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vote-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  margin-top: 2px;
}

.vote-btn {
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 120ms ease,
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
}

.vote-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.06);
}

.vote-btn:active {
  transform: translateY(0);
}

.vote-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.18), 0 0 0 1px rgba(124, 92, 255, 0.45) inset;
}

.vote-btn--active {
  border-color: rgba(124, 92, 255, 0.28);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.35), rgba(22, 214, 255, 0.14));
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.14);
}

.vote-btn--active:hover {
  border-color: rgba(124, 92, 255, 0.35);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}

.stat {
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.stat__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 6px;
}

.stat__value {
  font-size: 18px;
  font-weight: 750;
  margin: 0;
}

.logo-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  padding: 18px;
}

.logo-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-card__logo {
  width: 44px;
  height: 44px;
}

.logo-card__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo-card__subtitle {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.checklist {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 44px 0;
}

.section--tint {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tool-card {
  padding: 16px;
}

.tool-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tool-logo {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(22px 22px at 28% 24%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(124, 92, 255, 0.45), rgba(22, 214, 255, 0.18));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

.tool-logo span {
  font-weight: 850;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tool-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 120ms ease, border-color 120ms ease;
}

.tool-card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 255, 0.4);
}

.tool-card--link:active {
  transform: translateY(0);
}

.tool-card--link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 214, 255, 0.18), 0 0 0 1px rgba(22, 214, 255, 0.45) inset;
}

.tool-meta {
  min-width: 0;
}

.tool-name {
  margin: 0;
}

.tool-desc {
  margin: 4px 0 0;
}

.tool-contact {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.tool-contact__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.tool-contact__name {
  font-weight: 650;
}

.tool-contact__dot {
  color: rgba(255, 255, 255, 0.35);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.demo-grid {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card--person {
  padding: 16px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.45), rgba(22, 214, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.person__name {
  margin: 0;
}

.person__role {
  margin: 2px 0 0;
  font-size: 13px;
}

.person__links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.dot {
  color: rgba(255, 255, 255, 0.45);
}

.link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.card--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  transition: transform 120ms ease, border-color 120ms ease;
}

.card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 92, 255, 0.4);
}

.arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  margin-top: 12px;
  aspect-ratio: 16 / 9;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.demo-headshot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.spacer {
  height: 10px;
}

.footer {
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.footer__links {
  display: inline-flex;
  gap: 12px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .vote-row {
    flex-direction: column;
    align-items: stretch;
  }

  .vote-btn {
    width: 100%;
  }

  .section--center {
    min-height: 340px;
    padding: 72px 0;
  }
}

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

  .button,
  .card--link {
    transition: none;
  }

  .button:hover,
  .card--link:hover {
    transform: none;
  }

  .splash {
    transition: none;
  }

  .splash__bar-fill {
    animation: none;
    width: 100%;
  }

  .splash--reveal .splash__panel--top,
  .splash--reveal .splash__panel--bottom {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

