:root {
  --bg-deep: #07080f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8e9ef;
  --muted: #9aa3b2;
  --accent: #5eead4;
  --accent-dim: rgba(94, 234, 212, 0.15);
  --accent-2: #818cf8;
  --radius: 14px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #9ffcec;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(
      ellipse 100% 80% at 10% -10%,
      rgba(129, 140, 248, 0.22),
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 90% 20%,
      rgba(94, 234, 212, 0.12),
      transparent 45%
    ),
    radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.9), var(--bg-deep));
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 15, 0.72);
  backdrop-filter: blur(14px);
  animation: header-in 0.7s ease both;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
  animation: logo-float 5s ease-in-out infinite;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

@media (min-width: 880px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-desktop a.is-active {
  color: var(--accent);
  background: var(--accent-dim);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-lang {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-lang:hover {
  border-color: rgba(94, 234, 212, 0.45);
  background: var(--accent-dim);
}

.btn-lang:active {
  transform: scale(0.97);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text);
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s;
}

.nav-panel {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(7, 8, 15, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  flex-direction: column;
  gap: 0.25rem;
  animation: panel-in 0.25s ease;
}

.nav-panel.is-open {
  display: flex;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-panel a {
  color: var(--text);
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
}

main {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.page-hero {
  padding: 2rem 0 3rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.page-hero p.lead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-home {
  padding: 3rem 0 3.5rem;
}

.hero-home .hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-home .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  background: linear-gradient(120deg, #f1f5f9 0%, #94a3b8 40%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-title 1s ease both;
}

@keyframes hero-title {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

.hero-copy .sub {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 52ch;
  animation: fade-up 0.8s 0.1s ease both;
}

.hero-copy .sub:last-of-type {
  animation-delay: 0.2s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  animation: fade-up 0.8s 0.28s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  color: #042f2e;
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 10px 36px rgba(45, 212, 191, 0.35);
  color: #022c26;
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(129, 140, 248, 0.45);
  background: rgba(129, 140, 248, 0.12);
  color: var(--text);
}

.btn:active {
  transform: scale(0.98);
}

.hero-visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(129, 140, 248, 0.12),
    rgba(94, 234, 212, 0.08)
  );
  overflow: hidden;
  animation: fade-up 1s 0.15s ease both;
}

.hero-visual--cartoon {
  min-height: 280px;
  border-style: solid;
  border-color: rgba(129, 140, 248, 0.35);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.12) inset,
    0 20px 50px rgba(15, 23, 42, 0.45);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(94, 234, 212, 0.15),
    transparent 35%,
    rgba(129, 140, 248, 0.2),
    transparent 70%
  );
  animation: spin-slow 22s linear infinite;
}

.hero-visual--cartoon::before {
  animation-duration: 28s;
  opacity: 0.85;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 1.5rem;
}

.hero-cartoon-inner {
  min-height: 260px;
  width: 100%;
}

.hero-cartoon-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

.hero-cartoon-svg .cg-spotlight {
  animation: cg-spot-pulse 3.5s ease-in-out infinite;
}

@keyframes cg-spot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

.hero-cartoon-svg .cg-star {
  animation: cg-star-twinkle 2.4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.hero-cartoon-svg .cg-star--2 {
  animation-delay: 0.4s;
}

.hero-cartoon-svg .cg-star--3 {
  animation-delay: 0.9s;
}

@keyframes cg-star-twinkle {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(12deg);
  }
}

.hero-cartoon-svg .cg-script {
  animation: cg-script-wiggle 3.2s ease-in-out infinite;
  transform-origin: 88px 162px;
  transform-box: fill-box;
}

@keyframes cg-script-wiggle {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-6px);
  }
}

.hero-cartoon-svg .cg-film {
  animation: cg-film-sway 2.8s ease-in-out infinite;
  transform-origin: 292px 164px;
  transform-box: fill-box;
}

@keyframes cg-film-sway {
  0%,
  100% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
}

.hero-cartoon-svg .cg-mascot-body {
  animation: cg-mascot-hop 1.15s cubic-bezier(0.45, 0.02, 0.55, 0.98) infinite;
  transform-origin: 0 32px;
  transform-box: fill-box;
}

@keyframes cg-mascot-hop {
  0%,
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
  }
  18% {
    transform: translateY(-26px) scaleY(1.06) scaleX(0.98);
  }
  32% {
    transform: translateY(0) scaleY(0.88) scaleX(1.06);
  }
  46% {
    transform: translateY(-12px) scaleY(1.04) scaleX(0.99);
  }
  58% {
    transform: translateY(0) scaleY(0.94) scaleX(1.03);
  }
  72% {
    transform: translateY(-6px) scaleY(1.02);
  }
}

