/* =============================================
   Stellar — Design System (Jeton-inspired)
   ============================================= */

:root {
  --color-coral-flame: #f73b20;
  --gradient-coral-flame: linear-gradient(135deg, #f8a4a4 0%, #f73b20 60%, #ffb89a 100%);
  --gradient-hero: linear-gradient(155deg, #f8a4a4 0%, #f73b20 42%, #ff8a65 78%, #ffb89a 100%);
  --color-brandwood: #360802;
  --color-sunset-fade: #fef5f3;
  --color-blush-mist: #fbdfd9;
  --color-pure-white: #ffffff;
  --color-carbon: #000000;
  --color-mint-action: #34c771;
  --color-cobalt-pulse: #477ee9;
  --color-magenta-spark: #fb2d54;

  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --text-caption: 0.75rem;
  --text-body-sm: 0.875rem;
  --text-body: 1rem;
  --text-subheading: 1.4375rem;
  --text-heading-sm: 2.0625rem;
  --text-heading: 2.75rem;
  --text-heading-lg: 4.5rem;

  --page-max-width: 1200px;
  --section-gap: 6rem;
  --card-padding: 1.75rem;

  --radius-cards: 16px;
  --radius-large-cards: 24px;
  --radius-buttons: 16px;
  --radius-action-tiles: 12px;
  --radius-nav-pill: 84px;

  --shadow-lg: rgba(247, 59, 32, 0.1) 0px 8px 24px 0px, rgba(247, 59, 32, 0.05) 0px 2px 8px 0px;
  --shadow-md: rgba(0, 0, 0, 0.05) 0px -4px 16px 0px;
  --shadow-card-hover: rgba(247, 59, 32, 0.08) 0px 12px 32px 0px, rgba(0, 0, 0, 0.04) 0px -4px 16px 0px;

  --bottom-nav-height: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scroll-padding-bottom: calc(var(--bottom-nav-height) + 32px);
}

::selection {
  background: rgba(247, 59, 32, 0.18);
  color: var(--color-brandwood);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-brandwood);
  background: var(--color-pure-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; }

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Page enter animations ---- */
.animate-fade-up,
.animate-scale-in {
  opacity: 0;
  animation-duration: 0.95s;
  animation-timing-function: var(--ease-out);
  animation-fill-mode: forwards;
  animation-delay: var(--delay, 0s);
}

.animate-fade-up {
  transform: translateY(32px);
  animation-name: fade-up;
}

.animate-scale-in {
  transform: scale(0.88);
  animation-name: scale-in;
}

body.page-loaded .animate-fade-up,
body.page-loaded .animate-scale-in {
  animation-play-state: running;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
  to { opacity: 1; transform: scale(1); }
}

/* ---- Crystal 3D ---- */
.crystal-wrap {
  width: min(460px, 90vw);
  height: min(460px, 90vw);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crystal-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%,
    rgba(247, 59, 32, 0.18) 0%,
    rgba(255, 130, 80, 0.06) 50%,
    transparent 75%
  );
  filter: blur(24px);
  pointer-events: none;
  animation: crystal-glow-pulse 4s ease-in-out infinite;
}

@keyframes crystal-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

.crystal-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  z-index: 1;
}

.bottom-nav--enter {
  opacity: 0;
  transform: translateX(-50%) translateY(24px);
  animation: nav-slide-up 0.7s var(--ease-out) 0.4s forwards;
}

@keyframes nav-slide-up {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ---- Top Nav ---- */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.top-nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(54, 8, 2, 0.06);
}

.top-nav--solid .top-nav__brand-name,
.top-nav--solid .top-nav__brand-sub,
.top-nav--solid .top-nav__links a,
.top-nav--solid .top-nav__icon-btn {
  color: var(--color-brandwood);
}

.top-nav__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.top-nav__brand:hover {
  transform: scale(1.02);
}

.top-nav__brand-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.top-nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(54, 8, 2, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.top-nav--solid .top-nav__logo {
  border-color: rgba(247, 59, 32, 0.2);
}

.top-nav__brand:hover .top-nav__logo {
  box-shadow: 0 4px 16px rgba(247, 59, 32, 0.25);
}

.top-nav__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--color-pure-white);
  transition: color 0.35s;
}

