/* ═══════════════════════════════════════════
   G3P Hub
   ═══════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --grad-hero: linear-gradient(135deg, #1a0a3e 0%, #2b1a6e 30%, #1e3a9e 60%, #1565c0 100%);
  --grad-section: linear-gradient(160deg, #1a0a3e 0%, #1e2d7a 60%, #1565c0 100%);
  --grad-dark: linear-gradient(160deg, #120836 0%, #1a1f6e 100%);
  --grad-card: linear-gradient(135deg, rgba(56, 189, 248, .08) 0%, rgba(37, 99, 235, .04) 100%);
  --cyan: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, .4);
  --blue: #2563eb;
  --purple: #7c3aed;
  --white: #ffffff;
  --w80: rgba(255, 255, 255, .8);
  --w60: rgba(255, 255, 255, .6);
  --w40: rgba(255, 255, 255, .4);
  --w30: rgba(255, 255, 255, .3);
  --w12: rgba(255, 255, 255, .12);
  --w08: rgba(255, 255, 255, .08);
  --w05: rgba(255, 255, 255, .05);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --font: 'Figtree', system-ui, sans-serif;
  --max-w: 1200px;
  --transition: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: #0d0628;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.3) transparent;
}

/* Custom Scrollbar — WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5ccffc, #9b5de5);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(13, 6, 40, .6);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s var(--transition), box-shadow .3s var(--transition);
}

nav.scrolled {
  background: rgba(13, 6, 40, .92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav-logo span {
  color: var(--cyan)
}

.nav-links {
  display: flex;
  gap: .5rem;
  list-style: none;
  align-items: center
}

.nav-links a {
  color: var(--w60);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  transition: all .25s var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .08)
}

.nav-links a.active {
  color: var(--cyan)
}

.nav-cta {
  background: var(--cyan);
  color: #0d0628;
  padding: .6rem 1.5rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s var(--transition);
  box-shadow: 0 0 20px rgba(56, 189, 248, .25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 25px rgba(56, 189, 248, .45);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 10px;
  transition: background .2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, .08)
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 9px;
  transition: all .3s var(--transition);
}

.nav-toggle span:nth-child(1) {
  top: 12px
}

.nav-toggle span:nth-child(2) {
  top: 19px
}

.nav-toggle span:nth-child(3) {
  top: 26px
}

.nav-toggle.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg)
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0
}

.nav-toggle.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(56, 189, 248, .3), transparent 70%);
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(124, 58, 237, .35), transparent 70%);
  animation-delay: 2s;
  animation-duration: 10s;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 70%);
  animation-delay: 4s;
  animation-duration: 12s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(30px, -20px) scale(1.1)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: .5rem 1.4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--w80);
  margin-bottom: 2rem;
  animation: fadeUp .7s ease both;
  backdrop-filter: blur(10px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 4px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.8)
  }
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.045em;
  animation: fadeUp .7s .12s ease both;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 560px;
  margin: 1.6rem auto 0;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--w60);
  animation: fadeUp .7s .24s ease both;
}

.hero-cta {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .7s .36s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .3s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.btn:hover::after {
  opacity: 1
}

.btn:hover {
  transform: translateY(-3px)
}

.btn:active {
  transform: translateY(-1px)
}

.btn-primary {
  background: var(--cyan);
  color: #0d0628;
  box-shadow: 0 4px 20px rgba(56, 189, 248, .3);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(56, 189, 248, .5)
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--w30);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeUp .7s .8s ease both;
}

.scroll-hint svg {
  animation: bob 2s ease-in-out infinite
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(7px)
  }
}

/* ── SECTION COMMONS ── */
section {
  padding: 7rem 5vw;
  position: relative
}

.section-header {
  text-align: center;
  margin-bottom: 4rem
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(56, 189, 248, .15);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-desc {
  color: var(--w60);
  margin-top: .8rem;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(56, 189, 248, .12), transparent);
  margin: 0;
}

/* ── ABOUT ── */
.about {
  background: var(--grad-section)
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--w60);
  line-height: 1.85;
  margin-top: 1.2rem;
  font-size: 1rem;
}

.about-text p strong {
  color: var(--white);
  font-weight: 700
}

/* Siri Orb — CSS Animated Sphere */
@property --orb-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.about-orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.siri-orb-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.siri-orb {
  --orb-size: clamp(200px, 28vw, 380px);
  --orb-c1: #38bdf8;
  /* cyan */
  --orb-c2: #2563eb;
  /* blue */
  --orb-c3: #7c3aed;
  /* purple */
  --orb-c4: #818cf8;
  /* indigo accent */
  --orb-speed: 18s;
  --orb-blur: 28px;
  --orb-contrast: 1.6;

  width: var(--orb-size);
  height: var(--orb-size);
  border-radius: 50%;
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
  background: radial-gradient(circle,
      rgba(255, 255, 255, .06) 0%,
      rgba(255, 255, 255, .02) 30%,
      transparent 70%);
}

