:root {
  --bg: #070b16;
  --bg-soft: #0f1830;
  --surface: rgba(19, 30, 56, 0.72);
  --surface-solid: #121f3c;
  --surface-border: rgba(153, 182, 255, 0.24);
  --ink: #e8eeff;
  --ink-soft: #b7c5ea;
  --brand: #4f7cff;
  --brand-strong: #2f5eff;
  --brand-alt: #31d6c5;
  --shadow-soft: 0 14px 38px rgba(7, 11, 22, 0.34);
  --shadow-hard: 0 26px 52px rgba(5, 8, 17, 0.48);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1300px 720px at 10% -5%, rgba(60, 102, 255, 0.22), transparent 52%),
    radial-gradient(900px 540px at 92% 4%, rgba(49, 214, 197, 0.18), transparent 54%),
    linear-gradient(180deg, #080d1b 0%, #070b16 100%);
  line-height: 1.65;
}

.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
}

.page-glow-one {
  width: 340px;
  height: 340px;
  top: -120px;
  left: -60px;
  background: rgba(80, 120, 255, 0.24);
}

.page-glow-two {
  width: 300px;
  height: 300px;
  top: 24%;
  right: -70px;
  background: rgba(53, 219, 200, 0.2);
}

h1,
h2,
h3,
h4,
.logo-text {
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

p,
ul,
ol {
  margin-top: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1140px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(145, 166, 233, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.88rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-alt));
  box-shadow: 0 12px 20px rgba(79, 124, 255, 0.45);
}

.logo-text {
  font-size: 1.08rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  text-decoration: none;
  color: #b6c4ea;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link-cta {
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.92rem;
  background: linear-gradient(135deg, #3b6bff, #2f5eff);
  box-shadow: 0 14px 24px rgba(47, 94, 255, 0.35);
}

.nav-link-cta:hover {
  color: #fff;
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.2rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #d4defd;
}

.hero {
  padding: 5.4rem 0 4.2rem;
}

.hero-small {
  padding: 4.4rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8bfed;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.hero-note {
  margin-top: 0.95rem;
  color: #98abd9;
  font-size: 0.91rem;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-soft);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
}

.hero-panel {
  padding: 1.25rem;
}

.hero-panel h3 {
  margin-bottom: 0.7rem;
}

.hero-metrics {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  justify-items: center;
}

.hero-metrics div {
  padding: 0.78rem;
  border-radius: 0.85rem;
  background: rgba(122, 149, 232, 0.16);
  border: 1px solid rgba(153, 182, 255, 0.2);
}

.hero-metrics div:only-child {
  grid-column: 1 / -1;
}

.hero-metrics .metric-cta-wrap {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.metric-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.58rem 0.92rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.28), rgba(49, 214, 197, 0.2));
  border: 1px solid rgba(167, 192, 255, 0.35);
  box-shadow: 0 10px 20px rgba(15, 35, 79, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.metric-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 45, 97, 0.34);
  border-color: rgba(193, 213, 255, 0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.64rem 1.15rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 24px rgba(47, 94, 255, 0.38);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-secondary {
  color: #d7e2ff;
  border: 1px solid rgba(146, 171, 241, 0.36);
  background: rgba(123, 151, 235, 0.12);
}

.btn-secondary:hover {
  background: rgba(123, 151, 235, 0.18);
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: rgba(16, 26, 50, 0.68);
  border-top: 1px solid rgba(130, 158, 232, 0.16);
  border-bottom: 1px solid rgba(130, 158, 232, 0.16);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2,
.section-title,
h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  margin-bottom: 0.65rem;
}

.section-head p {
  color: #a4b7e3;
}

.cards-3,
.cards-4,
.two-col {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}

.card,
.project-card,
.content-box {
  padding: 1.2rem;
}

.label-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.label-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-badge {
  width: 170px;
  max-width: 170px;
  height: auto;
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.35rem 0.42rem;
}

.ai-description h3 {
  margin-top: 1.1rem;
}

.founder-profile {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.founder-media {
  display: grid;
  gap: 0.6rem;
}

.founder-photo {
  width: 170px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(153, 182, 255, 0.32);
  box-shadow: var(--shadow-soft);
}

.founder-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.founder-name {
  margin: 0;
  font-weight: 700;
  color: #dce7ff;
}

.founder-copy p {
  margin-bottom: 0.75rem;
}

.linkedin-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(102, 132, 224, 0.22);
  border: 1px solid rgba(153, 182, 255, 0.36);
  color: #dce7ff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.linkedin-icon-link:hover {
  background: rgba(102, 132, 224, 0.34);
  border-color: rgba(170, 195, 255, 0.56);
}

.linkedin-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.checklist,
.bullets {
  padding-left: 1.05rem;
}

.checklist li,
.bullets li {
  margin-bottom: 0.45rem;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.62rem;
  background: rgba(93, 129, 248, 0.25);
  border: 1px solid rgba(138, 164, 241, 0.34);
  color: #dce6ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.project-list {
  display: grid;
  gap: 1rem;
}

.project-tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a4b8e6;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.project-summary {
  color: #bfd0f3;
  margin-bottom: 0;
}

.project-columns {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-outcome {
  color: #d3ddf8;
  font-style: italic;
}

.section-cta,
.section-cta-mid {
  background: linear-gradient(145deg, #101e3d 0%, #1a2c54 58%, #18396d 100%);
  border-top: 1px solid rgba(143, 170, 245, 0.2);
}

.section-cta .btn-primary,
.section-cta-mid .btn-primary {
  background: #f6f8ff;
  color: #223f89;
  box-shadow: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-note,
.small-note {
  font-size: 0.88rem;
  color: #9fb1dd;
}

.site-footer {
  padding: 1.6rem 0 1.9rem;
  background: #050915;
  border-top: 1px solid rgba(139, 169, 241, 0.16);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.2fr) 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-main {
  display: grid;
  gap: 0.15rem;
}

.footer-main-center {
  text-align: center;
  justify-items: center;
}

.footer-side {
  display: flex;
}

.footer-side-left {
  justify-content: flex-start;
}

.footer-side-right {
  justify-content: flex-end;
}

.footer-logo-link {
  display: inline-flex;
  border-radius: 0.5rem;
}

.cert-badge {
  width: 170px;
  height: auto;
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.35rem 0.42rem;
}

a {
  color: #8fb3ff;
}

a:hover {
  color: #c1d4ff;
}

@media (max-width: 980px) {
  .hero-inner,
  .cards-3,
  .cards-4,
  .two-col,
  .project-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-profile {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-photo {
    width: min(240px, 100%);
  }

  .main-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.42rem;
    padding: 0.85rem 1.2rem 1rem;
    background: #081022;
    border-bottom: 1px solid rgba(139, 169, 241, 0.16);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0.8rem;
  }

  .footer-side-left,
  .footer-side-right {
    justify-content: center;
  }

  .footer-main-center {
    text-align: center;
  }
}
