/* ============================================================
   FINAL DESIGN — SkaiiNyght Solutions LLC
   Combines Overdrive Refined (D12) + Catalyst Dashboard (D13)
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --bg-deep:        #0A060C;
  --bg-surface:     #140A12;
  --bg-card:        #1C0E18;
  --bg-card-alt:    #1E1028;
  --text-primary:   #F5F0F3;
  --text-secondary: #8A6B80;
  --text-muted:     #5A4555;
  --pink:           #FF00EE;
  --pink-deep:      #CC00DD;
  --pink-glow:      rgba(255, 0, 238, 0.15);
  --yellow:         #FCFE01;
  --violet:         #B800E6;
  --gradient:       linear-gradient(135deg, #FF00EE, #FCFE01);
  --gradient-brand: linear-gradient(135deg, #FF00EE, #FCFE01);
  --gradient-pink:  linear-gradient(135deg, #FF00EE, #CC00DD);

  --font-display: 'Chakra Petch', sans-serif;
  --font-body:    'Titillium Web', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-deep);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg-deep);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ---------- UTILITIES ---------- */
.yellow { color: var(--yellow); }
.pink-highlight { color: var(--pink); }
.yellow-dot {
  color: var(--yellow);
  font-size: 0.5em;
  vertical-align: middle;
  margin-right: 6px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 6, 12, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 6, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 0, 238, 0.12);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.nav__logo-line {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--pink);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section__desc {
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__hex-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 0, 238, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255, 0, 238, 0.08);
  border: 1px solid rgba(255, 0, 238, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero__badge-year {
  color: var(--yellow);
  font-weight: 700;
}

/* Hero title */
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  letter-spacing: 6px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px rgba(255, 0, 238, 0.35));
  margin-bottom: 8px;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Hero CTA */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--yellow);
  padding: 16px 36px;
  border-radius: 6px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  box-shadow: 0 0 24px rgba(252, 254, 1, 0.15);
}

.hero__cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 48px rgba(252, 254, 1, 0.35);
}

.hero__cta svg {
  transition: transform 0.3s ease;
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   HERO ENTRANCE ANIMATION
   ============================================================ */
.anim-hero {
  opacity: 0;
  transform: translateY(30px);
}

.anim-hero.visible {
  animation: heroFadeUp 0.7s var(--ease-out) forwards;
}

.anim-hero[data-delay="1"].visible { animation-delay: 0.15s; }
.anim-hero[data-delay="2"].visible { animation-delay: 0.30s; }
.anim-hero[data-delay="3"].visible { animation-delay: 0.45s; }
.anim-hero[data-delay="4"].visible { animation-delay: 0.60s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.30s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 120px 32px 80px;
  position: relative;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- BENTO GRID ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  margin-top: 40px;
}

/* Large card: left, spans 2 rows */
.bento-card--large {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 238, 0.12);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card--large:hover {
  border-color: rgba(255, 0, 238, 0.3);
  box-shadow: 0 0 40px rgba(255, 0, 238, 0.06);
}

.bento-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bento-card__icon-hex {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 238, 0.1);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.bento-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bento-card__tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255, 0, 238, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: auto;
}

.bento-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bento-card__chart-area {
  flex: 1;
  min-height: 100px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(10, 6, 12, 0.5);
  padding: 12px;
}

.bento-card__chart-area canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.bento-card__stat-row {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 0, 238, 0.08);
}

.bento-card__mini-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
}

.bento-card__mini-stat-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ---------- HEX CARDS (right column) ---------- */
.bento-card--hex {
  grid-column: 2;
}

.bento-card__hex-shape {
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 238, 0.12);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bento-card__hex-shape:hover {
  border-color: rgba(255, 0, 238, 0.3);
  box-shadow: 0 0 40px rgba(255, 0, 238, 0.06);
}

.bento-card__hex-icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.bento-card__hex-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.bento-card__hex-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.bento-card__hex-sparkline {
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

/* ---------- BOTTOM STATS ROW ---------- */
.bento-card--stats {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 238, 0.12);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card--stats:hover {
  border-color: rgba(255, 0, 238, 0.3);
  box-shadow: 0 0 40px rgba(255, 0, 238, 0.06);
}

.stat-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-counter__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.stat-counter__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-counter__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 0, 238, 0.12);
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product {
  padding: 120px 32px 80px;
  background: var(--bg-surface);
  position: relative;
}

.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.3;
}

.product__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- FEATURE CARDS ---------- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 238, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(255, 0, 238, 0.3);
  box-shadow: 0 8px 48px rgba(255, 0, 238, 0.08);
  transform: translateY(-4px) scale(1.01);
}

.feature-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-card__hex-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 238, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 0, 238, 0.06);
}

.feature-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Bar charts inside feature cards */
.feature-card__bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 0, 238, 0.08);
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--pink), rgba(255, 0, 238, 0.3));
  border-radius: 3px 3px 0 0;
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s var(--ease-out);
}

.bar.is-animated {
  transform: scaleY(1);
}

