@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --bg: #030712;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.42);
  --cyan: #22d3ee;
  --blue: #0070f3;
  --violet: #7c3aed;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-width: 320px;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 112, 243, 0.25), transparent 30%),
    radial-gradient(circle at 82% 58%, rgba(124, 58, 237, 0.22), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(34, 211, 238, 0.10), transparent 28%),
    #030712;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 72%);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.48;
  animation: breathe 8s ease-in-out infinite;
}

.ambient-one {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 2%;
  background: rgba(0, 112, 243, 0.35);
}

.ambient-two {
  width: 360px;
  height: 360px;
  right: 3%;
  bottom: 14%;
  background: rgba(124, 58, 237, 0.32);
  animation-delay: -2s;
}

.ambient-three {
  width: 300px;
  height: 300px;
  left: 8%;
  top: 16%;
  background: rgba(34, 211, 238, 0.13);
  animation-delay: -4s;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-rows: 1fr auto auto;
}

.wave-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform 500ms ease-out;
  z-index:2;
}

.digital-wave {
  position: absolute;
  right: -12vw;
  top: 3vh;
  width: min(1050px, 78vw);
  height: min(660px, 72vh);
  overflow: visible;
}

.wave-aura {
  animation: breathe 7s ease-in-out infinite;
}

.wave-motion-slow {
  transform-origin: 72% 44%;
  animation: swirlWave 10s ease-in-out infinite;
}

.particle-field circle {
  fill: #bae6fd;
  opacity: 0.55;
  animation: pulseDot 3.6s ease-in-out infinite;
}

.particle-field circle:nth-child(3n) {
  fill: #a78bfa;
  animation-delay: -1s;
}

.particle-field circle:nth-child(4n) {
  opacity: 0.95;
  animation-delay: -2.1s;
}

.rings {
  transform-origin: 1030px 246px;
  animation: slowSpin 32s linear infinite;
}

.content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform 500ms ease-out;
}

.brand-mark{
  display:inline-flex;
  align-items:center;
  gap:6px;

  padding:0 4px 0 1px;

  height:120px;
  border-radius:4px;
  background:
linear-gradient(
90deg,
rgba(255,255,255,900),
rgba(255,255,255,.000)
);

  color:rgba(255,255,255,.58);

  font-size:7px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;

  backdrop-filter:blur(8px);

  z-index:0;
  opacity:.55;
}

.mark-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.85);
}

h1{
  margin:26px auto 0;

  font-family:Sora, Inter, sans-serif;

  font-size:clamp(48px, 8vw, 118px);

  line-height:.86;
  letter-spacing:-0.085em;

  text-transform:uppercase;

  color:#fff;

  text-align:center;

  text-shadow:0 18px 70px rgba(0,0,0,.45);
}

.subtitle {
  margin: 28px 0 20;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.pillar-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(7, minmax(112px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto 18px;
}

.pillar-card {
  min-height: 145px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  transform: translateY(0);
  animation: cardRise 900ms ease both, cardFloat 5.5s ease-in-out infinite;
  animation-delay: var(--delay), calc(var(--delay) + 900ms);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.45);
  background:
    linear-gradient(180deg, rgba(34,211,238,0.13), rgba(124,58,237,0.06)),
    rgba(255,255,255,0.07);
}

.icon-wrap {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.26);
  background: rgba(34, 211, 238, 0.07);
  box-shadow: inset 0 0 18px rgba(34, 211, 238, 0.05), 0 0 28px rgba(34, 211, 238, 0.08);
}

.icon-wrap svg {
  width: 21px;
  height: 21px;
  stroke: #bae6fd;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h2 {
  margin: 18px 0 0;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(15px, 1.1vw, 19px);
  letter-spacing: -0.04em;
}

.pillar-card p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--faint);
}

.footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.44; }
  50% { transform: scale(1.06); opacity: 0.68; }
}

@keyframes swirlWave {
  0%, 100% { transform: translateX(0) translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateX(-22px) translateY(14px) rotate(-1.2deg) scale(1.025); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.28); }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes cardRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

@media (max-width: 1100px) {
  .digital-wave {
    opacity: 0.6;
    right: -42vw;
    width: 1050px;
  }

  .pillar-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .pillar-card {
    min-height: 126px;
  }
}

@media (max-width: 780px) {
  .hero {
    padding: 24px 18px;
    grid-template-rows: 1fr auto auto;
  }

  .content {
    align-self: start;
    padding-top: 8vh;
  }

  h1 {
    font-size: clamp(46px, 18vw, 72px);
  }

  .subtitle {
    font-size: 17px;
  }

  .brand-mark {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .digital-wave {
    top: 20vh;
    right: -520px;
    width: 980px;
    opacity: 0.52;
  }

  .pillar-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .pillar-card {
    min-height: 92px;
    padding: 12px;
  }

  .icon-wrap {
    width: 28px;
    height: 28px;
  }

  .icon-wrap svg {
    width: 16px;
    height: 16px;
  }

  .pillar-card h2 {
    margin-top: 10px;
    font-size: 14px;
  }

  .pillar-card p {
    display: none;
  }

  .footer {
    font-size: 10px;
  }
}

@media (max-height: 720px) {
  .content {
    transform: scale(0.92);
    transform-origin: left center;
  }

  .pillar-card {
    min-height: 104px;
  }
}

.brand-logo{
  width:308px;
  height:308px;
  object-fit:contain;
  opacity:.95;

  filter:
    drop-shadow(0 0 8px rgba(34,211,238,.28))
    drop-shadow(0 0 16px rgba(124,58,237,.18));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
