:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card: #111827;
  --accent: #38bdf8;
  --accent-soft: rgba(56,189,248,0.15);
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 45px rgba(15,23,42,0.75);
  --shadow-chip: 0 6px 18px rgba(15,23,42,0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0f172a 0, #020617 50%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Desktop header = sticky */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,0.95),
    rgba(15,23,42,0.65),
    transparent
  );
  border-bottom: 1px solid rgba(148,163,184,0.18);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-right: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-sub {
  font-size: 14px;
  color: var(--muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.35);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: radial-gradient(circle at top left, #0f172a, #020617);
}

.pill span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.pill strong {
  color: #e5e7eb;
  font-weight: 600;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(8,47,73,0.8);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(8,47,73,1);
}

main {
  flex: 1;
}

/* HERO */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 28px;
  }
}

.hero-kicker {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  overflow: visible;
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(120deg, #e0f2fe, #7dd3fc, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 4px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 520px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.chip {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 14px;
  border: 1px solid rgba(148,163,184,0.35);
  color: #cbd5f5;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.08), rgba(15,23,42,0.9));
  box-shadow: var(--shadow-chip);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.btn-primary {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(8,47,73,1);
  text-decoration: none;
}

.btn-secondary {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.45);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta {
  font-size: 14px;
  color: var(--muted);
}

.hero-meta strong {
  color: #e5e7eb;
  font-weight: 600;
}

/* HERO ASIDE CARD */

.hero-card {
  background: radial-gradient(circle at top left, rgba(56,189,248,0.11), #020617);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 18px 18px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card-badge {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5b4fc;
}

.hero-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card-text {
  font-size: 14px;
  color: var(--muted);
}

.hero-card-list {
  list-style: none;
  margin-top: 8px;
  margin-bottom: 4px;
  padding-left: 0;
}

.hero-card-list li {
  font-size: 14px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hero-card-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 20px;
  margin-top: -2px;
}

.hero-id {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid rgba(148,163,184,0.25);
  padding-top: 8px;
  margin-top: 4px;
}

/* SECTIONS */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 20px 28px;
}

.section-header {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
}

.section-kicker {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
}

/* GRID CARDS */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: linear-gradient(to bottom right, rgba(15,23,42,0.95), var(--card));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 16px 16px 14px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.85);
}

.card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card ul li {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
}

.card ul li::before {
  content: "–";
  color: var(--accent);
}

/* SMALL PILL TAGS */

.pill-small {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(148,163,184,0.5);
  color: var(--muted);
  margin-bottom: 6px;
}

/* TWO COLUMN LAYOUT */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
}

@media (max-width: 880px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* TESTIMONIAL FLYOUT */

.testimonial {
  margin-top: 10px;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.1), #020617);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148,163,184,0.45);
  padding: 16px 18px 14px;
  box-shadow: var(--shadow-soft);
  max-width: 540px;     /* contained flyout */
  margin-left: auto;    /* align to right within its column */
}

.testimonial-label {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 6px;
}

.testimonial-quote {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.testimonial-meta {
  font-size: 14px;
  color: var(--muted);
}

.testimonial-meta strong {
  color: #e5e7eb;
}

.note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* WHO LIST */

.who-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.who-list li {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
}

.who-list li::before {
  content: "•";
  color: var(--accent);
  font-size: 14px;
}

/* CONTACT CARD (full width in its column) */

.contact {
  background: radial-gradient(circle at top, rgba(56,189,248,0.1), #020617);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148,163,184,0.45);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  margin-top: 4px;
  /* no max-width / margin-left so it aligns with heading */
}

.contact h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-info {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.contact-label {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(31,41,55,0.9);
  padding: 14px 20px 18px;
  margin-top: 10px;
  background: radial-gradient(circle at top, #020617, #000);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.footer-inner span strong {
  color: #e5e7eb;
}

/* LINKS */

a {
  color: var(--accent);
}

a:hover {
  text-decoration: underline;
}

/* ANCHOR OFFSET */

.anchor {
  scroll-margin-top: 80px;
}

/* MOBILE HEADER & FLYOUT BEHAVIOR */

@media (max-width: 640px) {

  /* Turn OFF sticky header on mobile */
  header {
    position: static;
    backdrop-filter: none;
    background: radial-gradient(circle at top, #020617, #000);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px 6px;
  }

  .nav-left {
    flex-wrap: wrap;
  }

  .nav-right {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  /* Slightly smaller logo on mobile */
  .logo-img {
    width: 52px;
    height: 52px;
    margin-right: 10px;
  }

  .pill {
    padding: 5px 11px;
    font-size: 14px;
  }

  .nav-cta {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* Testimonial flyout becomes full-width on mobile */
  .testimonial {
    max-width: 100%;
    margin-left: 0;
  }
}