.bar--accent {
  background: linear-gradient(to top, var(--yellow), rgba(252, 254, 1, 0.3));
}

.bar-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ============================================================
   METRICS DASHBOARD PANEL
   ============================================================ */
.metrics-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 238, 0.15);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.metrics-panel__top-border {
  height: 3px;
  background: var(--gradient);
}

.metrics-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 0, 238, 0.08);
  background: rgba(255, 0, 238, 0.03);
}

.metrics-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
}

.metrics-panel__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.metrics-panel__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(252, 254, 1, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(252, 254, 1, 0); }
}

.metrics-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-cell {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 0, 238, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-cell:last-child {
  border-right: none;
}

.metric-cell__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.metric-cell__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
  line-height: 1;
}

.metric-unit {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
}

/* Sparkline chart in metric cell */
.metric-cell__chart-wrap {
  margin-bottom: 12px;
  width: 100%;
  max-width: 180px;
}

.metric-cell__chart {
  display: block;
  width: 100%;
  height: 55px;
}

/* Trend arrow (Metric 2) */
.metric-cell__trend-arrow {
  margin-bottom: 12px;
}

.trend-arrow-path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.5s var(--ease-out);
}

.trend-arrow-dot {
  transition: opacity 0.4s ease 1.2s;
}

.metric-cell.is-animated .trend-arrow-path {
  stroke-dashoffset: 0;
}

.metric-cell.is-animated .trend-arrow-dot {
  opacity: 0.9;
}

/* Ring chart (Metric 3) */
.metric-cell__ring {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.ring-chart {
  width: 100%;
  height: 100%;
}

.ring-chart__fill {
  transition: stroke-dashoffset 1.5s var(--ease-out);
}

/* Stars (Metric 4) */
.metric-cell__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star {
  width: 22px;
  height: 22px;
}

.star--filled path {
  fill: var(--yellow);
}

.star--partial path {
  fill: url(#partialStar);
}

/* Trend labels */
.metric-cell__trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
}

.metric-cell__trend--up {
  color: var(--pink);
}

.metric-cell__trend--muted {
  color: var(--text-muted);
}

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-soon {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF00EE, #CC00DD);
  padding: 80px 32px;
  text-align: center;
  margin-top: 0;
}

.coming-soon__stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 22px
  );
}

/* ---------- SLOGAN BANNERS ---------- */
.slogan {
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 0, 238, 0.08);
  border-bottom: 1px solid rgba(255, 0, 238, 0.08);
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.slogan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 0, 238, 0.04), transparent 70%);
  pointer-events: none;
}

.slogan--alt {
  background: var(--bg-surface);
}

.slogan--inline {
  padding: 3rem 0;
  margin: 3rem 0;
  border-top: 1px solid rgba(255, 0, 238, 0.08);
  border-bottom: 1px solid rgba(255, 0, 238, 0.08);
  background: transparent;
}

.slogan--inline::before {
  display: none;
}

.slogan__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.slogan__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.5vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.3;
}

.slogan--inline .slogan__text {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text-secondary);
}

.slogan--inline .slogan__text .yellow {
  color: var(--yellow);
}

.coming-soon__content {
  position: relative;
  z-index: 2;
}

.coming-soon__sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.coming-soon__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.coming-soon__yellow {
  color: var(--yellow);
}

.coming-soon__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}

.coming-soon__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  background: var(--yellow);
  color: var(--bg-deep);
  padding: 4px 14px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 0, 238, 0.08);
  padding: 40px 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  padding: 6rem 0;
  background: var(--bg-surface);
}

.contact__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-top: 1rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 238, 0.08);
  border: 1px solid rgba(255, 0, 238, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact__info-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 0.95rem;
  color: var(--pink);
  font-weight: 500;
  transition: color 0.3s;
}

a.contact__info-value:hover {
  color: var(--yellow);
}

.contact__info-value--muted {
  color: var(--text-secondary);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__form-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.contact__form-input {
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 238, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.contact__form-input::placeholder {
  color: var(--text-muted);
}

.contact__form-input:focus {
  border-color: rgba(255, 0, 238, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 0, 238, 0.08);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--yellow);
  color: #0A060C;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
}

.contact__form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(252, 254, 1, 0.25);
}

/* ============================================================
   RESPONSIVE: TABLET (768 - 1024)
   ============================================================ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--large {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-card--hex {
    grid-column: 1;
  }

  .bento-card--stats {
    grid-column: 1;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .metrics-panel__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-cell {
    border-bottom: 1px solid rgba(255, 0, 238, 0.06);
  }

  .metric-cell:nth-child(2) {
    border-right: none;
  }

  .metric-cell:nth-child(3),
  .metric-cell:nth-child(4) {
    border-bottom: none;
  }
}

/* ============================================================
   RESPONSIVE: MOBILE (<768)
   ============================================================ */
