:root {
  --navy: #0a1e3a;
  --blue: #1e90ff;
  --cyan: #00c8d7;
  --green: #10b981;
  --yellow: #fbbf24;
  --orange: #f97316;
  --magenta: #e91e8c;
  --purple: #7c3aed;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f8fbff;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(10, 30, 58, 0.16);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes gradientDrift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(160%);
  }
}

@keyframes countPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes iconOrbit {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.08);
  }
}

@keyframes cardGlow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes navTitleShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes navLinkPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 16px var(--nav-glow, rgba(30, 144, 255, 0.35));
  }
}

@keyframes carouselLeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.12), transparent 32rem),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 30rem),
    var(--bg);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, var(--navy) 0%, #143a6d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(3, 15, 32, 0.2);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta));
  background-size: 240% 100%;
  animation: gradientDrift 8s ease infinite;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 16px;
  background: transparent;
}

.logo {
  display: block;
  max-width: 54vw;
  height: auto;
}

.logo-hub {
  width: auto;
  height: 92px;
  max-width: 170px;
  object-fit: contain;
  animation: floatSoft 5.5s ease-in-out infinite;
}

.brand:hover .logo-hub {
  transform: scale(1.02);
}

.logo-hub {
  transition: transform 0.2s ease;
}

.tech-logo {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  height: 46px;
  max-width: min(200px, 55vw);
  vertical-align: middle;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav a.nav-link {
  --nav-c1: var(--blue);
  --nav-c2: var(--cyan);
  --nav-c3: var(--green);
  --nav-glow: rgba(30, 144, 255, 0.38);
  background-image: linear-gradient(120deg, var(--nav-c1) 0%, var(--nav-c2) 45%, var(--nav-c3) 100%);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation:
    navTitleShimmer 5s ease-in-out infinite,
    navLinkPulse 3.5s ease-in-out infinite;
}

.nav a.nav-link--home {
  --nav-c1: var(--blue);
  --nav-c2: var(--cyan);
  --nav-c3: var(--green);
  --nav-glow: rgba(0, 200, 215, 0.38);
  border-color: rgba(30, 144, 255, 0.42);
  animation-delay: 0s, 0s;
}

.nav a.nav-link--origin {
  --nav-c1: var(--purple);
  --nav-c2: var(--magenta);
  --nav-c3: var(--blue);
  --nav-glow: rgba(233, 30, 140, 0.38);
  border-color: rgba(124, 58, 237, 0.42);
  animation-delay: 0.4s, 0.6s;
}

.nav a.nav-link--offer {
  --nav-c1: var(--green);
  --nav-c2: var(--yellow);
  --nav-c3: var(--orange);
  --nav-glow: rgba(16, 185, 129, 0.38);
  border-color: rgba(16, 185, 129, 0.42);
  animation-delay: 0.8s, 1.2s;
}

.nav a.nav-link--pricing {
  --nav-c1: var(--orange);
  --nav-c2: var(--magenta);
  --nav-c3: var(--purple);
  --nav-glow: rgba(249, 115, 22, 0.38);
  border-color: rgba(249, 115, 22, 0.42);
  animation-delay: 1.2s, 1.8s;
}

.nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nav-c1), var(--nav-c2), var(--nav-c3));
  background-size: 220% auto;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  animation: navTitleShimmer 5s ease-in-out infinite;
}

.nav a:not(.nav-link):hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.nav a.nav-link:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(120deg, var(--nav-c1) 0%, var(--nav-c2) 45%, var(--nav-c3) 100%);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 22px var(--nav-glow);
}

.nav a.nav-link[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 20px var(--nav-glow);
}

.nav a.nav-link:hover::after {
  transform: scaleX(1);
}

.nav .nav-cta {
  color: var(--navy);
  background: linear-gradient(90deg, var(--yellow), #ffb347);
  border-color: transparent;
}

.nav .nav-cta--official {
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.86rem;
  font-weight: 800;
}

.language-switcher select {
  min-width: 68px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font: inherit;
  cursor: pointer;
}

.language-switcher option {
  color: var(--text);
  background: #ffffff;
}

.language-switcher select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(10, 30, 58, 0.92), rgba(20, 58, 109, 0.88)),
    radial-gradient(circle at 15% 20%, rgba(30, 144, 255, 0.5), transparent 26rem),
    linear-gradient(135deg, #0a1e3a, #08162b);
  background-size: 100% 100%, 150% 150%, 220% 220%;
  animation: gradientDrift 14s ease infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.28), transparent 68%);
}

.hero-orb,
.hero-pulse {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero-orb {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
  animation: floatSoft 7s ease-in-out infinite;
}

.hero-orb-one {
  top: 18%;
  left: 5%;
}

.hero-orb-two {
  right: 8%;
  bottom: 18%;
  width: 110px;
  height: 110px;
  animation-delay: -2.5s;
}

.hero-pulse {
  top: 48%;
  right: 38%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 0 70px rgba(251, 191, 36, 0.16);
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 44px;
  align-items: center;
  min-height: 620px;
  padding: 78px 0;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--purple);
  background: #f3e8ff;
  border-color: #c084fc;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(
    90deg,
    #00a6df 0%,
    #0057b8 18%,
    #ff8c00 34%,
    #ff3d3d 48%,
    #e91e8c 62%,
    #7c3aed 78%,
    #5c8f1f 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientDrift 8s ease infinite;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.22));
}

.hero .lead {
  margin-top: 24px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: #dbeafe;
  font-weight: 700;
}