.hero-cartoon-svg .cg-shadow {
  animation: cg-shadow-squash 1.15s cubic-bezier(0.45, 0.02, 0.55, 0.98) infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes cg-shadow-squash {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }
  18% {
    transform: scale(0.82);
    opacity: 0.15;
  }
  32% {
    transform: scale(1.12);
    opacity: 0.28;
  }
}

.hero-cartoon-svg .cg-burst line {
  animation: cg-burst-line 1.15s ease-out infinite;
}

.hero-cartoon-svg .cg-burst line:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-cartoon-svg .cg-burst line:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes cg-burst-line {
  0%,
  100% {
    opacity: 0.35;
    stroke-width: 2;
  }
  25% {
    opacity: 1;
    stroke-width: 4;
  }
}

/* Inner pages: decorative motion + staggered content */
.main-inner {
  position: relative;
}

.page-floating-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-floating-deco span {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.45;
  animation: inner-float 9s ease-in-out infinite;
}

.page-floating-deco span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 8%;
  right: 5%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(129, 140, 248, 0.5),
    transparent 70%
  );
}

.page-floating-deco span:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 3%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(94, 234, 212, 0.4),
    transparent 68%
  );
  animation-delay: -2.5s;
  animation-duration: 11s;
}

.page-floating-deco span:nth-child(3) {
  width: 56px;
  height: 56px;
  top: 42%;
  right: 12%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(244, 114, 182, 0.35),
    transparent 70%
  );
  animation-delay: -4s;
  animation-duration: 8s;
}

.main-inner--tech .page-floating-deco span:nth-child(1) {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(129, 140, 248, 0.55),
    transparent 70%
  );
}

.main-inner--how .page-floating-deco span:nth-child(1) {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(52, 211, 153, 0.45),
    transparent 70%
  );
}

.main-inner--apps .page-floating-deco span:nth-child(1) {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(251, 191, 36, 0.4),
    transparent 70%
  );
}

.main-inner--contact .page-floating-deco span:nth-child(1) {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(96, 165, 250, 0.45),
    transparent 70%
  );
}

@keyframes inner-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}

.page-hero--fancy {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
}

