:root {
  /* Brand Colors - Modern Tech Palette */
  --brand-black: #000714;
  --brand-dark-grey: #0a0a0a;
  --brand-teal: #00C2B2; /* Vibrant Teal from reference */
  --brand-teal-glow: rgba(0, 194, 178, 0.3);
  
  /* UI Colors */
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-light: #f8fafc;
  --bg-page: #000714;
  --bg-card: #0d0d0d;
  --border-subtle: #1f1f1f;
  
  /* Effects */
  --shadow-glow: 0 0 30px rgba(0, 194, 178, 0.15);
  --transition-fast: 0.2s ease;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- Header --- */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #dcf5ff;
  padding: 0rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
}

.logo-model {
  width: 96px;
  height: 96px;
  border: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
  flex: 0 0 auto;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-fast);
  padding: 0.5rem 0.2rem;
  position: relative;
}

.nav-link.active {
  color: var(--brand-teal);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-teal);
}

.nav-separator {
  color: #000000;
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 300;
}

/* --- Buttons --- */
.btn-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  padding: 0.65rem 1.6rem;
  border-radius: 9999px; /* Pill shape */
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--brand-teal);
  color: white;
}

.btn-primary:hover {
  background-color: #00ac9d;
  box-shadow: 0 0 20px var(--brand-teal-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-teal);
  color: var(--brand-teal);
}

.btn-outline:hover {
  background: rgba(0, 194, 178, 0.05);
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none; /* Hidden by default */
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001; /* Above mobile menu overlay */
}