.hero-content p:not(.eyebrow):not(.lead) {
  max-width: 700px;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
}

.btn:hover::after {
  animation: shine 0.8s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(90deg, var(--yellow), #ffb347);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.26);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10060;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}

.cookie-consent-text {
  margin: 0;
  max-width: 640px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }
}

.hero-card {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  color: #000000;
  box-shadow: var(--shadow);
  animation: floatSoft 6s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 68%);
}

.counter {
  display: block;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  font-weight: 950;
  color: #000000;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: countPop 0.8s ease 0.25s both;
}

.hero-card h2 {
  margin-top: 14px;
  font-size: 1.6rem;
  color: #000000;
}

.hero-card > p {
  color: #000000;
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.55;
}

.color-strip {
  height: 7px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta));
  background-size: 240% 100%;
  animation: gradientDrift 7s ease infinite;
}

.launch-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  animation: curtainFade 0.9s ease 1.5s forwards;
}

.launch-curtain-logo {
  width: min(150px, 32vw);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 24px rgba(124, 58, 237, 0.3));
  animation: curtainLogoIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes curtainLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes curtainFade {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.launch-curtain.is-skipped {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .launch-curtain {
    display: none;
  }
}

.intro-section,
.offer-section,
.signup-section {
  padding: 76px 0;
}

.trust-strip {
  padding: 12px 0 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 30px 24px;
  border-radius: 26px;
  background: linear-gradient(120deg, var(--navy) 0%, #143a6d 100%);
  box-shadow: 0 18px 40px rgba(10, 30, 58, 0.18);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-item strong {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 950;
  color: transparent;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.trust-item span {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.domains-section {
  padding: 66px 0 20px;
}

.domains-intro {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
}

.domains-intro h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 950;
  color: var(--text);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.domain-card {
  padding: 26px 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(16, 41, 71, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(16, 41, 71, 0.14);
}

.domain-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 0 22px;
}

.domain-icon {
  display: block;
  width: 100%;
  height: 150px;
  margin: 0 0 16px;
  object-fit: cover;
}

.domain-card h3,
.domain-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.domain-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

.domain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .domains-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .domains-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.intro-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  padding: 32px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(16, 41, 71, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.78);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-illustration {
  display: block;
  width: 100%;
  height: 150px;
  margin: 0 0 20px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.intro-card:hover .card-illustration {
  transform: scale(1.04) translateY(-4px);
  filter: saturate(1.16) contrast(1.04);
}

.intro-card::before,
.intro-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.intro-card::before {
  inset: 0;
  opacity: 0.92;
}

.intro-card::after {
  right: -58px;
  top: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(2px);
  animation: cardGlow 4s ease-in-out infinite;
}

.intro-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 28px 60px rgba(16, 41, 71, 0.2);
}

.intro-card:nth-child(1) {
  border-top: 0;
}

.intro-card:nth-child(1)::before {
  background: linear-gradient(145deg, #fff7ed 0%, #fff1f2 42%, #fdf2f8 100%);
}

.intro-card:nth-child(1)::after {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.32), rgba(233, 30, 140, 0.06) 68%, transparent 72%);
}

.intro-card:nth-child(2) {
  border-top: 0;
}

.intro-card:nth-child(2)::before {
  background: linear-gradient(145deg, #eff6ff 0%, #ecfeff 48%, #f0fdf4 100%);
}

.intro-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(30, 144, 255, 0.34), rgba(0, 200, 215, 0.08) 68%, transparent 72%);
  animation-delay: -1.2s;
}

.intro-card:nth-child(3) {
  border-top: 0;
}

.intro-card:nth-child(3)::before {
  background: linear-gradient(145deg, #f0fdf4 0%, #fefce8 48%, #f5f3ff 100%);
}

.intro-card:nth-child(3)::after {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.34), rgba(251, 191, 36, 0.1) 68%, transparent 72%);
  animation-delay: -2.2s;
}

.card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  animation: iconOrbit 3.8s ease-in-out infinite;
}

.intro-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, var(--orange), var(--magenta), var(--purple));
}

.intro-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--green));
  animation-delay: -0.8s;
}

.intro-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  animation-delay: -1.6s;
}

.card-index {
  display: block;
  position: absolute;
  top: 24px;
  right: 28px;
  margin-bottom: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta), var(--purple));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1;
  opacity: 0.9;
  animation: gradientDrift 7s ease infinite;
}

.intro-card h2 {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1.75rem;
  font-weight: 950;
}

.intro-card p {
  margin: 0;
  color: #334155;
  font-weight: 650;
}

.countdown-section {
  padding: 0 0 76px;
  background:
    radial-gradient(circle at 20% 20%, rgba(233, 30, 140, 0.12), transparent 30rem),
    radial-gradient(circle at 80% 80%, rgba(30, 144, 255, 0.12), transparent 30rem),
    var(--bg);
}

.countdown-stack {
  display: grid;
  gap: 26px;
}

