:root {
  --card-bg: #020617;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827, #020617);
  color: var(--text);
}

body {
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: radial-gradient(circle at top, #020617, #020617);
}

.section.strip {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, #0b1120, #020617);
  border-block: 1px solid rgba(148, 163, 184, 0.3);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0;
}

.nav a {
  color: var(--text-muted);
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--accent);
}

/* Hero */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* NEW SPLIT HERO STYLE */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 80vh;
  align-items: center;
  gap: 3rem;
  padding: 4.5rem min(7vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  max-width: 540px;
}

.hero-title {
  margin: 0.4rem 0 1.2rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title span {
  font-weight: 600;
  display: block;
  margin-top: 2.5rem;
}

.hero-title span:first-child {
  font-weight: 700;
  margin-top: 0;
}

.hero-title span:not(:first-child) {
  font-size: 0.85em;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 0.8rem;
  margin-top: 1.5rem;
}

.subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 1.6rem;
}

.hero-right {
  height: 100%;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

/* MOBILE VERSION */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 3.5rem;
    text-align: left;
  }

  .hero-right {
    order: -1;
    height: auto;
  }

  .hero-right img {
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: top center;
  }
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, #0ea5e9, #020617);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #0b1120;
  font-weight: 600;
}

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

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

/* Cards / grid */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.card-thumbnail {
  width: 100%;
  height: auto;
  max-height: 180px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
  padding: 1.1rem 1.2rem 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 1.2rem;
}

.card-link {
  display: inline-flex;
  margin: 0.6rem 1.2rem 1.1rem;
  font-size: 0.86rem;
  color: var(--accent);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Strip */

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.strip-quote {
  margin: 0.3rem 0 0;
  max-width: 40rem;
  color: var(--text-muted);
}

/* Layout helpers */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.1rem;
}

.subsection-heading {
  margin-top: 2.5rem;
}

/* Lists */

.bullet-list {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.bullet-list li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* Meta text */

.meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Contact */

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #020617;
  margin-top: 2rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none; /* keep it simple for now */
  }

  .header-inner {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }

  .video-frame {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.9);
  }
}