.page-hero--fancy h1 {
  position: relative;
  display: inline-block;
  animation: page-title-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes page-title-in {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.page-hero--fancy h1::after {
  content: "";
  display: block;
  height: 4px;
  margin-top: 0.65rem;
  max-width: 100%;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    transparent
  );
  background-size: 200% 100%;
  animation: title-shimmer 4s ease infinite;
}

@keyframes title-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.page-hero--fancy .lead {
  animation: page-title-in 0.85s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.main-inner > .section,
.main-inner > header {
  position: relative;
  z-index: 1;
}

.card-grid--stagger > .card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s, background 0.2s;
}

.section.reveal-visible .card-grid--stagger > .card {
  opacity: 1;
  transform: translateY(0);
}

.section.reveal-visible .card-grid--stagger > .card:nth-child(1) {
  transition-delay: 0.04s;
}

.section.reveal-visible .card-grid--stagger > .card:nth-child(2) {
  transition-delay: 0.1s;
}

.section.reveal-visible .card-grid--stagger > .card:nth-child(3) {
  transition-delay: 0.16s;
}

.section.reveal-visible .card-grid--stagger > .card:nth-child(4) {
  transition-delay: 0.22s;
}

.section.reveal-visible .card-grid--stagger > .card:nth-child(5) {
  transition-delay: 0.28s;
}

.steps--motion .step {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s;
}

.section.reveal-visible .steps--motion .step {
  opacity: 1;
  transform: translateY(0);
}

.section.reveal-visible .steps--motion .step:nth-child(1) {
  transition-delay: 0.05s;
}

.section.reveal-visible .steps--motion .step:nth-child(2) {
  transition-delay: 0.1s;
}

.section.reveal-visible .steps--motion .step:nth-child(3) {
  transition-delay: 0.15s;
}

.section.reveal-visible .steps--motion .step:nth-child(4) {
  transition-delay: 0.2s;
}

.section.reveal-visible .steps--motion .step:nth-child(5) {
  transition-delay: 0.25s;
}

.section.reveal-visible .steps--motion .step:nth-child(6) {
  transition-delay: 0.3s;
}

@keyframes step-num-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(94, 234, 212, 0);
  }
}

.partners-list--motion li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.2s;
}

.section.reveal-visible .partners-list--motion li {
  opacity: 1;
  transform: translateX(0);
}

.section.reveal-visible .partners-list--motion li:nth-child(1) {
  transition-delay: 0.06s;
}

.section.reveal-visible .partners-list--motion li:nth-child(2) {
  transition-delay: 0.12s;
}

.section.reveal-visible .partners-list--motion li:nth-child(3) {
  transition-delay: 0.18s;
}

.section.reveal-visible .partners-list--motion li:nth-child(4) {
  transition-delay: 0.24s;
}

.section.reveal-visible .partners-list--motion li:nth-child(5) {
  transition-delay: 0.3s;
}

.contact-block--motion {
  animation: contact-block-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes contact-block-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-email--pulse {
  display: inline-block;
  color: var(--accent);
  animation: email-glow 2.8s ease-in-out infinite;
}

@keyframes email-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(94, 234, 212, 0);
  }
  50% {
    text-shadow: 0 0 24px rgba(94, 234, 212, 0.45);
  }
}

.section {
  margin-top: 3rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 65ch;
}

.section p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s, transform 0.25s;
}

.card:hover {
  border-color: rgba(94, 234, 212, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.section.reveal-visible .card-grid--stagger > .card:hover {
  transform: translateY(-3px);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: rgba(129, 140, 248, 0.3);
  transform: translateX(4px);
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--accent-dim);
  color: var(--accent);
}

.steps--motion .step-num {
  animation: step-num-pulse 2.8s ease-in-out infinite;
}

.steps--motion .step:nth-child(2) .step-num {
  animation-delay: 0.3s;
}

.steps--motion .step:nth-child(3) .step-num {
  animation-delay: 0.6s;
}

.steps--motion .step:nth-child(4) .step-num {
  animation-delay: 0.9s;
}

.steps--motion .step:nth-child(5) .step-num {
  animation-delay: 1.2s;
}

.steps--motion .step:nth-child(6) .step-num {
  animation-delay: 1.5s;
}

.section.reveal-visible .steps--motion .step:hover {
  transform: translate(4px, 0);
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step-body p {
  margin: 0;
  font-size: 0.95rem;
}

.cap-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.cap-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.cap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(94, 234, 212, 0.45);
}

.contact-block {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 1.5rem;
}

.contact-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.contact-block p {
  margin: 0 0 1rem;
}

.contact-email {
  font-size: 1.15rem;
  font-weight: 600;
  word-break: break-all;
}

.partners-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.partners-list li {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  font-size: 0.98rem;
  transition: border-color 0.2s;
}

.partners-list li:hover {
  border-color: rgba(129, 140, 248, 0.35);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