.countdown-card {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 34px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(160deg, #1a0000 0%, #5c0010 26%, #8b0018 52%, #3b0764 100%);
  border: 3px solid #ff2244;
  box-shadow:
    0 0 0 4px rgba(255, 221, 87, 0.25),
    0 30px 70px rgba(92, 0, 16, 0.32),
    inset 0 0 70px rgba(255, 100, 0, 0.12);
  animation: glowPulse 3s ease-in-out infinite;
}

.countdown-card-offer {
  background:
    linear-gradient(160deg, #2b1200 0%, #7c2d12 30%, #f97316 68%, #7c3aed 100%);
  border-color: #f97316;
}

.offer-countdown {
  max-width: 100%;
  margin: 22px 0 0;
  padding: 24px;
  border-radius: 28px;
  animation: none;
  box-shadow:
    0 0 0 3px rgba(251, 191, 36, 0.22),
    0 18px 42px rgba(124, 45, 18, 0.22),
    inset 0 0 54px rgba(255, 255, 255, 0.08);
}

.offer-countdown h2 {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.offer-countdown .countdown-subtitle {
  margin-bottom: 16px;
}

.offer-countdown .countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.offer-countdown .countdown-unit {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  min-width: auto;
  padding: 10px 9px;
}

.offer-countdown .countdown-unit strong {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.offer-countdown .countdown-unit span {
  margin-top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.countdown-card-site {
  background:
    linear-gradient(160deg, #1a0000 0%, #5c0010 26%, #8b0018 52%, #3b0764 100%);
}

.countdown-card-compact {
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  padding: 13px;
  border-radius: 20px;
  border-width: 2px;
  animation: none;
  color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(255, 221, 87, 0.18),
    0 18px 36px rgba(92, 0, 16, 0.2),
    inset 0 0 42px rgba(255, 100, 0, 0.1);
}

.hero-card .countdown-card-compact .countdown-kicker,
.hero-card .countdown-card-compact .countdown-subtitle,
.hero-card .countdown-card-compact .countdown-started,
.hero-card .countdown-card-compact .launch-date-slide p {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.countdown-card-compact .countdown-kicker {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 950;
  text-align: center;
  text-transform: none;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.countdown-card-compact .launch-date-slide p {
  color: #ffffff;
}

.countdown-card-compact .countdown-subtitle {
  margin: 8px 0 10px;
  font-size: 0.68rem;
  line-height: 1.3;
  color: #ffffff;
}

.countdown-card-compact .countdown-started {
  color: #ffffff;
}

.launch-date-carousel {
  --launch-slide-count: 4;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 2.35rem;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 221, 87, 0.18), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 221, 87, 0.42);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.launch-date-track {
  display: flex;
  width: calc(var(--launch-slide-count) * 200%);
  animation: carouselLeftToRight 24s linear infinite;
  will-change: transform;
}

.launch-date-carousel:hover .launch-date-track {
  animation-play-state: paused;
}

.launch-date-slide {
  flex: 0 0 calc(100% / (var(--launch-slide-count) * 2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.launch-date-slide p {
  margin: 0;
  font-size: clamp(0.74rem, 1.55vw, 0.9rem);
  line-height: 1.15;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.01em;
  color: #ffffff;
}

[dir="rtl"] .launch-date-track {
  animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
  .launch-date-track {
    animation: none;
    width: 100%;
    flex-direction: column;
    gap: 6px;
  }

  .launch-date-slide {
    flex: 0 0 auto;
  }

  .launch-date-slide[aria-hidden="true"] {
    display: none;
  }
}

.countdown-body-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.countdown-feature-box {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 221, 87, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 24px rgba(255, 221, 87, 0.14);
}

.countdown-card-compact .countdown-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.countdown-card-compact .countdown-unit-feature {
  padding: 4px 8px;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.countdown-card-compact .countdown-unit-feature strong {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.55);
}

.countdown-card-compact .countdown-unit-feature span {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.countdown-card-compact .countdown-unit:first-child {
  grid-column: auto;
}

.countdown-card-compact .countdown-unit {
  min-width: 0;
  padding: 8px 2px 7px;
  border-radius: 11px;
  overflow: visible;
}

.countdown-card-compact .countdown-unit strong {
  display: block;
  width: 100%;
  font-size: clamp(0.98rem, 4.4vw, 1.4rem);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
}

.countdown-card-compact .countdown-unit span {
  margin-top: 4px;
  font-size: clamp(0.66rem, 1.6vw, 0.76rem);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.countdown-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.countdown-shine {
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-140%);
  animation: shine 5s ease-in-out infinite;
}

.countdown-kicker,
.countdown-card h2,
.countdown-subtitle,
.countdown-grid,
.countdown-started {
  position: relative;
  z-index: 1;
}

.countdown-kicker {
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown-card:not(.countdown-card-compact) .countdown-kicker {
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.72);
}

.countdown-card h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--yellow), #ffffff, #ff6b6b, var(--yellow));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 950;
  animation: gradientDrift 5s ease infinite;
}

.countdown-subtitle {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 12px;
}

.countdown-unit {
  min-width: 0;
  padding: 16px 12px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 221, 87, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 26px rgba(255, 221, 87, 0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.countdown-unit strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.48);
  animation: countPop 0.7s ease both;
}

.countdown-unit:nth-child(2) strong {
  color: #ff6b6b;
}

.countdown-unit:nth-child(3) strong {
  color: #ffd166;
}

.countdown-unit:nth-child(4) strong {
  color: #a8edea;
}

.countdown-unit:nth-child(5) strong {
  color: #ffffff;
}

.countdown-unit span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.countdown-started {
  margin: 20px 0 0;
  color: var(--yellow);
  font-size: 1.2rem;
  font-weight: 950;
}

.countdown-official-cta {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.94)),
    linear-gradient(90deg, rgba(139, 47, 201, 0.12), rgba(34, 204, 68, 0.12));
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 144, 255, 0.16);
  position: relative;
  overflow: hidden;
}

.offer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-130%);
  animation: shine 7s ease-in-out infinite;
}

.offer-panel h2,
.signup-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.offer-panel p,
.signup-copy p {
  color: #334155;
  font-size: 1.04rem;
}

.offer-deadline {
  display: inline-flex;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #7c2d12 !important;
  background: linear-gradient(90deg, #ffedd5, #fef3c7);
  border: 2px solid rgba(249, 115, 22, 0.34);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.14);
}

.profiles-section {
  padding: 76px 0;
}

.profiles-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.profiles-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 950;
  color: var(--text);
}

.profiles-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.launch-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(16, 41, 71, 0.16);
}

.launch-carousel-track {
  display: flex;
  min-width: 0;
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.35, 1);
}

.launch-slide {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 48px 56px;
  min-height: 380px;
  color: #ffffff;
}

.launch-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: launchSlideZoom 14s ease-in-out infinite alternate;
}

