/* ---------------------------------------------------------
   Skypa Private Limited — corporate site
   Base: white + sky neutrals · Origeenx brand: gold on purple
---------------------------------------------------------- */

:root {
  /* Skypa base */
  --sky: #38bdf8;
  --sky-deep: #0284c7;
  --sky-soft: #e6f6fe;
  --ink: #0f172a;
  --slate: #475569;
  --slate-light: #94a3b8;
  --line: #e2e8f0;
  --white: #ffffff;

  /* Origeenx brand */
  --gold: #F5A623;
  --gold-dim: #C8841A;
  --purple: #12101A;
  --purple-2: #1C1828;
  --purple-3: #252235;

  --radius: 16px;
  --maxw: 1240px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-mark {
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark::after { content: "."; color: var(--gold); }
.brand-mark.light { color: #fff; }
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--sky-deep); }
.nav .nav-cta {
  background: var(--sky);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav .nav-cta:hover { background: var(--sky-deep); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--sky); color: #fff; }
.btn-primary:hover { background: var(--sky-deep); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sky); color: var(--sky-deep); }
.btn-gold { background: var(--gold); color: var(--purple); font-weight: 700; }
.btn-gold:hover { background: #ffb733; transform: translateY(-1px); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: rgba(245,166,35,0.5); }
.btn-outline-gold:hover { background: rgba(245,166,35,0.12); border-color: var(--gold); }
.btn-block { width: 100%; }

/* ---------------- Hero ---------------- */
.hero {
  background:
    radial-gradient(1200px 560px at 82% -8%, var(--sky-soft), transparent 62%),
    #ffffff;
  padding: 90px 0 70px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 24px;
}
.accent-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 1.16rem;
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 32px;
}
.lead strong { color: var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  list-style: none;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.02rem; color: var(--ink); }
.hero-trust span { font-size: 0.85rem; color: var(--slate-light); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo {
  width: 300px; height: 300px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 65%);
  filter: blur(40px);
  z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------------- Ticker ---------------- */
.ticker {
  background: var(--purple);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.ticker-track span {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}
.ticker-track span:nth-child(2n) { color: var(--gold); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------- Sections ---------------- */
.section { padding: 92px 0; }
.section-alt { background: #f8fafc; }
.section-tag {
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold); }
.section-tag.gold { color: var(--gold); }
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 760px;
  line-height: 1.15;
}
.section-title.light { color: #fff; }
.section-intro { color: var(--slate); max-width: 660px; margin-bottom: 50px; font-size: 1.08rem; }

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 60px;
}
.about-text p { color: var(--slate); margin-bottom: 18px; font-size: 1.08rem; }
.about-text strong { color: var(--ink); }
.stats {
  list-style: none;
  display: grid;
  gap: 18px;
  background: var(--sky-soft);
  padding: 32px;
  border-radius: var(--radius);
}
.stats li { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--sky-deep); letter-spacing: -0.02em; }
.stat-label { color: var(--slate); font-size: 0.92rem; }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.2s ease;
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky-soft);
  color: var(--sky-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
}
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { color: var(--slate); font-size: 0.95rem; }

/* ---------------- Mission ---------------- */
.mission {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(245,166,35,0.14), transparent 60%),
    var(--purple);
  color: #fff;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}
.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 38px;
}
.mv-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mv-card p { color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.7; }
.mv-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.pillar strong { font-size: 1.15rem; color: #fff; }
.pillar span { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ---------------- Origeenx (brand section) ---------------- */
.origeenx {
  background:
    radial-gradient(1000px 500px at 85% 10%, rgba(245,166,35,0.12), transparent 60%),
    linear-gradient(180deg, var(--purple), var(--purple-2));
  color: #fff;
}
.origeenx-head { display: flex; align-items: center; gap: 24px; margin-bottom: 26px; }
.origeenx-logo {
  width: 84px; height: 84px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.origeenx-intro {
  color: rgba(255,255,255,0.8);
  font-size: 1.14rem;
  max-width: 760px;
  margin-bottom: 52px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 54px;
}
.feat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.2s ease;
}
.feat:hover {
  border-color: rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.06);
  transform: translateY(-3px);
}
.feat-ic { font-size: 1.9rem; margin-bottom: 14px; }
.feat h3 { font-size: 1.15rem; margin-bottom: 8px; color: #fff; }
.feat p { color: rgba(255,255,255,0.7); font-size: 0.96rem; }

.origeenx-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(245,166,35,0.16), rgba(245,166,35,0.04));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 36px 40px;
}
.origeenx-cta h3 { font-size: 1.5rem; color: #fff; margin-bottom: 6px; }
.origeenx-cta p { color: rgba(255,255,255,0.75); }
.origeenx-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Team / Founders ---------------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: 0.2s ease;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.avatar {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: var(--sky-soft);
}
.avatar.film { background: rgba(245,166,35,0.15); }
.avatar.tech { background: rgba(56,189,248,0.15); }
.avatar.design { background: rgba(107,63,160,0.14); }
.avatar.biz { background: rgba(34,197,94,0.14); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold-dim); font-size: 0.84rem; font-weight: 700; margin-bottom: 12px; }
.team-card .bio { color: var(--slate); font-size: 0.92rem; }

/* ---------------- Investors ---------------- */
.invest-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 54px; align-items: start; }
.invest-text p { color: var(--slate); font-size: 1.08rem; margin-bottom: 22px; }
.invest-list { list-style: none; margin-bottom: 30px; }
.invest-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.02rem;
}
.invest-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--sky-deep);
  font-weight: 800;
}
.invest-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.metric-num { display: block; font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.metric-label { color: var(--slate); font-size: 0.9rem; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: start; }
.contact-info p { color: var(--slate); font-size: 1.08rem; margin-bottom: 28px; }
.contact-item { margin-bottom: 22px; display: flex; flex-direction: column; }
.contact-label {
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.11em;
  color: var(--slate-light); margin-bottom: 4px;
}
.contact-email { color: var(--sky-deep); font-weight: 700; font-size: 1.2rem; }
.contact-email:hover { text-decoration: underline; }
.contact-link { color: var(--gold-dim); font-weight: 700; font-size: 1.1rem; }
.contact-link:hover { text-decoration: underline; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}
.form-note { margin-top: 12px; font-size: 0.92rem; color: var(--sky-deep); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--purple); color: #cbd5e1; padding: 64px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p { color: var(--slate-light); max-width: 340px; margin: 12px 0 14px; font-size: 0.94rem; }
.footer-site { color: var(--gold); font-weight: 700; }
.footer-site:hover { text-decoration: underline; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-head {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 700; margin-bottom: 4px;
}
.footer-col a { color: #cbd5e1; font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-plain { color: var(--slate-light); font-size: 0.94rem; }
.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--slate-light); font-size: 0.85rem; }
.footer-tag { color: var(--gold-dim) !important; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-logo { width: 220px; height: 220px; }
  .about-grid, .invest-grid, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
  .values, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header .nav.open {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
  }
  .site-header .nav.open a { padding: 13px 0; width: 100%; }
  .values, .feature-grid, .team-grid, .invest-metrics, .mv-pillars, .footer-nav, .field-row {
    grid-template-columns: 1fr;
  }
  .hero { padding: 56px 0 48px; }
  .section { padding: 64px 0; }
  .origeenx-head { flex-direction: column; align-items: flex-start; }
  .origeenx-cta { padding: 28px 24px; }
  .mv-card { padding: 28px; }
}