.top-nav__brand-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.35s;
}

.top-nav__links {
  display: flex;
  gap: 1.75rem;
  margin-right: auto;
}

.top-nav__links a {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s, opacity 0.2s;
}

.top-nav__links a:hover { opacity: 0.75; }

.top-nav__utils {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.top-nav__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, color 0.35s;
}

.top-nav__icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.top-nav--solid .top-nav__icon-btn:hover {
  background: var(--color-sunset-fade);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-body);
  letter-spacing: 0.01em;
  border-radius: var(--radius-buttons);
  padding: 0.6875rem 1.375rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease-out), opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.98); }

.btn--outline {
  background: var(--color-pure-white);
  border-color: var(--color-coral-flame);
  color: var(--color-coral-flame);
}

.btn--outline.btn--hero {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-pure-white);
}

.btn--outline.btn--hero:hover {
  border-color: var(--color-pure-white);
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-body-sm);
  padding: 0.6875rem 0.5rem;
}

.btn--ghost:hover { color: var(--color-pure-white); opacity: 1; }

.btn--sm { font-size: var(--text-body-sm); padding: 0.5rem 1rem; }
.btn--lg { font-size: 1.0625rem; padding: 0.8125rem 1.75rem; }
.btn--full { width: 100%; }

.top-nav--solid .btn--outline {
  background: var(--color-pure-white);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 9rem;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(54, 8, 2, 0.08) 0%, transparent 50%);
  animation: hero-bg-shift 12s ease-in-out infinite alternate;
}

@keyframes hero-bg-shift {
  0%   { opacity: 1; transform: scale(1)     translate(0, 0); }
  50%  { opacity: 0.85; transform: scale(1.04) translate(1%, -1%); }
  100% { opacity: 1; transform: scale(1.02) translate(-1%, 1%); }
}

.hero__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
}

.hero__logo-wrap {
  margin-bottom: 1.25rem;
}

.hero__logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(54, 8, 2, 0.2);
  animation: logo-glow 4s ease-in-out infinite;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.hero__logo:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 12px 48px rgba(255, 255, 255, 0.3);
}

@keyframes logo-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(54, 8, 2, 0.2); }
  50%      { box-shadow: 0 8px 40px rgba(255, 255, 255, 0.35); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--color-pure-white);
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  max-width: 26rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1rem;
  align-items: center;
  margin-bottom: 2.75rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-pure-white);
}

.hero__stat-label {
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sphere-3d {
  width: min(440px, 88vw);
  height: min(440px, 88vw);
  position: relative;
}

.sphere-3d canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
}

.sphere-3d canvas:active {
  cursor: grabbing;
}

.sphere-3d::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 150, 0.45) 0%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
}

.sphere-3d__stage {
  width: 100%;
  height: 100%;
  perspective: 1100px;
  perspective-origin: 50% 45%;
  position: relative;
  z-index: 1;
}

.sphere-3d__float {
  width: 100%;
  height: 100%;
  animation: sphere-float 7s ease-in-out infinite;
}

.sphere-3d__orbit {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(22deg) rotateY(-28deg);
  animation: sphere-spin 28s linear infinite;
}