.launch-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.launch-slide > * {
  position: relative;
  z-index: 2;
}

@keyframes launchSlideZoom {
  from { transform: scale(1); }
  to { transform: scale(1.14); }
}

@media (prefers-reduced-motion: reduce) {
  .launch-slide::before {
    animation: none;
  }
}

.launch-slide-mentor::before { background-image: url("assets/photos/profile-mentor.webp"); background-position: center 22%; }
.launch-slide-mentor::after { background: linear-gradient(135deg, rgba(30, 144, 255, 0.55), rgba(0, 200, 215, 0.4) 70%); }

.launch-slide-investor::before { background-image: url("assets/photos/profile-investor.webp"); background-position: center 30%; }
.launch-slide-investor::after { background: linear-gradient(135deg, rgba(15, 155, 108, 0.55), rgba(16, 185, 129, 0.42) 45%, rgba(251, 191, 36, 0.3) 120%); }

.launch-slide-partner::before { background-image: url("assets/photos/profile-partner.webp"); background-position: center 38%; }
.launch-slide-partner::after { background: linear-gradient(135deg, rgba(124, 58, 237, 0.58), rgba(233, 30, 140, 0.42) 75%); }

.launch-slide-project::before { background-image: url("assets/photos/profile-project.webp"); background-position: center 22%; }
.launch-slide-project::after { background: linear-gradient(135deg, rgba(249, 115, 22, 0.55), rgba(233, 30, 140, 0.4) 85%); }

.launch-dial {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.launch-dial-q {
  opacity: 0.32;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.94);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.launch-dial-q-mentor { fill: var(--blue); }
.launch-dial-q-investor { fill: var(--green); }
.launch-dial-q-partner { fill: var(--purple); }
.launch-dial-q-project { fill: var(--orange); }

.launch-dial-core {
  fill: #ffffff;
}

.launch-slide-mentor .launch-dial-q-mentor,
.launch-slide-investor .launch-dial-q-investor,
.launch-slide-partner .launch-dial-q-partner,
.launch-slide-project .launch-dial-q-project {
  opacity: 1;
  transform: scale(1.05);
}

.launch-slide .profile-card-icon {
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.2);
  border: 2.5px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.launch-slide .profile-card-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-slide h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 950;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.launch-slide p {
  margin: 0 0 14px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.launch-slide .profile-card-urgency {
  display: inline-block;
  margin: 0 0 22px !important;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 0.85rem !important;
  font-weight: 700;
  line-height: 1.4;
}

.launch-slide .profile-cta {
  margin-top: auto;
  color: var(--navy);
  background: linear-gradient(90deg, #ffffff, #f1f5f9);
}

.launch-slide .profile-card-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  opacity: 0.85;
}

.launch-slide .profile-card-link:hover {
  opacity: 1;
}

.launch-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.launch-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.44);
  transform: translateY(-50%) scale(1.08);
}

.launch-carousel-prev {
  left: 18px;
}

.launch-carousel-next {
  right: 18px;
}

.launch-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.launch-dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.launch-dot.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .launch-slide {
    padding: 36px 26px 64px;
  }

  .launch-dial {
    width: 56px;
    height: 56px;
    top: 20px;
    right: 20px;
  }

  .launch-carousel-arrow {
    display: none;
  }
}

.benefits {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.benefits li:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.benefits li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 950;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .benefits li::before {
  margin-right: 0;
  margin-left: 10px;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .nav,
html[dir="rtl"] .language-switcher,
html[dir="rtl"] .designer-credit {
  direction: rtl;
}

html[dir="rtl"] .hero h1 {
  letter-spacing: 0;
}

html[dir="rtl"] .card-index {
  right: auto;
  left: 28px;
}

.signup-section {
  background: linear-gradient(120deg, var(--navy), #143a6d);
  color: var(--white);
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 38px;
  align-items: start;
}

.signup-copy {
  position: sticky;
  top: 120px;
}

.signup-copy p {
  color: #cbd5e1;
}

.remaining {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.remaining strong {
  color: var(--yellow);
  font-size: 1.7rem;
}

.signup-access {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.signup-access h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.2rem;
}

.signup-access > p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.6;
  font-size: 0.95rem;
}

.signup-qr-card {
  display: flex;
  justify-content: center;
  margin: 18px 0 12px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.signup-qr-image {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.signup-access-url {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.28);
  color: #e2e8f0;
  font-size: 0.72rem;
  line-height: 1.45;
  word-break: break-all;
}

.signup-methods-title {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.signup-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.signup-method-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 221, 87, 0.45);
}

.signup-copy-feedback {
  margin: 12px 0 0;
  color: #86efac;
  font-size: 0.86rem;
  font-weight: 800;
}

html[dir="rtl"] .signup-methods {
  direction: rtl;
}

.signup-form {
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.signup-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.signup-form label {
  display: block;
  margin: 0 0 16px;
  color: #1e293b;
  font-weight: 850;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form select,
.signup-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.12);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
}

.checkbox input {
  margin-top: 5px;
}

.form-button {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
}

.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 24px 0;
  color: #cbd5e1;
  background: #071428;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-primary {
  display: grid;
  gap: 12px;
}

.legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.legal-links a {
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-links a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.designer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 212, 170, 0.16), rgba(147, 51, 234, 0.16)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.28);
  transition: transform 0.22s ease, background 0.22s ease;
  max-width: 100%;
}