/* Main animated gradient layer */
.siri-orb::before {
  content: "";
  display: block;
  grid-area: stack;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    conic-gradient(from calc(var(--orb-angle) * 1.2) at 30% 65%,
      var(--orb-c3) 0deg,
      transparent 45deg 315deg,
      var(--orb-c3) 360deg),
    conic-gradient(from calc(var(--orb-angle) * 0.8) at 70% 35%,
      var(--orb-c1) 0deg,
      transparent 60deg 300deg,
      var(--orb-c1) 360deg),
    conic-gradient(from calc(var(--orb-angle) * -1.5) at 65% 75%,
      var(--orb-c2) 0deg,
      transparent 90deg 270deg,
      var(--orb-c2) 360deg),
    conic-gradient(from calc(var(--orb-angle) * 2.1) at 25% 25%,
      var(--orb-c4) 0deg,
      transparent 30deg 330deg,
      var(--orb-c4) 360deg),
    conic-gradient(from calc(var(--orb-angle) * -0.7) at 80% 80%,
      var(--orb-c1) 0deg,
      transparent 45deg 315deg,
      var(--orb-c1) 360deg),
    radial-gradient(ellipse 120% 80% at 40% 60%,
      var(--orb-c3) 0%,
      transparent 50%);
  filter: blur(var(--orb-blur)) contrast(var(--orb-contrast)) saturate(1.3);
  animation: orbRotate var(--orb-speed) linear infinite;
  transform: translateZ(0);
  will-change: transform;
}

/* Glossy overlay */
.siri-orb::after {
  content: "";
  display: block;
  grid-area: stack;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
      rgba(255, 255, 255, .12) 0%,
      rgba(255, 255, 255, .04) 35%,
      transparent 65%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Outer glow behind the orb */
.siri-orb__glow {
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(56, 189, 248, .12) 0%,
      rgba(124, 58, 237, .08) 30%,
      transparent 65%);
  animation: orbPulseGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes orbRotate {
  from {
    --orb-angle: 0deg
  }

  to {
    --orb-angle: 360deg
  }
}

@keyframes orbPulseGlow {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.15);
    opacity: 1
  }
}

/* Reduce motion for accessibility */
@media(prefers-reduced-motion:reduce) {
  .siri-orb::before {
    animation: none
  }

  .siri-orb__glow {
    animation: none
  }
}

/* Mobile performance: reduce blur & size */
@media(max-width:768px) {
  .siri-orb {
    --orb-blur: 16px;
    --orb-contrast: 1.4;
  }
}

@media(max-width:480px) {
  .siri-orb {
    --orb-blur: 12px;
    --orb-contrast: 1.3;
    --orb-size: 200px;
  }

  .siri-orb-wrapper {
    padding: 1rem 0
  }
}

/* ── VALUES ── */
.values {
  padding: 8rem 5vw;
  background: var(--bg)
}

.values-inner {
  max-width: var(--max-w);
  margin: 0 auto
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all .4s var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  z-index: 1;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: opacity .4s var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 40px rgba(56, 189, 248, .1);
}

.value-card:hover::after {
  opacity: 1
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, .15), rgba(124, 58, 237, .15));
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all .4s var(--transition);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .05);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, .25), rgba(124, 58, 237, .25));
  border-color: rgba(56, 189, 248, .5);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, .2), inset 0 0 20px rgba(255, 255, 255, .1);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .8rem;
  letter-spacing: -.02em;
  color: var(--white);
}

.value-card p {
  color: var(--w60);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── HUB / PLATFORMS — CARD GRID ── */
.hub {
  background: var(--grad-hero);
  overflow: hidden;
}

.hub-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Individual Card ── */
.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 1.8rem 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: all 0.4s var(--transition);
  cursor: pointer;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(56, 189, 248, 0.06);
}

/* Gradient glow behind icon */
.hub-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
  transition: opacity 0.4s var(--transition);
}

.hub-card:hover .hub-card-glow {
  opacity: 0.3;
}

.hub-card--free .hub-card-glow {
  background: var(--cyan);
}

.hub-card--extra .hub-card-glow {
  background: #fbbf24;
}

.hub-card--pos .hub-card-glow {
  background: #a855f7;
}

.hub-card--soon .hub-card-glow {
  background: rgba(255, 255, 255, 0.2);
}

/* Icon */
.hub-card-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s var(--transition);
}

.hub-card:hover .hub-card-icon {
  transform: scale(1.12) translateY(-2px);
}

/* Category badge */
.hub-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hub-card-badge--free {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan);
}

.hub-card-badge--extra {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
}

.hub-card-badge--pos {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #a855f7;
}

.hub-card-badge--soon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--w40);
}

/* Title */
.hub-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

/* Description */
.hub-card-desc {
  color: var(--w40);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

/* CTA link at bottom */
.hub-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--w60);
  transition: all 0.3s var(--transition);
}

.hub-card-cta svg {
  transition: transform 0.3s var(--transition);
}

.hub-card:hover .hub-card-cta {
  color: var(--cyan);
}

.hub-card--extra:hover .hub-card-cta {
  color: #fbbf24;
}

.hub-card--pos:hover .hub-card-cta {
  color: #a855f7;
}

.hub-card:hover .hub-card-cta svg {
  transform: translateX(4px);
}