.hamburger-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #000000;
  transition: all 0.2s ease-in-out;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.2s ease-in-out;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-icon {
  background-color: transparent; /* Middle bar disappears */
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* --- Landing Page Image Section --- */
.landing-image-section {
  width: 100%;
  background-color: #000;
  line-height: 0; /* removes gap below inline image */
}

.landing-image {
  width: 78%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero {
  padding: 0.85rem 2.5rem;
  font-size: 1.1rem;
}

/* Featured In Section - Pinned to bottom */
.featured-in {
  margin-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.featured-column {
  max-width: 400px;
}

.featured-column h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-column p {
  font-size: 1.25rem;   /* bigger than 1rem (adjust as you like) */
  font-weight: 400;
  color: #fff;          /* white */
  line-height: 1.5;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 1.5rem auto 0;
}

/* --- Ecosystem Section --- */
.ecosystem-section {
  background-color: var(--brand-black);
  padding: 8rem 0;
  border-top: 1px solid var(--border-subtle);
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.lead-text {
  font-size: 1.35rem;
  color: var(--text-muted);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ecosystem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
}

/* --- Hub (Smart Chart) Visibility Fix --- */
.hub-section {
  padding: 10rem 0;
  background: var(--brand-black);
  border-top: 1px solid var(--border-subtle);
}

.interactive-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tag-label {
  display: inline-block;
  background: rgba(0, 194, 178, 0.1);
  color: var(--brand-teal);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hub-visual {
  background: radial-gradient(circle at center, rgba(0, 194, 178, 0.12) 0%, transparent 70%);
}

/* Brighten colors for visibility on black background */
.hub-orbit { stroke: #333333; } 
.hub-arc { stroke: #2a2a2a; stroke-width: 8; transition: stroke 0.3s ease; }
.hub-arc.active { stroke: var(--brand-teal); filter: drop-shadow(0 0 12px var(--brand-teal)); }

.hub-node-bg { fill: #111; stroke: #333; transition: all 0.3s ease; }
.hub-node.active .hub-node-bg { fill: var(--brand-teal); stroke: var(--brand-teal); }
.hub-node-label {
  fill: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: fill 0.3s ease, font-weight 0.3s ease;
}
.hub-node.active .hub-node-label {
  fill: var(--brand-teal);
  font-weight: 600;
}

.hub-center-bg { fill: #000; stroke: var(--brand-teal); stroke-width: 2; }
.hub-center-text-top { fill: var(--brand-teal); font-size: 13px; letter-spacing: 0.15em; }
.hub-center-text-bottom { fill: #fff; font-size: 19px; }

.hub-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.hub-accordion-item.expanded {
  border-color: var(--brand-teal);
  background: #0a0e0e;
}

/* --- Features Detail --- */
.features-section {
  background: var(--brand-black);
  padding: 8rem 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-text {
  direction: ltr;
}

.feature-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.feature-image-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border-subtle);
}

.feature-image-container img {
  width: 100%;
  display: block;
}

/* --- Contact --- */
.contact-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 6rem 3rem;
  border-radius: 40px;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.form-card {
  background: #080808;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid #1a1a1a;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--brand-black);
  border-top: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 6rem;
  font-weight: 700;
  color: var(--brand-teal);
  opacity: 0.1;
  line-height: 1;
  user-select: none;
}

.testimonial-pull-quote {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-full-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1; 
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: auto; 
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.testimonial-rating .star {
  color: #FFD700;
  font-size: 1.25rem;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}


.footer {
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--border-subtle);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .ecosystem-intro { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .interactive-hub { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 4rem; }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    left: auto;
    transform: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.mobile-nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links .nav-link {
    font-size: 1.8rem;
    opacity: 0.9;
  }

  .nav-links .nav-separator {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .featured-in {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .section-header {
    margin-bottom: 3rem;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .section-header p {
    font-size: 1rem;
  }

  .ecosystem-grid { grid-template-columns: 1fr; }

  .logo {
    gap: 0.4rem;
  }

  .brand-lockup {
    align-items: center;
  }

  .logo-model {
    width: 60px;
    height: 60px;
  }
  
  .logo img {
    height: 60px;
  }



  .featured-in {
    margin-top: 3rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }

  /* Contact form responsiveness */
  .contact-wrapper {
    padding: 3rem 1.25rem;
    border-radius: 24px;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .contact-inner { gap: 2rem; }
  .form-card { padding: 1.25rem; border-radius: 18px; }
  .form-label { font-size: 1.05rem; margin-bottom: 0.45rem; }
  .form-input { padding: 0.95rem 1rem; font-size: 1rem; }
  textarea.form-input { min-height: 120px; }

  /* Testimonials responsiveness */
  .testimonials-section {
    padding: 4rem 0;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .testimonial-pull-quote {
    font-size: 1.25rem;
  }
  .testimonial-quote-icon {
    font-size: 4rem;
    top: 1rem;
    left: 1rem;
  }
}


.ecosystem-section {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 55px 0;
}

/* Soft teal glow (NOT a square) */
.ecosystem-section::after{
  content:"";
  position:absolute;

  /* anchor to bottom-right */
  right: -22%;
  bottom: -35%;

  width: 950px;
  height: 950px;

  /* brighter + tighter center, fades to transparent */
  background: radial-gradient(
    circle at 70% 75%,
    rgba(16, 207, 199, 0.75) 0%,
    rgba(16, 207, 199, 0.35) 22%,
    rgba(16, 207, 199, 0.16) 40%,
    rgba(16, 207, 199, 0.00) 68%
  );

  filter: blur(55px);
  mix-blend-mode: screen;
  opacity: 1;

  pointer-events:none;
  z-index:0;
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 65% 60%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ensure content stays above glow */
.ecosystem-section .container {
  position: relative;
  z-index: 1;
}

/* layout: image left, text right */
.ecosystem-intro--hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 28px;
}

.ecosystem-image {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  display: block;
}

/* small label above heading */
.ecosystem-kicker {
  font-size: 16px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

/* big teal heading */
.ecosystem-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  color: #19d6cf;
}

/* paragraph style */
.ecosystem-lead {
  margin: 0 0 34px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
}

/* pill CTA button */
.ecosystem-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #10cfc7;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16, 207, 199, 0.22);
  transition: transform 150ms ease, filter 150ms ease;
}

.ecosystem-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* make card paragraphs consistent (remove inline styles needed) */
.ecosystem-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* responsive */
@media (max-width: 900px) {
  .ecosystem-intro--hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ecosystem-section {
    padding: 55px 0;
  }
}

/* === Featured Insights (left text + right masonry tiles) === */

.insights-section{
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 90px 0;
}

/* Optional: subtle teal glow on far-right like your site */
.insights-section::after{
  content:"";
  position:absolute;
  right:-40%;
  top:30%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle closest-side,
    rgba(16,207,199,0.30) 0%,
    rgba(16,207,199,0.14) 35%,
    rgba(16,207,199,0.00) 70%
  );
  filter: blur(70px);
  mix-blend-mode: screen;
  pointer-events:none;
  z-index:0;
}

.insights-layout{
  position: relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* Left side */
.insights-kicker{
  color: rgba(25,214,207,0.85);
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.insights-title{
  margin: 0 0 18px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  color: #19d6cf;
}

.insights-desc{
  margin: 0 0 34px;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 58ch;
}

.insights-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #10cfc7;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(16,207,199,0.22);
  transition: transform 150ms ease, filter 150ms ease;
}
.insights-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Right masonry grid */
.insights-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

/* Tile base */
.insight-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 26px 22px;
  min-height: 230px;

  display:flex;
  flex-direction: column;
  justify-content: flex-start;

  color: #fff;
  background-size: cover;
  background-position: center;
}

/* Dark overlay so text is readable (like the screenshot) */
.insight-tile::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.65) 70%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events:none;
}
.insight-tile > *{
  position: relative;
  z-index: 1;
}

.insight-tile h4{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.insight-tile p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 34ch;
}

/* Make one tile tall (masonry effect) */
.tile-tall{
  grid-row: span 2;
  min-height: 480px;
}

/* Background images (replace URLs with your actual images) */
.tile-1{ background-image: url("/img/insight-interop.jpg"); }
.tile-2{ background-image: url("/img/insight-care.jpg"); }
.tile-3{ background-image: url("/img/insight-workflow.jpg"); }
.tile-4{ background-image: url("/img/insight-revenue.jpg"); }

/* Responsive */
@media (max-width: 1000px){
  .insights-layout{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .insights-grid{
    grid-template-columns: 1fr;
  }
  .tile-tall{
    grid-row: auto;
    min-height: 260px;
  }
}

/* contact form style */
.form-field {
  margin-bottom: 1.5rem;
}

.form-field--last {
  margin-bottom: 2.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.3rem;
}

.form-input {
  width: 100%;
  padding: 1.1rem;
  border-radius: 14px;

  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.14);

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  outline: none;

  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.form-input:focus {
  border-color: rgba(0, 194, 178, 0.9);
  box-shadow: 0 0 0 4px rgba(0, 194, 178, 0.22), 0 10px 30px rgba(0,0,0,0.12);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

/* === Post-hero video section (like reference) === */
.posthero-section{
  background:#000;
  padding: 80px 0;
}

.posthero-layout{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items:center;
}

/* Left */
.posthero-kicker{
  color: rgba(25,214,207,0.85);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.posthero-title{
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.posthero-subtitle{
  margin: 0 0 44px;
  font-size: clamp(18px, 1.5vw, 26px);
  color: rgba(255,255,255,0.85);
}

/* CTA pill */
.posthero-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 34px;
  border-radius: 999px;
  background: #10cfc7;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(16,207,199,0.22);
  transition: transform 150ms ease, filter 150ms ease;
}
.posthero-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Right video card */
.posthero-videoCard{
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

.posthero-video{
  width: 100%;
  height: auto;
  display:block;
}

/* responsive */
@media (max-width: 980px){
  .posthero-layout{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.legal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.legal-modal{
  width: min(980px, 96vw);
  max-height: 86vh;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}

.legal-close{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.legal-content{
  padding: 22px;
  overflow: auto;
  max-height: 86vh;
}