.sphere-3d__ring {
  --ring-segments: 12;
  --segment-angle: calc(360deg / var(--ring-segments));
  --gap-angle: 3deg;
  position: absolute;
  top: calc((100% - var(--size)) / 2);
  left: calc((100% - var(--size)) / 2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  transform: translateZ(var(--z));
  transform-style: preserve-3d;
  opacity: var(--opacity);
  background: repeating-conic-gradient(
    from var(--shift),
    #ffb89a 0deg calc(var(--segment-angle) - var(--gap-angle)),
    rgba(255, 255, 255, 0.35) calc(var(--segment-angle) - var(--gap-angle)) var(--segment-angle)
  );
  -webkit-mask: radial-gradient(
    circle,
    transparent calc(var(--inner) - 0.5%),
    #000 calc(var(--inner)),
    #000 99.5%,
    transparent 100%
  );
  mask: radial-gradient(
    circle,
    transparent calc(var(--inner) - 0.5%),
    #000 calc(var(--inner)),
    #000 99.5%,
    transparent 100%
  );
  filter: drop-shadow(0 4px 12px rgba(247, 59, 32, 0.25));
}

.sphere-3d__core {
  position: absolute;
  top: 22%;
  left: 22%;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  transform: translateZ(72px);
  transform-style: preserve-3d;
  background:
    repeating-conic-gradient(
      from 0deg,
      #f73b20 0deg 28deg,
      #ff9a7a 28deg 30deg,
      #ffb89a 30deg 58deg,
      rgba(255,255,255,0.4) 58deg 60deg
    ),
    radial-gradient(circle at 35% 30%, #ffc9b0 0%, #f73b20 55%, #c42a10 100%);
  box-shadow:
    inset -12px -16px 32px rgba(54, 8, 2, 0.35),
    inset 8px 8px 20px rgba(255, 255, 255, 0.25),
    0 20px 48px rgba(247, 59, 32, 0.45);
}

.sphere-3d__meridian {
  position: absolute;
  inset: -2%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  transform: rotateY(0deg);
  pointer-events: none;
}

.sphere-3d__meridian--2 {
  transform: rotateY(60deg);
  border-color: rgba(255, 255, 255, 0.15);
}

.sphere-3d__meridian--3 {
  transform: rotateY(120deg);
  border-color: rgba(255, 255, 255, 0.1);
}

.sphere-3d__highlight {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 32%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

@keyframes sphere-spin {
  from { transform: rotateX(22deg) rotateY(-28deg); }
  to   { transform: rotateX(22deg) rotateY(332deg); }
}

@keyframes sphere-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

/* ---- Verbs strip ---- */
.verbs-strip {
  background: var(--color-pure-white);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(54, 8, 2, 0.06);
}

.verbs-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.verb-chip {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.verb-chip__tile {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-action-tiles);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verb-chip span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.verb-chip--mint .verb-chip__tile { background: var(--color-mint-action); }
.verb-chip--mint span { color: var(--color-mint-action); }

.verb-chip--cobalt .verb-chip__tile { background: var(--color-cobalt-pulse); }
.verb-chip--cobalt span { color: var(--color-cobalt-pulse); }

.verb-chip--magenta .verb-chip__tile { background: var(--color-magenta-spark); }
.verb-chip--magenta span { color: var(--color-magenta-spark); }

/* ---- Sections ---- */
.section {
  padding: var(--section-gap) 0;
}

.section--white { background: var(--color-pure-white); }
.section--tint { background: var(--color-sunset-fade); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 8rem 0 3.5rem;
  background: var(--color-pure-white);
  position: relative;
  overflow: hidden;
}

.page-hero--tint {
  background: var(--color-sunset-fade);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(247, 59, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--color-brandwood);
  margin-bottom: 1rem;
}

.page-hero__title--coral {
  color: var(--color-coral-flame);
}

.page-hero__lead {
  font-size: var(--text-subheading);
  line-height: 1.45;
  color: rgba(54, 8, 2, 0.62);
  max-width: 36rem;
}

/* ---- Quick Links (home) ---- */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.quick-link {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
  background: var(--color-sunset-fade);
  border-radius: var(--radius-large-cards);
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.quick-link:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 59, 32, 0.25);
  box-shadow: var(--shadow-card-hover);
}

.quick-link__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-coral-flame);
}

.quick-link__desc {
  font-size: var(--text-body-sm);
  color: rgba(54, 8, 2, 0.6);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, var(--text-heading-lg));
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--color-brandwood);
  margin-bottom: 1rem;
}

.section-title--coral { color: var(--color-coral-flame); }

.section-lead {
  font-size: clamp(1.0625rem, 2vw, var(--text-subheading));
  line-height: 1.45;
  color: rgba(54, 8, 2, 0.62);
  max-width: 38rem;
}