.designer-credit:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.designer-credit-label {
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1;
  flex: 0 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-card.reveal-on-scroll:nth-child(2) {
  transition-delay: 0.12s;
}

.intro-card.reveal-on-scroll:nth-child(3) {
  transition-delay: 0.24s;
}

.legal-main {
  padding: 70px 0;
  background:
    radial-gradient(circle at top left, rgba(30, 144, 255, 0.12), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(233, 30, 140, 0.12), transparent 28rem),
    var(--bg);
}

.legal-panel {
  max-width: 940px;
  padding: 42px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(30, 144, 255, 0.14);
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta), var(--purple));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientDrift 8s ease infinite;
}

.legal-panel h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.legal-panel p,
.legal-panel li {
  color: #334155;
  font-size: 1rem;
}

.legal-panel a {
  color: #0f67c8;
  font-weight: 800;
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-updated {
  margin: 14px 0 28px;
  color: var(--muted);
  font-weight: 800;
}

.pricing-main {
  background:
    radial-gradient(circle at top left, rgba(30, 144, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(233, 30, 140, 0.12), transparent 30rem),
    var(--bg);
}

.pricing-hero {
  padding: 78px 0;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(10, 30, 58, 0.94), rgba(20, 58, 109, 0.9)),
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.28), transparent 26rem);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.pricing-hero h1,
.network-hero h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta), var(--purple));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 950;
  line-height: 1.05;
  animation: gradientDrift 8s ease infinite;
}

.pricing-hero p {
  max-width: 720px;
  color: #dbeafe;
  font-size: 1.08rem;
  font-weight: 650;
}

.program-stats {
  display: grid;
  gap: 14px;
}

.program-stats article,
.program-card,
.price-card,
.actor-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(30, 144, 255, 0.14);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.program-stats article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.program-stats span {
  font-size: 2rem;
}

.program-stats strong {
  color: var(--navy);
  font-weight: 950;
}

.program-stats em {
  color: var(--magenta);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 950;
}

.program-section,
.pricing-section,
.network-section {
  padding: 76px 0;
}

.program-grid,
.pricing-grid,
.actor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.program-card,
.price-card,
.actor-card {
  padding: 26px;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.program-card:hover,
.price-card:hover,
.actor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.16);
}

.program-icon,
.actor-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--yellow), var(--magenta));
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.15);
}

.program-card h2,
.price-card h3,
.actor-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.35rem;
}

.program-card h3 {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 0.95rem;
}

.program-card p,
.price-card p,
.actor-card p,
.section-heading p,
.network-hero p {
  color: #334155;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 0.82rem;
  font-weight: 950;
}

.price-card strong {
  display: block;
  margin: 14px 0;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2rem;
  font-weight: 950;
}

.network-section {
  background: linear-gradient(180deg, rgba(10, 30, 58, 0.04), rgba(124, 58, 237, 0.08));
}

