@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;0,9..40,1000;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700;1,9..40,800;1,9..40,900;1,9..40,1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import './fonts/helvetica-now-display/stylesheet.css';

:root {
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-glass: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.07);
  --border-glow: rgba(83, 67, 224,0.25);
  --text: #f0f0f0;
  --text-muted: #666;
  --text-sub: #999;
  --peach: #5343e0;
  --peach-light: #8e83f2;
  --peach-glow: rgba(83, 67, 224,0.15);
  --peach-glow-strong: rgba(83, 67, 224,0.3);
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Helvetica Now Display', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 96px 0;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--peach), #ff5c3a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--peach);
  color: #000;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--peach-light);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  padding-bottom: 0;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(83, 67, 224,0.12) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0 20px 0;
    background-image: radial-gradient(52.389% 44% at 50% 100%, color-mix(in srgb, var(--peach) 50%, transparent) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--peach-light);
  font-weight: 500;
  margin-bottom: 32px;
  animation: fade-up 0.6s ease both;
}

.hero-badge span {
  background: linear-gradient(135deg, var(--peach), #ff5c3a);
  color: #000;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 100px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fade-up 0.6s ease 0.1s both;
}

.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-sub);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fade-up 0.6s ease 0.2s both;
}
.hero-logo {
    margin-bottom: 100px;
}
.hero-logo img {
    max-width: calc(100% - 20px)
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fade-up 0.6s ease 0.3s both;
}

.logo {
    filter: invert(1) brightness(10)
}

.msct-home {
    width: 100%;
    height: 200px;
    background-image: url(assets/images/thinking2.gif);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 40px;
    margin-bottom: -30px;
    z-index: 1;
    position: relative;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(83, 67, 224,0.25);
  width: 100%;
  max-width: 320px;
  margin-bottom: 5px;
}

.btn-primary:hover {
  background: var(--peach-light);
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(83, 67, 224,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 52px;
  width: 100%;
  max-width: 320px;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.hero-note svg {
  color: var(--peach);
}

/* ─── FOOTER ─── */
footer {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border-top: 1px solid var(--border)
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (min-width: 600px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 120px 0;
  }
}