/* ---- Cards ---- */
.card {
  background: var(--color-pure-white);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card--warm { background: var(--color-sunset-fade); }

.card--accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(54, 8, 2, 0.45);
  background: rgba(54, 8, 2, 0.06);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.875rem;
}

.card__badge--coral {
  color: var(--color-coral-flame);
  background: rgba(247, 59, 32, 0.08);
}

.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-subheading);
  margin-bottom: 0.75rem;
  color: var(--color-brandwood);
}

.card__text {
  font-size: var(--text-body);
  line-height: 1.65;
  color: rgba(54, 8, 2, 0.68);
  margin-bottom: 1.25rem;
}

.card__link {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-coral-flame);
  transition: opacity 0.2s;
}

.card__link:hover { opacity: 0.75; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

/* ---- Team ---- */
.team__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-heading-sm);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card--team {
  text-align: center;
  padding: 2.25rem var(--card-padding);
}

.card--team:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card__avatar {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-action-tiles);
  background: var(--gradient-coral-flame);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
  box-shadow: 0 4px 16px rgba(247, 59, 32, 0.25);
}

.card__avatar--alt {
  background: linear-gradient(135deg, #477ee9, #34c771);
  box-shadow: 0 4px 16px rgba(71, 126, 233, 0.25);
}

.card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.card__role {
  font-size: var(--text-body-sm);
  color: rgba(54, 8, 2, 0.48);
  margin-bottom: 0.875rem;
}

.card__email {
  font-size: var(--text-body-sm);
  color: var(--color-coral-flame);
  word-break: break-all;
}

.card__email:hover { text-decoration: underline; }

/* ---- Apps ---- */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.app-card {
  background: var(--color-pure-white);
  border-radius: var(--radius-large-cards);
  padding: var(--card-padding);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.app-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.app-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-action-tiles);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-card__icon--mint { background: var(--color-mint-action); }
.app-card__icon--cobalt { background: var(--color-cobalt-pulse); }
.app-card__icon--magenta { background: var(--color-magenta-spark); }
.app-card__icon--coral { background: var(--color-coral-flame); }

.app-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.app-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.app-card__tag--mint { color: var(--color-mint-action); }
.app-card__tag--cobalt { color: var(--color-cobalt-pulse); }
.app-card__tag--magenta { color: var(--color-magenta-spark); }
.app-card__tag--coral { color: var(--color-coral-flame); }

.app-card__desc {
  font-size: var(--text-body);
  line-height: 1.65;
  color: rgba(54, 8, 2, 0.68);
  flex: 1;
}

.app-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: var(--text-body-sm);
  color: var(--color-coral-flame);
  border: 1.5px solid var(--color-coral-flame);
  border-radius: var(--radius-buttons);
  padding: 0.5625rem 1.125rem;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.app-card__link:hover {
  background: rgba(247, 59, 32, 0.04);
}

/* ---- Services ---- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.action-verb {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(54, 8, 2, 0.06);
}

.action-verb:last-child { border-bottom: none; }

.action-verb__tile {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-action-tiles);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.action-verb--mint .action-verb__tile { background: var(--color-mint-action); }
.action-verb--mint .action-verb__label { color: var(--color-mint-action); }

.action-verb--cobalt .action-verb__tile { background: var(--color-cobalt-pulse); }
.action-verb--cobalt .action-verb__label { color: var(--color-cobalt-pulse); }

.action-verb--magenta .action-verb__tile { background: var(--color-magenta-spark); }
.action-verb--magenta .action-verb__label { color: var(--color-magenta-spark); }

.action-verb__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 0.625rem;
}

.action-verb__desc {
  font-size: var(--text-body);
  line-height: 1.65;
  color: rgba(54, 8, 2, 0.62);
  max-width: 40rem;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--color-blush-mist);
  padding: 4.5rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--color-coral-flame);
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.form-group label {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-brandwood);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-body);
  padding: 0.8125rem 1rem;
  border: 1.5px solid rgba(54, 8, 2, 0.12);
  border-radius: var(--radius-cards);
  background: var(--color-pure-white);
  color: var(--color-brandwood);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-coral-flame);
  box-shadow: 0 0 0 3px rgba(247, 59, 32, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(54, 8, 2, 0.32);
}

.form-feedback {
  font-size: var(--text-body-sm);
  padding: 0.8125rem;
  border-radius: var(--radius-cards);
  text-align: center;
}

.form-feedback--success {
  background: rgba(52, 199, 113, 0.1);
  color: var(--color-mint-action);
}

.form-feedback--error {
  background: rgba(247, 59, 32, 0.08);
  color: var(--color-coral-flame);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  font-size: var(--text-body);
  color: var(--color-coral-flame);
  font-weight: 500;
}

.contact-link:hover { text-decoration: underline; }

/* ---- Footer ---- */
.footer {
  background: var(--color-brandwood);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0 calc(var(--bottom-nav-height) + 2.5rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-pure-white);
}

.footer__sub {
  font-size: var(--text-caption);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.125rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: var(--text-body-sm);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--color-pure-white); }