.network-hero {
  padding: 38px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.network-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.network-pills span {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(90deg, #eff6ff, #f0fdf4);
  border: 1px solid #dbeafe;
  font-weight: 900;
}

.network-carousel {
  position: relative;
  overflow: hidden;
  margin: 28px 0 56px;
  padding: 10px 0 18px;
  border-radius: 30px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.network-carousel-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: carouselLeftToRight 28s linear infinite;
  will-change: transform;
}

.network-carousel:hover .network-carousel-track {
  animation-play-state: paused;
}

.network-carousel article,
.network-stats article {
  flex: 0 0 230px;
  padding: 24px 18px;
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(30, 144, 255, 0.12);
}

.network-carousel article.wide {
  flex-basis: 320px;
  background: linear-gradient(135deg, #fff7ed, #f0fdf4, #eff6ff);
}

.network-carousel strong,
.network-stats strong {
  display: block;
  color: var(--magenta);
  font-size: 2.4rem;
  font-weight: 950;
}

.network-carousel span,
.network-stats span {
  color: #334155;
  font-weight: 850;
}

.actor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.actor-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 950;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

@media (max-width: 860px) {
  .site-header .container,
  .hero-grid,
  .offer-panel,
  .signup-grid,
  .pricing-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content,
  .hero-content p:not(.eyebrow):not(.lead),
  .hero h1,
  .hero .lead {
    max-width: 100%;
  }

  .site-header .container {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
  }

  .header-actions.is-open {
    max-height: 600px;
    opacity: 1;
    margin-top: 14px;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav a {
    width: 100%;
  }

  .language-switcher {
    width: fit-content;
  }

  .logo-hub {
    height: 78px;
  }

  .hero-grid {
    min-height: auto;
    padding: 58px 0;
  }

  .about-values-grid {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
  }

  .about-value-card {
    min-width: 0;
    max-width: none;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-card {
    min-height: auto;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .countdown-unit:first-child {
    grid-column: 1 / -1;
  }

  .signup-copy {
    position: static;
  }

  .signup-methods {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-primary,
  .legal-links {
    justify-items: center;
    justify-content: center;
  }

  .designer-credit {
    width: 100%;
    justify-content: center;
  }

  .program-grid,
  .pricing-grid,
  .actor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.84rem;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .hero-card,
  .offer-panel,
  .countdown-card,
  .signup-form,
  .legal-panel,
  .network-hero {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-card {
    padding: 22px;
  }

  .launch-date-slide p {
    font-size: 0.68rem;
    white-space: normal;
    line-height: 1.2;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
  }

  .launch-date-carousel {
    min-height: 2.6rem;
  }

  .countdown-card-compact .countdown-grid-bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .countdown-card-compact .countdown-kicker {
    font-size: 1rem;
  }

  .countdown-card-compact .countdown-unit-feature strong {
    font-size: 1.75rem;
  }

  .countdown-card-compact .countdown-unit,
  .countdown-card-compact .countdown-unit:first-child,
  .countdown-card-compact .countdown-unit:nth-child(2),
  .countdown-card-compact .countdown-unit:nth-child(3),
  .countdown-card-compact .countdown-unit:nth-child(4),
  .countdown-card-compact .countdown-unit:nth-child(5) {
    grid-column: auto;
  }

  .countdown-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-illustration {
    height: 132px;
  }

  .program-grid,
  .pricing-grid,
  .actor-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .network-carousel article {
    flex-basis: 210px;
  }

  .network-carousel article.wide {
    flex-basis: 280px;
  }

  .program-stats article {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .about-founder-spotlight {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-founder-image {
    min-height: 300px;
  }

  .about-values-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .about-value-card {
    min-width: 0;
    max-width: none;
  }

  .about-block-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-steps-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-page {
  min-height: 100vh;
  background: radial-gradient(circle at 85% 8%, #f1f7ff 0%, #ffffff 44%, #eef4fc 100%);
  color: #17304d;
  position: relative;
  overflow: hidden;
}

.about-page::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0));
  animation: floatSoft 6s ease-in-out infinite;
  pointer-events: none;
}

.about-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 20px 70px;
  position: relative;
  z-index: 1;
}

.about-hero {
  margin-top: 18px;
  border-radius: 24px;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(128deg, rgba(12, 41, 75, 0.96), rgba(24, 78, 133, 0.92)),
    radial-gradient(circle at 85% 20%, rgba(251, 191, 36, 0.22), transparent 45%);
  box-shadow: 0 22px 44px rgba(8, 32, 58, 0.28);
}

.about-title {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.08;
}

.about-lead {
  margin: 14px 0 0;
  max-width: 940px;
  line-height: 1.78;
  color: #e8f2ff;
  font-weight: 400;
  font-size: 1.05rem;
}

.about-founder-spotlight {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(280px, 370px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.about-founder-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(135deg, #0f3a7d, #ea580c);
  box-shadow: 0 20px 34px rgba(9, 33, 58, 0.24);
}

.about-founder-image {
  width: 100%;
  min-height: 410px;
  border-radius: 16px;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #f5f7fb;
  box-shadow: inset 0 -120px 120px rgba(6, 18, 35, 0.24);
}

.about-founder-tag {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #103357;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.about-founder-story {
  border-radius: 22px;
  border: 1px solid rgba(15, 58, 125, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.93)),
    radial-gradient(circle at 100% 0%, rgba(15, 58, 125, 0.08), transparent 45%);
  padding: 26px;
  box-shadow: 0 18px 30px rgba(8, 31, 57, 0.12);
}

.about-founder-eyebrow {
  margin: 0;
  color: #ea580c;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-founder-name {
  margin: 10px 0 10px;
  color: #0f3a7d;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.about-founder-name span {
  font-weight: 400;
  font-size: 1rem;
  color: #ea580c;
}

.about-founder-message {
  margin: 0;
  color: #38516c;
  line-height: 1.9;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
}

.about-founder-message + .about-founder-message {
  margin-top: 12px;
}

.about-narrative {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.about-block {
  border-radius: 18px;
  border: 1px solid rgba(16, 48, 81, 0.12);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(14, 39, 67, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(14, 39, 67, 0.14);
}

.about-block h2 {
  margin: 0 0 8px;
  color: #1e5ba8;
  font-size: 1.2rem;
}

.about-block p {
  margin: 0;
  color: #4a6a8a;
  line-height: 1.8;
}

.about-block-constat {
  border-left: 4px solid var(--blue);
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.07), #ffffff 55%);
}

.about-block-constat h2 {
  color: var(--blue);
}

.about-block-declic {
  border-left: 4px solid var(--orange);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.07), #ffffff 55%);
}

.about-block-declic h2 {
  color: var(--orange);
}

.about-block-solution {
  border-left: 4px solid var(--green);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.07), #ffffff 55%);
}

.about-block-solution h2 {
  color: var(--green);
}

.about-block-collective {
  border-left: 4px solid var(--purple);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), #ffffff 55%);
}

.about-block-collective h2 {
  color: var(--purple);
}

.about-block-constat.reveal-on-scroll { transition-delay: 0s; }
.about-block-declic.reveal-on-scroll { transition-delay: 0.12s; }
.about-block-solution.reveal-on-scroll { transition-delay: 0.24s; }
.about-block-collective.reveal-on-scroll { transition-delay: 0.36s; }

.about-block-hero {
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f5c3e 100%);
  padding: 28px 24px;
  box-shadow: 0 14px 40px rgba(14, 39, 67, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-block-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14, 39, 67, 0.3);
}

.about-block-hero h2 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: 1.4rem;
}

.about-block-hero p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin: 0;
}

.about-block-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-block-quote {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  padding-left: 12px;
}

.about-block-key-points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-block-key-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
}

.about-block-key-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
}

.about-block-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-block-highlight {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.about-block-highlight-emoji {
  font-size: 1.5rem;
}

.about-block-highlight strong {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.about-block-highlight span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
}

.about-values-section {
  margin-top: 26px;
}

.about-values-title {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  color: #103357;
  padding-left: 8px;
}

.about-values-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  width: 100%;
}

.about-value-card {
  min-width: 260px;
  max-width: 340px;
  flex: 1 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(15, 58, 125, 0.12);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(9, 31, 56, 0.09);
}

.about-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.about-icon-vision {
  background: linear-gradient(135deg, #0f3a7d, #2563eb);
}

.about-icon-mission {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.about-icon-values {
  background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.about-value-card h3 {
  margin: 0 0 8px;
  color: #103357;
}

.about-value-card-desc {
  margin: 0 0 12px;
  color: #4b6480;
  line-height: 1.72;
  font-size: 0.95rem;
}

.about-value-points {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.about-value-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  color: #2d4a6a;
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(15, 58, 125, 0.06);
}

.about-value-points li:last-child {
  border-bottom: none;
}

.about-value-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 6px;
}

.about-values-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

.about-values-items-list li {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  border-bottom: 1px solid rgba(234, 88, 12, 0.08);
}

.about-values-items-list li:last-child {
  border-bottom: none;
}

.about-values-item-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: #ea580c;
  letter-spacing: 0.03em;
}

.about-values-item-text {
  font-size: 0.88rem;
  color: #4b6480;
  line-height: 1.5;
}

.about-steps {
  margin-top: 26px;
  border-radius: 20px;
  padding: 28px 24px;
  background: linear-gradient(130deg, rgba(10, 40, 100, 1), rgba(12, 78, 55, 1));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.about-steps-title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.about-step {
  border-radius: 14px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .about-founder-spotlight {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-founder-image {
    min-height: 340px;
  }

  .about-steps-list {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Réalisations */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.realisation-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(15, 58, 125, 0.12);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(9, 31, 56, 0.09);
}

.realisation-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.realisation-logo-img {
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(15, 58, 125, 0.1);
  padding: 4px;
}

.realisation-logo-blue { background: linear-gradient(135deg, #0f3a7d, #2563eb); }
.realisation-logo-green { background: linear-gradient(135deg, #16a34a, #22c55e); }
.realisation-logo-orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.realisation-logo-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.realisation-logo-magenta { background: linear-gradient(135deg, #be185d, #e91e8c); }

.realisation-name {
  margin: 0 0 8px;
  color: #103357;
  font-size: 1.15rem;
}

.realisation-category {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.realisation-category-blue { background: #2563eb22; color: #2563eb; }
.realisation-category-green { background: #16a34a22; color: #16a34a; }
.realisation-category-orange { background: #ea580c22; color: #ea580c; }
.realisation-category-purple { background: #7c3aed22; color: #7c3aed; }
.realisation-category-magenta { background: #e91e8c22; color: #e91e8c; }

.realisation-desc {
  margin: 0 0 14px;
  color: #4b6480;
  line-height: 1.65;
  font-size: 0.95rem;
  flex: 1;
}

.realisation-comment {
  margin: 0 0 14px;
  padding: 8px 12px;
  border-left: 3px solid;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
  color: #2d4a6a;
  background: rgba(15, 58, 125, 0.04);
  border-radius: 0 8px 8px 0;
}

.realisation-comment-blue { border-color: #2563eb; }
.realisation-comment-green { border-color: #16a34a; }
.realisation-comment-orange { border-color: #ea580c; }
.realisation-comment-purple { border-color: #7c3aed; }
.realisation-comment-magenta { border-color: #e91e8c; }

.realisation-link {
  align-self: flex-start;
  font-weight: 700;
  color: #1e90ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.realisation-link:hover {
  text-decoration: underline;
}

/* Filtres de catégorie */
.realisations-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.realisations-filter {
  border: 1px solid rgba(15, 58, 125, 0.18);
  background: #ffffff;
  color: #2d4a6a;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.realisations-filter:hover {
  border-color: rgba(30, 144, 255, 0.5);
}

.realisations-filter.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.realisations-empty {
  text-align: center;
  color: #64748b;
  font-style: italic;
  padding: 24px 0;
}

/* Carte du monde */
.world-map-section {
  margin-top: 26px;
}

.world-map-wrap {
  position: relative;
  max-width: 640px;
  margin: 16px auto 0;
}

.world-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

.world-map-pins {
  position: absolute;
  inset: 0;
}

.world-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: default;
}

.world-map-pin-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 rgba(249, 115, 22, 0.6);
  animation: worldMapPulse 2.2s ease-out infinite;
}

@keyframes worldMapPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .world-map-pin-dot {
    animation: none;
  }
}

/* Presse / médias */
.press-section {
  margin-top: 26px;
}

.press-coming-soon {
  color: #64748b;
  font-style: italic;
  margin-top: 8px;
}

.press-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
}

.press-logo {
  height: 40px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.18s ease, filter 0.18s ease;
}

.press-logo-link:hover .press-logo {
  filter: grayscale(0);
  opacity: 1;
}

.realisations-cta {
  margin-top: 32px;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(130deg, rgba(10, 40, 100, 1), rgba(12, 78, 55, 1));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.realisations-cta h2 {
  margin: 0 0 10px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.realisations-cta p {
  margin: 0 auto 20px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
}

/* Bannière d'impact (chiffres animés) */
.impact-banner {
  margin-top: 26px;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  background: conic-gradient(from 180deg, var(--purple), var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta), var(--purple));
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.impact-banner-period {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.impact-number {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  font-variant-numeric: tabular-nums;
}

.impact-label {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.impact-banner-cta {
  display: inline-block;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .impact-stats {
    gap: 28px;
  }

  .impact-stat {
    min-width: 120px;
  }
}

/* Témoignages */
.testimonials-section {
  margin-top: 40px;
}

.testimonials-carousel {
  position: relative;
  margin-top: 18px;
  padding: 0 4px 8px;
}

.testimonials-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.55s ease;
}

.testimonials-carousel-track .testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 28px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(15, 58, 125, 0.12);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 22px 56px;
  box-shadow: 0 10px 24px rgba(9, 31, 56, 0.09);
}

.testimonial-photo {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(9, 31, 56, 0.16);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
}

.testimonial-avatar-blue { background: linear-gradient(135deg, #0f3a7d, #2563eb); }
.testimonial-avatar-green { background: linear-gradient(135deg, #16a34a, #22c55e); }
.testimonial-avatar-orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.testimonial-avatar-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.testimonial-avatar-magenta { background: linear-gradient(135deg, #be185d, #e91e8c); }

.testimonial-card-blue .testimonial-photo { box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28); }
.testimonial-card-green .testimonial-photo { box-shadow: 0 12px 28px rgba(22, 163, 74, 0.28); }
.testimonial-card-orange .testimonial-photo { box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28); }
.testimonial-card-magenta .testimonial-photo { box-shadow: 0 12px 28px rgba(190, 24, 93, 0.28); }

.testimonial-quote {
  margin: 0 0 16px;
  color: #2d4a6a;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.7;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: #103357;
}

.testimonial-role {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.testimonials-carousel-arrow {
  position: absolute;
  top: 46%;
  z-index: 2;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 58, 125, 0.88);
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.testimonials-carousel-arrow:hover,
.testimonials-carousel-arrow:focus-visible {
  background: #0f3a7d;
}

.testimonials-carousel-prev { left: 10px; }
.testimonials-carousel-next { right: 10px; }

.testimonials-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.testimonials-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #0f3a7d;
  background: transparent;
  cursor: pointer;
}

.testimonials-dot.is-active {
  background: #0f3a7d;
}

.testimonials-credit {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

@media (max-width: 640px) {
  .realisations-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 48px 20px;
  }

  .testimonial-photo {
    width: min(220px, 70vw);
    margin: 0 auto;
  }

  .testimonials-carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-carousel-track {
    transition: none;
  }
}

/* Utilitaire lecteur d'écran : contenu accessible mais visuellement masqué */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Assistant FAQ (chatbot) */
.chatbot-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: conic-gradient(from 180deg, var(--purple), var(--blue), var(--green), var(--yellow), var(--orange), var(--magenta), var(--purple));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(30, 41, 82, 0.38);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chatbot-toggle svg {
  width: 22px;
  height: 22px;
}

.chatbot-toggle:hover {
  transform: scale(1.06);
}

.chatbot-toggle:focus-visible,
.chatbot-close:focus-visible,
.chatbot-form button:focus-visible,
.chatbot-form input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.chatbot-panel[hidden] {
  display: none;
}

.chatbot-panel {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 10040;
  width: min(340px, calc(100vw - 40px));
  max-height: min(480px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(9, 24, 51, 0.32);
  overflow: hidden;
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  background: linear-gradient(120deg, var(--navy), #143a6d);
  color: #ffffff;
}

.chatbot-title {
  margin: 0;
  font-weight: 900;
  font-size: 0.95rem;
}

.chatbot-subtitle {
  margin: 4px 0 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.78);
}

.chatbot-close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

.chatbot-messages {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

.chatbot-msg {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.chatbot-msg--bot {
  align-self: flex-start;
  background: #eef3fb;
  color: #17304d;
  border-bottom-left-radius: 4px;
}

.chatbot-msg--user {
  align-self: flex-end;
  background: var(--blue);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #e5edf7;
}

.chatbot-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 0.86rem;
}

.chatbot-form button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}

html[dir="rtl"] .chatbot-toggle,
html[dir="rtl"] .chatbot-panel {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .chatbot-msg--user {
  align-self: flex-start;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 4px;
}

html[dir="rtl"] .chatbot-msg--bot {
  align-self: flex-end;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 4px;
}

@media (max-width: 480px) {
  .chatbot-panel {
    right: 10px;
    left: auto;
    bottom: 76px;
    width: min(260px, calc(100vw - 20px));
    max-height: min(360px, calc(100vh - 120px));
  }

  html[dir="rtl"] .chatbot-panel {
    left: 10px;
    right: auto;
  }

  .chatbot-toggle {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }

  .chatbot-toggle svg {
    width: 19px;
    height: 19px;
  }

  html[dir="rtl"] .chatbot-toggle {
    left: 12px;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chatbot-toggle {
    transition: none;
  }
}

/* Lien d'évitement : invisible par défaut, apparaît au focus clavier pour
   permettre de sauter directement au contenu principal. */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 10100;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}