/* Hover border accent per category */
.hub-card--free:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.hub-card--extra:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.hub-card--pos:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

/* Coming soon cards */
.hub-card--soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.hub-card--soon .hub-card-icon {
  filter: grayscale(0.5) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* ── Responsive Grid ── */
@media (max-width: 900px) {
  .hub-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hub-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hub-card {
    padding: 1.8rem 1.4rem 1.6rem;
  }
}

/* ── CONTACT ── */
.contact {
  background: var(--grad-section);
  position: relative;
  overflow: hidden;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Decorative glow behind section */
.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-content .section-desc {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Email CTA Bar ── */
.contact-email-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.15);
  text-decoration: none;
  color: var(--white);
  transition: all 0.35s var(--transition);
}

.contact-email-cta:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(56, 189, 248, 0.1), 0 0 0 1px rgba(56, 189, 248, 0.08);
}

.contact-email-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: transform 0.3s var(--transition);
}

.contact-email-cta:hover .contact-email-icon {
  transform: scale(1.08);
}

.contact-email-text {
  flex: 1;
  text-align: left;
}

.contact-email-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.15rem;
}

.contact-email-addr {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--w80);
}

.contact-email-arrow {
  color: var(--w30);
  flex-shrink: 0;
  transition: all 0.3s var(--transition);
}

.contact-email-cta:hover .contact-email-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

/* ── Social Cards Grid ── */
.socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--w60);
  padding: 1.6rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.35s var(--transition);
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--transition);
}

.social-card:hover .social-card-icon {
  transform: scale(1.12);
}

.social-card-info {
  text-align: center;
}

.social-card-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.social-card-handle {
  display: block;
  font-size: 0.78rem;
  color: var(--w40);
  margin-top: 0.15rem;
}

/* Brand Colors */
.si-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.si-yt {
  background: #ff0000;
}

.si-li {
  background: #0077b5;
}

.si-tt {
  background: #010101;
  border: 1px solid rgba(255, 255, 255, .15);
}

/* Hover glow per brand */
.social-card:has(.si-ig):hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(225, 48, 108, 0.12);
}

.social-card:has(.si-yt):hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(255, 0, 0, 0.1);
}

.social-card:has(.si-li):hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(0, 119, 181, 0.12);
}

.social-card:has(.si-tt):hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, .25), 0 0 25px rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 600px) {
  .socials {
    grid-template-columns: 1fr 1fr;
  }

  .contact-email-cta {
    padding: 1rem 1.2rem;
  }
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 3rem 5vw;
  background: rgba(0, 0, 0, .35);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

footer p {
  color: var(--w30);
  font-size: .83rem;
  line-height: 1.8
}

footer strong {
  color: var(--w60)
}

footer .footer-brand {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--w60);
  margin-bottom: .8rem;
  letter-spacing: -.02em;
}

footer .footer-brand span {
  color: var(--cyan)
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 4vw;
    height: 64px;
  }

  /* ── Mobile dropdown panel ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    background: linear-gradient(165deg, rgba(18, 8, 54, 0.97) 0%, rgba(13, 6, 40, 0.98) 100%);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    gap: 0.25rem;
    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(56, 189, 248, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.97);
    transform-origin: top center;
    transition: opacity 0.35s var(--transition),
      visibility 0.35s var(--transition),
      transform 0.35s var(--transition);
    pointer-events: none;
  }

  /* Notch arrow pointing up */
  .nav-links::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: rgba(18, 8, 54, 0.97);
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    border-left: 1px solid rgba(56, 189, 248, 0.1);
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* ── Individual links ── */
  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    border: 1px solid transparent;
    color: var(--w60);
    background: transparent;
    transition: all 0.25s var(--transition);
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(56, 189, 248, 0.06);
    border-color: rgba(56, 189, 248, 0.12);
    color: var(--white);
  }

  .nav-links a.active {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.2);
    color: var(--cyan);
  }

  /* Staggered entrance animation for each link */
  .nav-links.open li:nth-child(1) {
    animation: navSlideIn 0.35s 0.05s ease both;
  }

  .nav-links.open li:nth-child(2) {
    animation: navSlideIn 0.35s 0.1s ease both;
  }

  .nav-links.open li:nth-child(3) {
    animation: navSlideIn 0.35s 0.15s ease both;
  }

  .nav-links.open li:nth-child(4) {
    animation: navSlideIn 0.35s 0.2s ease both;
  }

  .nav-links.open li:nth-child(5) {
    animation: navSlideIn 0.35s 0.25s ease both;
  }

  @keyframes navSlideIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Hamburger button ── */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.25s var(--transition);
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .nav-toggle.active {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
  }

  .nav-cta {
    display: none;
  }

  section {
    padding: 4.5rem 5vw;
  }

  h1 {
    letter-spacing: -.035em;
  }

  .hero {
    padding: 7rem 5vw 4rem;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 1.8rem;
  }
}

@media(max-width:480px) {
  .values-grid {
    grid-template-columns: 1fr
  }

  .robot-container {
    max-width: 320px;
    aspect-ratio: 3/4
  }

  .hub-link {
    padding: 1.2rem 1.4rem;
    gap: 1rem
  }
}