/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:        #0A0D16;
  --bg-card:   #111520;
  --bg-card2:  #141824;
  --pink:      #FF1F8E;
  --pink-dark: #D4006E;
  --pink-glow: rgba(255,31,142,0.18);
  --green:     #C6F135;
  --white:     #FFFFFF;
  --gray:      rgba(255,255,255,0.55);
  --gray-dim:  rgba(255,255,255,0.25);
  --border:    rgba(255,255,255,0.07);
  --font:      'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius:    14px;
  --radius-lg: 20px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,13,22,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: 110px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(180,0,80,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(80,20,150,0.1) 0%, transparent 60%),
              var(--bg);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--pink);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-pink {
  background: var(--pink);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font);
}

.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, transform 0.15s;
  font-family: var(--font);
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* Hero right: image + floating stat */
.hero-right {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #1a1f30;
  position: relative;
}

.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}

.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1f30 0%, #0f1520 50%, #1a0a20 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-img-placeholder svg { opacity: 0.15; }

.hero-stat-pill {
  position: absolute;
  bottom: -18px;
  left: -20px;
  background: #1a1e2c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  min-width: 140px;
}

.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--pink);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 2rem;
  white-space: nowrap;
}

.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS ── */
#stats {
  padding: 60px 5%;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-box {
  background: var(--bg-card);
  padding: 2rem 2rem;
  text-align: center;
  transition: background 0.2s;
}

.stat-box:hover { background: var(--bg-card2); }

.stat-val {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── SECTION COMMON ── */
section { padding: 90px 5%; }
.container { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}

.section-h {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}

/* ── SERVICES ── */
#services { background: var(--bg); }

.services-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-card {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.25s;
  position: relative;
  cursor: default;
}

.svc-card:hover { background: var(--bg-card2); }

.svc-card.featured {
  border: 1.5px solid var(--pink);
  background: rgba(255,31,142,0.06);
  margin: -1px;
  z-index: 1;
  border-radius: 2px;
}

.svc-icon {
  width: 44px; height: 44px;
  background: rgba(255,31,142,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.svc-icon svg { color: var(--pink); }

.svc-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── PLATFORM / MODEL ── */
#platform {
  background: linear-gradient(180deg, var(--bg) 0%, #0d1020 100%);
}

.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.platform-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a0a30 0%, #2a0550 50%, #0a0520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brain-svg-wrap {
  width: 75%;
  opacity: 0.8;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.platform-card:hover { border-color: rgba(255,31,142,0.3); }

.platform-card-icon {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--pink);
}

.platform-card-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.platform-card-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── ABOUT ── */
#about { background: var(--bg); }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-wide {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
}

.about-img-half {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card2);
}

.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.15);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
}

.about-tag {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}

.about-tag:hover { border-color: var(--pink); color: var(--white); }

/* ── INDUSTRIES ── */
#industries { background: linear-gradient(180deg, var(--bg) 0%, #080b14 100%); }

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 5rem;
  align-items: start;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.ind-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.ind-card:hover {
  border-color: rgba(255,31,142,0.4);
  background: rgba(255,31,142,0.05);
}

.ind-arrow {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── CASE STUDIES ── */
#cases { background: var(--bg); }

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

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.2s;
}

.case-card:hover {
  border-color: rgba(255,31,142,0.3);
  transform: translateY(-4px);
}

.case-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 1rem;
}

.case-metric {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.case-metric span { color: var(--pink); }

.case-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.case-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── CONTACT ── */
#contact { background: var(--bg); }

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--pink);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-left .eyebrow { color: rgba(255,255,255,0.7); }

.contact-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.contact-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.65rem;
}

.contact-detail-icon {
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: rgba(180,0,80,0.25);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: #1a0020; color: #fff; }

.form-single { margin-bottom: 1rem; }

.btn-green {
  background: var(--green);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: opacity 0.2s, transform 0.15s;
  font-family: var(--font);
  margin-top: 1.25rem;
}

.btn-green:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  max-width: 340px;
  margin-top: 0.75rem;
  line-height: 1.65;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray-dim);
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }

  section { padding: 60px 4%; }

  #hero {
    grid-template-columns: 1fr;
    padding: 100px 4% 60px;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-right { display: none; }

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

  .services-grid { grid-template-columns: 1fr; }
  .svc-card.featured { margin: 0; border: 1.5px solid var(--pink); }

  .platform-inner,
  .about-inner,
  .industries-inner { grid-template-columns: 1fr; gap: 2.5rem; }

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

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

  .contact-wrap { grid-template-columns: 1fr; padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