.footer__copy {
  font-size: var(--text-body-sm);
  text-align: right;
}

/* ---- Footer Newsletter ---- */
.footer-newsletter {
  background: var(--color-brandwood);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0;
}

.footer-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-newsletter__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-body-lg);
  color: var(--color-pure-white);
  margin: 0 0 0.25rem;
}

.footer-newsletter__desc {
  font-size: var(--text-body-sm);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-newsletter__form {
  min-width: 0;
}

@media (max-width: 640px) {
  .footer-newsletter__inner {
    grid-template-columns: 1fr;
  }
}

/* ---- Bottom Nav ---- */
.bottom-nav {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: calc(100% - 2rem);
  max-width: 720px;
  pointer-events: none;
}

.bottom-nav__pill,
.bottom-nav__support {
  pointer-events: auto;
}

.bottom-nav__pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  background: var(--color-pure-white);
  border: 1.5px solid var(--color-coral-flame);
  border-radius: var(--radius-nav-pill);
  box-shadow: var(--shadow-lg);
  padding: 0.4375rem 0.625rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.bottom-nav__pill::-webkit-scrollbar { display: none; }

.bottom-nav__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-brandwood);
  padding: 0.5625rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.bottom-nav__item:hover { background: var(--color-sunset-fade); }

.bottom-nav__item--active {
  color: var(--color-coral-flame);
  background: var(--color-sunset-fade);
}

.bottom-nav__support {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-brandwood);
  background: var(--color-pure-white);
  border: 1.5px solid rgba(54, 8, 2, 0.12);
  border-radius: var(--radius-nav-pill);
  box-shadow: var(--shadow-lg);
  padding: 0.6875rem 1.125rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.bottom-nav__support:hover {
  border-color: var(--color-coral-flame);
  background: var(--color-sunset-fade);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .top-nav__links { display: none; }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__tagline,
  .hero__actions,
  .hero__stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }

  .sphere-3d {
    width: min(300px, 75vw);
    height: min(300px, 75vw);
  }

  .contact-grid { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__copy { text-align: center; }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .bottom-nav__item span { display: none; }
  .bottom-nav__item { padding: 0.625rem; }
  .bottom-nav__item[data-section="accueil"] span,
  .bottom-nav__item[data-section="contact"] span { display: inline; }
}

@media (max-width: 600px) {
  :root { --section-gap: 4rem; }

  .hero { padding-top: 6rem; padding-bottom: 7rem; }

  .verbs-strip__inner { gap: 1.5rem 2rem; }

  .action-verb {
    flex-direction: column;
    gap: 1rem;
  }

  .bottom-nav__support span { display: none; }
  .bottom-nav__support { padding: 0.6875rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .animate-fade-up,
  .animate-scale-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .bottom-nav--enter {
    opacity: 1;
    transform: translateX(-50%);
    animation: none;
  }

  .hero__logo {
    animation: none;
  }

  .sphere-3d__orbit,
  .sphere-3d__float {
    animation: none;
  }
}