@media (max-width: 768px) {
  /* --- Prevent horizontal overflow --- */
  html, body {
    overflow-x: hidden;
  }

  /* --- Nav --- */
  .nav__inner {
    padding: 0 16px;
    height: 56px;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 6, 12, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 0, 238, 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    font-size: 0.9rem !important;
    letter-spacing: 0.15em !important;
  }

  .nav__mobile-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 6px;
    z-index: 100;
  }

  .nav__mobile-toggle span {
    width: 22px;
    height: 2.5px;
    border-radius: 2px;
  }

  /* --- Hero --- */
  .hero__title {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    letter-spacing: 2px;
    padding: 0 8px;
  }

  .hero__subtitle {
    letter-spacing: 0.2em;
    font-size: 0.8rem;
  }

  .hero__tagline {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .hero__cta {
    font-size: 0.78rem;
    padding: 14px 28px;
  }

  /* --- Sections --- */
  .about,
  .product {
    padding: 60px 16px 48px;
  }

  .about__container,
  .product__container {
    padding: 0;
  }

  .section__heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .section__desc {
    font-size: 0.92rem;
  }

  /* --- Slogans --- */
  .slogan {
    padding: 2.5rem 20px;
  }

  .slogan__text {
    font-size: clamp(1rem, 4.5vw, 1.5rem);
  }

  .slogan--inline {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .slogan--inline .slogan__text {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
  }

  /* --- Bento Grid --- */
  .bento-grid {
    gap: 14px;
  }

  .bento-card--large {
    padding: 20px;
    overflow: hidden;
  }

  .bento-card__text {
    font-size: 0.88rem;
  }

  .bento-card__chart-area {
    overflow: hidden;
    margin: 0 -4px;
  }

  .bento-card__chart-area canvas {
    width: 100% !important;
    height: auto !important;
  }

  .bento-card__stat-row {
    gap: 16px;
  }

  .bento-card__mini-stat-value {
    font-size: 1.4rem;
  }

  .bento-card__hex-shape {
    padding: 20px;
  }

  /* --- Stat Counter Row --- */
  .bento-card--stats {
    flex-wrap: wrap;
    padding: 16px;
    gap: 4px 0;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-counter__divider {
    display: none;
  }

  .stat-counter {
    min-width: unset;
    padding: 12px 8px;
    text-align: center;
  }

  .stat-counter__value {
    font-size: 1.4rem;
  }

  .stat-counter__label {
    font-size: 0.55rem;
  }

  /* --- Feature Cards --- */
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card__desc {
    font-size: 0.85rem;
  }

  .feature-card__num {
    font-size: 1.4rem;
  }

  /* --- Metrics Dashboard --- */
  .metrics-panel {
    padding: 0;
    margin-top: 1.5rem;
    max-width: 100%;
    overflow: hidden;
  }

  .metrics-panel__header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 14px 16px;
  }

  .metrics-panel__grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .metric-cell {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 0, 238, 0.06);
    overflow: hidden;
    min-width: 0;
  }

  .metric-cell:nth-child(odd) {
    border-right: 1px solid rgba(255, 0, 238, 0.06);
  }

  .metric-cell:nth-child(even) {
    border-right: none;
  }

  .metric-cell:nth-child(3),
  .metric-cell:nth-child(4) {
    border-bottom: none;
  }

  .metric-cell__value {
    font-size: 1.4rem;
  }

  .metric-cell__label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .metric-unit {
    font-size: 0.65rem;
  }

  .metric-cell__trend {
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .metric-cell__chart-wrap {
    overflow: hidden;
  }

  .metric-cell__chart-wrap canvas {
    width: 100% !important;
    height: 45px !important;
  }

  .metric-cell__trend-arrow svg {
    width: 40px;
    height: 40px;
  }

  /* --- Coming Soon --- */
  .coming-soon {
    padding: 48px 16px;
  }

  .coming-soon__sub {
    font-size: 0.75rem;
  }

  .coming-soon__heading {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: 3px;
  }

  /* --- Contact --- */
  .contact {
    padding: 4rem 0;
  }

  .contact__container {
    padding: 0 16px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__info {
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact__form-input {
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .contact__form-btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Footer --- */
  .footer {
    padding: 2rem 16px;
  }

  .footer__inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__copy {
    font-size: 0.72rem;
  }
}

/* ============================================================
   RESPONSIVE: SMALL MOBILE (<400)
   ============================================================ */
@media (max-width: 400px) {
  .hero__title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    letter-spacing: 1px;
  }

  .hero__badge {
    font-size: 0.58rem;
    padding: 5px 12px;
    gap: 5px;
  }

  .bento-card--large {
    padding: 16px;
  }

  .bento-card__mini-stat-value {
    font-size: 1.2rem;
  }

  .bento-card__mini-stat-label {
    font-size: 0.55rem;
  }

  .stat-counter__value {
    font-size: 1.2rem;
  }

  .metric-cell__value {
    font-size: 1.3rem;
  }

  .coming-soon__heading {
    font-size: clamp(1.6rem, 9vw, 2.5rem);
    letter-spacing: 2px;
  }

  .slogan__text {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }
}
