@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');

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

:root {
  --blue-deep:    #1a3ac1;
  --blue-mid:     #2b52d4;
  --blue-hero:    #1e3fb8;
  --blue-navy:    #112069;
  --blue-outer:   #8fb3f5;
  --white:        #ffffff;
  --white-dim:    rgba(255,255,255,0.65);
  --white-faint:  rgba(255,255,255,0.12);
  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--blue-outer);
  color: var(--white);
  min-height: 100vh;
}

/* ─── PAGE WRAPPER ─── */
.page-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--blue-mid) 0%, var(--blue-hero) 45%, var(--blue-navy) 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* subtle vertical grid lines */
.page-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 1px,
    transparent 1px,
    transparent calc(100% / 6)
  );
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}

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

.nav-cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 80px 48px 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ─── EMAIL FORM ─── */
.email-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 16px;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-right: none;
  border-radius: 6px 0 0 6px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.email-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.email-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.14);
}

.email-form button {
  padding: 13px 22px;
  background: var(--white);
  color: var(--blue-deep);
  border: none;
  border-radius: 0 6px 6px 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.email-form button:hover {
  opacity: 0.9;
}

.form-note {
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-bottom: 60px;
}

/* ─── COMING SOON BADGE ─── */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-faint);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  margin-bottom: 28px;
}

.launch-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7de8b4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ─── MOUNTAIN DECORATION ─── */
.mountain {
  position: relative;
  z-index: 4;
  margin-top: 20px;
  height: 180px;
  overflow: hidden;
}

.mountain svg {
  width: 100%;
  height: 100%;
}

/* ─── WHITE SECTION (below fold) ─── */
.content-section {
  background: #ffffff;
  color: #1a2040;
  padding: 80px 48px;
  position: relative;
  z-index: 5;
}

.content-section .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8892b0;
  margin-bottom: 14px;
  text-align: center;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  color: #1a2040;
  margin-bottom: 56px;
}

/* ─── CARD GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: #f7f8fc;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #e8ecf5;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(43, 82, 212, 0.1);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #1a2040;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.875rem;
  color: #6b7a99;
  line-height: 1.65;
}

.card .coming-soon-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: rgba(43, 82, 212, 0.08);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ─── FOOTER ─── */
footer {
  background: #0e1a4a;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 48px;
  font-size: 0.8rem;
  position: relative;
  z-index: 5;
}

footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

/* ─── FULL-BLUE PAGE (About, Contact, News) ─── */
.blue-page .hero {
  padding-top: 60px;
}

.blue-page .page-body {
  position: relative;
  z-index: 5;
  padding: 0 48px 80px;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
}

.contact-form textarea {
  min-height: 130px;
}

.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: var(--white);
  color: var(--blue-deep);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

/* ─── NEWS CARD ─── */
.news-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.news-card {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
}

.news-card .tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.825rem;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ─── TEAM GRID ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 36px 20px 28px;
  background: rgba(255,255,255,0.05);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
}

.team-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* ─── DIVIDER ─── */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 48px 0;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding-bottom: 24px;
  position: relative;
  z-index: 5;
}

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

.scroll-chevrons span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255,255,255,0.4);
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s infinite;
}

.scroll-chevrons span:nth-child(2) { animation-delay: 0.15s; opacity: 0.6; }
.scroll-chevrons span:nth-child(3) { animation-delay: 0.30s; opacity: 0.35; }

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(3px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 50px 24px 0; }
  .page-wrapper::before { display: none; }
  .content-section { padding: 56px 24px; }
  .blue-page .page-body { padding: 0 24px 56px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
