/* ============================================================
   WYZLAB SOLUTIONS — MASTER STYLESHEET v2.0
   Brand: WyzLab Brand Book v1.0 | Revised April 2026
   Fonts: Montserrat (headlines) + Inter (body/UI)
   Colors: Master Blue #1C8BF5 dominant | Navy #003D7A structure
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --wyz-navy:       #003D7A;
  --wyz-blue:       #1C8BF5;
  --wyz-cyan:       #00B8E6;
  --wyz-gold:       #FFB81C;
  --wyz-orange:     #FF6B35;
  --wyz-lime:       #7FE3BF;
  --wyz-emerald:    #04A859;
  --wyz-white:      #FFFFFF;
  --wyz-light:      #F5F7FA;
  --wyz-gray:       #E2E8F0;
  --wyz-mid-gray:   #8898AA;
  --wyz-dark-gray:  #2D3748;
  --wyz-text:       #1A202C;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-pill: 100px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.16);
  --shadow-colored: 0 8px 32px rgba(28,139,245,0.22);
  --ease: cubic-bezier(0.4,0,0.2,1);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  --trans-fast: 0.15s var(--ease);
  --trans-med:  0.3s var(--ease);
  --trans-slow: 0.5s var(--ease);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--wyz-text); background: var(--wyz-white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--wyz-navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--wyz-dark-gray); }
p.lead { font-size: 1.125rem; line-height: 1.8; }

/* --- Container --- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Section Spacing --- */
.section { padding: var(--space-2xl) 0; }
.section--sm { padding: var(--space-xl) 0; }
.section--lg { padding: var(--space-3xl) 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wyz-blue);
  margin-bottom: var(--space-sm);
}
.section-label--gold { color: var(--wyz-gold); }
.section-label--navy { color: var(--wyz-navy); }
.section-label--white { color: rgba(255,255,255,0.7); }

.section-head { margin-bottom: var(--space-lg); }
.section-head--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
  margin-bottom: var(--space-lg);
}
.section-head p { margin-top: var(--space-sm); font-size: 1.0625rem; }

/* ============================================================
   TEXTURE PATTERNS (clean geometric — no AI gradient)
   ============================================================ */

/* Dot grid texture */
.tex-dots {
  background-image: radial-gradient(circle, rgba(0,61,122,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Diagonal line texture */
.tex-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,61,122,0.03) 8px,
    rgba(0,61,122,0.03) 9px
  );
}

/* Cross-hatch texture */
.tex-cross {
  background-image:
    linear-gradient(rgba(28,139,245,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,139,245,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Subtle noise for dark sections */
.tex-navy-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Diamond pattern */
.tex-diamond {
  background-image:
    linear-gradient(135deg, rgba(28,139,245,0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(28,139,245,0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(28,139,245,0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(28,139,245,0.05) 25%, transparent 25%);
  background-size: 20px 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.9375rem; font-weight: 600;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trans-med);
  text-decoration: none;
  white-space: nowrap; line-height: 1;
}
.btn--lime { background: var(--wyz-lime); color: var(--wyz-navy); border-color: var(--wyz-lime); }
.btn--lime:hover { background: #5dd4a8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(127,227,191,0.4); }
.btn--emerald { background: var(--wyz-emerald); color: var(--wyz-white); border-color: var(--wyz-emerald); }
.btn--emerald:hover { background: #038547; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(4,168,89,0.35); }
.btn--primary { background: var(--wyz-blue); color: var(--wyz-white); border-color: var(--wyz-blue); }
.btn--primary:hover { background: #0e7ae0; border-color: #0e7ae0; transform: translateY(-2px); box-shadow: var(--shadow-colored); }
.btn--navy { background: var(--wyz-navy); color: var(--wyz-white); border-color: var(--wyz-navy); }
.btn--navy:hover { background: #002d5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,61,122,0.3); }
.btn--cyan { background: var(--wyz-cyan); color: var(--wyz-white); border-color: var(--wyz-cyan); }
.btn--cyan:hover { background: #009bc7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,184,230,0.35); }
.btn--gold { background: var(--wyz-gold); color: var(--wyz-navy); border-color: var(--wyz-gold); }
.btn--gold:hover { background: #e6a300; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,184,28,0.4); }
.btn--outline { background: transparent; color: var(--wyz-navy); border-color: var(--wyz-navy); }
.btn--outline:hover { background: var(--wyz-navy); color: var(--wyz-white); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--wyz-white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--wyz-white); transform: translateY(-2px); }
.btn--outline-blue { background: transparent; color: var(--wyz-blue); border-color: var(--wyz-blue); }
.btn--outline-blue:hover { background: var(--wyz-blue); color: var(--wyz-white); transform: translateY(-2px); }
.btn--lg { font-size: 1.0625rem; padding: 1rem 2.25rem; }
.btn--sm { font-size: 0.8125rem; padding: 0.625rem 1.25rem; }
.cta-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--trans-med);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 1.5rem;
  max-width: 1180px; margin: 0 auto;
}
.nav--scrolled {
  background: var(--wyz-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav--scrolled .nav__logo-img--color { display: block !important; }
.nav--scrolled .nav__logo-img--white { display: none !important; }
.nav--transparent .nav__logo-img--color { display: none !important; }
.nav--transparent .nav__logo-img--white { display: block !important; }

/* Scrolled nav link colors */
.nav--scrolled .nav__link { color: var(--wyz-dark-gray); }
.nav--scrolled .nav__link:hover { color: var(--wyz-blue); background: rgba(28,139,245,0.07); }

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 36px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 0.25rem; }
.nav__item { position: relative; }

.nav__link {
  display: flex; align-items: center; gap: 0.25rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast); white-space: nowrap;
}
.nav__link:hover { color: var(--wyz-white); background: rgba(255,255,255,0.15); }
.nav__link svg { width: 14px; height: 14px; transition: transform var(--trans-fast); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown — gap-bridging pseudo element keeps menu open while moving mouse */
.nav__dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--wyz-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--wyz-gray);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: all var(--trans-med); pointer-events: none;
  /* top padding bridges the gap so mouse doesn't leave the hover zone */
  padding-top: 0.75rem;
  margin-top: 0;
}
/* Invisible bridge between nav link and dropdown — prevents gap-hover-close */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.nav__item:hover .nav__dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav__dropdown-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--wyz-dark-gray);
  transition: all var(--trans-fast);
}
.nav__dropdown-item:hover { background: var(--wyz-light); color: var(--wyz-navy); }
.nav__dropdown-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.nav__dropdown-badge {
  margin-left: auto; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
  background: var(--wyz-gold); color: var(--wyz-navy);
}
.nav__cta { margin-left: 0.75rem; }

/* Mobile toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; background: none; border: none;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--wyz-white); border-radius: 2px; transition: all var(--trans-med);
}
.nav--scrolled .nav__toggle span { background: var(--wyz-navy); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--wyz-navy); z-index: 999;
  padding: 5rem 2rem 2rem; flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--trans-med);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-link {
  display: block; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  color: var(--wyz-white); padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile-link:hover { color: var(--wyz-cyan); }
.nav__mobile-sublabel {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--wyz-cyan); padding: 1.5rem 0 0.5rem;
}
.nav__mobile-sublink {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.8);
  padding: 0.625rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile-sublink:hover { color: var(--wyz-cyan); }
.nav__close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; color: var(--wyz-white);
  font-size: 1.5rem; cursor: pointer; padding: 0.5rem; line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--wyz-navy);
  padding: 8rem 0 5rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Geometric diagonal stripe — NO gradient, solid angles */
.hero__stripes {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(28,139,245,0.12) 0%, transparent 45%),
    linear-gradient(315deg, rgba(0,184,230,0.08) 0%, transparent 40%);
}
/* Dot texture overlay */
.hero__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
}
/* Geometric accent line */
.hero__line {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 4px; pointer-events: none;
  background: linear-gradient(90deg, var(--wyz-blue), var(--wyz-cyan), var(--wyz-blue));
}

.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(28,139,245,0.18);
  border: 1px solid rgba(28,139,245,0.35);
  border-radius: var(--radius-pill);
  padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #7fc4ff;
  margin-bottom: 1.5rem; animation: fadeInUp 0.6s var(--ease) both;
}
.hero__label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--wyz-blue); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero h1 { color: var(--wyz-white); margin-bottom: 1.5rem; animation: fadeInUp 0.6s var(--ease) 0.1s both; }
.hero h1 span { color: var(--wyz-cyan); }
.hero__sub {
  font-size: 1.125rem; line-height: 1.75; color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem; animation: fadeInUp 0.6s var(--ease) 0.2s both;
  max-width: 600px;
}
.hero .cta-group { animation: fadeInUp 0.6s var(--ease) 0.3s both; }
.hero__trust {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8125rem; color: rgba(255,255,255,0.45);
  font-weight: 500; letter-spacing: 0.04em;
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}
.hero--split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero--split .hero__visual { position: relative; z-index: 1; animation: fadeInRight 0.8s var(--ease) 0.3s both; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  animation: fadeIn 1s var(--ease) 1s both;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 0.4; } 50% { transform: scaleY(0.6); opacity: 0.8; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--wyz-white); border-radius: var(--radius-lg);
  border: 1px solid var(--wyz-gray); padding: 2rem;
  transition: all var(--trans-med);
}
.card:hover { border-color: var(--wyz-blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card--navy { background: var(--wyz-navy); border-color: transparent; color: var(--wyz-white); }
.card--navy h3, .card--navy h4 { color: var(--wyz-white); }
.card--navy p { color: rgba(255,255,255,0.75); }
.card--blue { background: var(--wyz-blue); border-color: transparent; }
.card--blue h3, .card--blue h4, .card--blue p { color: var(--wyz-white); }
.card--featured { border: 2px solid var(--wyz-blue); position: relative; }
.card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--wyz-blue); color: var(--wyz-white);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill); white-space: nowrap;
}
.icon-card { display: flex; flex-direction: column; gap: 1rem; }
.icon-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ============================================================
   ECOSYSTEM CARDS
   ============================================================ */
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.eco-card {
  background: var(--wyz-white); border: 1.5px solid var(--wyz-gray);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--trans-med); cursor: pointer; position: relative; overflow: hidden;
}
.eco-card:hover { border-color: var(--eco-color, var(--wyz-blue)); box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.eco-card__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--eco-color); margin-bottom: 1rem; }
.eco-card__logo { height: 32px; width: auto; object-fit: contain; object-position: left; margin-bottom: 1rem; }
.eco-card__name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--wyz-navy); margin-bottom: 0.25rem; }
.eco-card__tagline { font-size: 0.75rem; font-weight: 600; color: var(--eco-color); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.875rem; }
.eco-card__desc { font-size: 0.875rem; line-height: 1.65; color: var(--wyz-dark-gray); margin-bottom: 1.25rem; }
.eco-card__cta { font-size: 0.8125rem; font-weight: 600; color: var(--eco-color); display: inline-flex; align-items: center; gap: 0.375rem; transition: gap var(--trans-fast); }
.eco-card:hover .eco-card__cta { gap: 0.625rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }
.stat-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--wyz-gray); }
.stat-item:last-child { border-right: none; }
.stat-item__number { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--wyz-blue); line-height: 1; margin-bottom: 0.5rem; }
.stat-item__label { font-size: 0.8125rem; color: var(--wyz-mid-gray); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial { background: var(--wyz-light); border-radius: var(--radius-lg); padding: 2rem; position: relative; border-left: 4px solid var(--wyz-blue); }
.testimonial::before { content: '"'; font-family: var(--font-head); font-size: 5rem; font-weight: 900; color: var(--wyz-blue); opacity: 0.12; position: absolute; top: 0.5rem; left: 1.5rem; line-height: 1; }
.testimonial__body { font-size: 1rem; line-height: 1.75; color: var(--wyz-dark-gray); margin-bottom: 1.5rem; padding-top: 1rem; }
.testimonial__author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--wyz-blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--wyz-white); flex-shrink: 0; }
.testimonial__name { font-weight: 600; font-size: 0.9375rem; color: var(--wyz-navy); }
.testimonial__role { font-size: 0.8125rem; color: var(--wyz-mid-gray); }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--wyz-gray); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th { background: var(--wyz-navy); color: var(--wyz-white); font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 1rem 1.25rem; text-align: left; white-space: nowrap; }
thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
tbody td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--wyz-gray); color: var(--wyz-dark-gray); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--wyz-light); }
tbody tr:hover { background: rgba(28,139,245,0.04); }
.table-check { color: var(--wyz-emerald); font-size: 1rem; }
.table-cross { color: var(--wyz-mid-gray); font-size: 1rem; }
.table-highlight td { background: rgba(0,61,122,0.04) !important; font-weight: 600; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--wyz-white); border: 1.5px solid var(--wyz-gray);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--trans-med); position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--wyz-blue); }
.pricing-card--featured { border: 2px solid var(--wyz-blue); background: var(--wyz-navy); }
.pricing-card--featured h3, .pricing-card--featured h4,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__features li { color: var(--wyz-white); }
.pricing-card--featured .pricing-card__price span { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-card__features li::before { color: var(--wyz-lime); }
.pricing-card--featured .pricing-card__sub { color: rgba(255,255,255,0.6); }
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--wyz-blue); color: var(--wyz-white);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.875rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.pricing-card__tier { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wyz-blue); margin-bottom: 0.75rem; }
.pricing-card--featured .pricing-card__tier { color: var(--wyz-cyan); }
.pricing-card__price { font-family: var(--font-head); font-size: 2.25rem; font-weight: 800; color: var(--wyz-navy); line-height: 1.1; margin: 0.75rem 0 0.25rem; }
.pricing-card__price span { font-size: 0.9rem; font-weight: 500; color: var(--wyz-mid-gray); }
.pricing-card__sub { font-size: 0.8125rem; color: var(--wyz-mid-gray); margin-bottom: 1.5rem; }
.pricing-card__divider { height: 1px; background: var(--wyz-gray); margin: 1.5rem 0; }
.pricing-card--featured .pricing-card__divider { background: rgba(255,255,255,0.12); }
.pricing-card__features { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--wyz-dark-gray); line-height: 1.5; }
.pricing-card__features li::before { content: '✓'; color: var(--wyz-emerald); font-weight: 700; flex-shrink: 0; margin-top: 0.05em; }

/* ============================================================
   COMING SOON
   ============================================================ */
.coming-soon-hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--wyz-navy); position: relative; overflow: hidden;
  padding: 8rem 0 5rem;
}
/* Ensure content sits above all background overlays */
.coming-soon-hero > .container {
  position: relative;
  z-index: 2;
}
.waitlist-form {
  background: var(--wyz-white); border-radius: var(--radius-xl);
  padding: 2.5rem; max-width: 480px; width: 100%; box-shadow: var(--shadow-lg);
  position: relative; z-index: 3;
}
.waitlist-form h3 { margin-bottom: 0.5rem; }
.waitlist-form p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--wyz-navy); margin-bottom: 0.375rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1.5px solid var(--wyz-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--wyz-text);
  transition: border-color var(--trans-fast); outline: none;
  background: var(--wyz-white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--wyz-blue); box-shadow: 0 0 0 3px rgba(28,139,245,0.12); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--wyz-mid-gray); }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238898AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success__icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(4,168,89,0.12); color: var(--wyz-emerald); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success h4 { margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--wyz-mid-gray); }

/* Contact map area */
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--wyz-gray); }
.contact-map iframe { display: block; width: 100%; height: 400px; border: none; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item__icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: rgba(28,139,245,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; color: var(--wyz-blue); }
.contact-info-item__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wyz-mid-gray); margin-bottom: 0.25rem; }
.contact-info-item__value { font-size: 0.9375rem; color: var(--wyz-dark-gray); font-weight: 500; }

/* ============================================================
   FEATURE LIST & STEPS
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-item__icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.feature-item__content h4 { margin-bottom: 0.25rem; font-size: 0.9375rem; }
.feature-item__content p { font-size: 0.875rem; line-height: 1.6; }

.steps { display: flex; flex-direction: column; gap: 2rem; position: relative; padding-left: 3rem; }
.steps::before { content: ''; position: absolute; left: 1.125rem; top: 2rem; bottom: 2rem; width: 1px; background: linear-gradient(to bottom, var(--wyz-blue), transparent); }
.step { position: relative; }
.step__number { position: absolute; left: -3rem; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--wyz-blue); color: var(--wyz-white); font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Problem block */
.problem-block { background: var(--wyz-light); border-radius: var(--radius-xl); padding: 3rem; }
.problem-block ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.problem-block ul li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--wyz-dark-gray); }
.problem-block ul li::before { content: '→'; color: var(--wyz-orange); font-weight: 700; flex-shrink: 0; }

/* Highlight boxes */
.highlight-box { border-left: 4px solid var(--wyz-blue); padding: 1.5rem 2rem; background: rgba(28,139,245,0.05); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.highlight-box--gold { border-left-color: var(--wyz-gold); background: rgba(255,184,28,0.05); }
.highlight-box--navy { border-left-color: var(--wyz-navy); background: rgba(0,61,122,0.04); }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--wyz-gray); border-radius: var(--radius-lg); overflow: hidden; }
.value-item { background: var(--wyz-white); padding: 2rem; transition: background var(--trans-fast); }
.value-item:hover { background: var(--wyz-light); }
.value-item__number { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--wyz-blue); line-height: 1; margin-bottom: 1rem; }
/* Explicitly reset text colors — overrides bg-navy parent inheritance */
.value-item h4 { margin-bottom: 0.5rem; font-size: 0.9375rem; color: var(--wyz-navy) !important; }
.value-item p { font-size: 0.8125rem; line-height: 1.65; color: var(--wyz-dark-gray) !important; }

/* ============================================================
   PATH TABS
   ============================================================ */
.path-tabs { display: flex; gap: 0.5rem; border-bottom: 2px solid var(--wyz-gray); margin-bottom: 2rem; overflow-x: auto; scrollbar-width: none; }
.path-tab { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--wyz-mid-gray); padding: 0.875rem 1.25rem; border: none; background: none; cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--trans-fast); }
.path-tab.is-active, .path-tab:hover { color: var(--wyz-navy); border-bottom-color: var(--wyz-blue); }
.path-panel { display: none; }
.path-panel.is-active { display: block; animation: fadeIn 0.3s var(--ease); }

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); }
.badge--blue { background: rgba(28,139,245,0.12); color: var(--wyz-blue); }
.badge--cyan { background: rgba(0,184,230,0.12); color: var(--wyz-cyan); }
.badge--gold { background: rgba(255,184,28,0.15); color: #8a6200; }
.badge--navy { background: rgba(0,61,122,0.1); color: var(--wyz-navy); }
.badge--coming { background: rgba(255,107,53,0.12); color: var(--wyz-orange); }
.badge--emerald { background: rgba(4,168,89,0.12); color: var(--wyz-emerald); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--wyz-blue); color: rgba(255,255,255,0.75); padding: 5rem 0 2rem; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; position: relative; }
.footer__brand p { font-size: 0.875rem; line-height: 1.75; color: var(--wyz-white); margin-top: 1rem; max-width: 280px; }
.footer__logo { height: 32px; width: auto; }
.footer__col h5 { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--wyz-white); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a { font-size: 0.875rem; color: var(--wyz-white); transition: color var(--trans-fast); display: flex; align-items: center; gap: 0.375rem; }
.footer__links a:hover { color: var(--wyz-navy); opacity: 0.7; }
.footer__links .soon { font-size: 0.65rem; background: rgba(0,61,122,0.12); color: var(--wyz-white); padding: 0.1rem 0.4rem; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; position: relative; }
.footer__copyright { font-size: 0.8125rem; color: var(--wyz-white); }
.footer__email a { font-size: 0.875rem; color: var(--wyz-white); transition: opacity var(--trans-fast); }
.footer__email a:hover { opacity: 0.8; }

/* Accent stripe */
.stripe { height: 4px; background: linear-gradient(90deg, var(--wyz-navy), var(--wyz-blue), var(--wyz-cyan)); }

/* ============================================================
   BG VARIANTS
   ============================================================ */
.bg-navy { background: var(--wyz-navy); }
.bg-navy-deep { background: #002050; }
.bg-light { background: var(--wyz-light); }
.bg-white { background: var(--wyz-white); }
.bg-blue { background: var(--wyz-blue); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--wyz-white); }
.bg-navy p { color: rgba(255,255,255,0.75); }
.bg-navy .section-label { color: var(--wyz-cyan); }
.bg-blue h2, .bg-blue h3, .bg-blue h4, .bg-blue p { color: var(--wyz-white); }
.bg-blue .section-label { color: rgba(255,255,255,0.7); }

/* Divider / Utility */
.divider { height: 1px; background: var(--wyz-gray); margin: 0; }
.text-center { text-align: center; }
.text-white { color: var(--wyz-white) !important; }
.text-cyan { color: var(--wyz-cyan) !important; }
.text-gold { color: var(--wyz-gold) !important; }
.text-blue { color: var(--wyz-blue) !important; }
.text-navy { color: var(--wyz-navy) !important; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.w-full { width: 100%; }

/* Pricing nav tabs (pricing page) */
.pricing-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; border-bottom: 2px solid var(--wyz-gray); padding-bottom: 0; }
.pricing-nav-btn { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--wyz-mid-gray); padding: 0.875rem 1.25rem; border: none; background: none; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; white-space: nowrap; }
.pricing-nav-btn:hover { color: var(--wyz-navy); }
.pricing-nav-btn.active { color: var(--wyz-navy); border-bottom-color: var(--wyz-blue); }
.pricing-section { display: none; }
.pricing-section.active { display: block; animation: fadeIn 0.3s ease; }

/* Breakeven table */
.breakeven-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--wyz-gray); border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem; }
.breakeven-cell { background: var(--wyz-white); padding: 1.25rem; }
.breakeven-cell--head { background: var(--wyz-navy); color: var(--wyz-white); font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.breakeven-cell--highlight { background: rgba(28,139,245,0.06); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .hero--split .container { grid-template-columns: 1fr; text-align: center; }
  .hero--split .hero__visual { display: none; }
  .cta-group { justify-content: center; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--wyz-gray); }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .section--lg { padding: 5rem 0; }
  .problem-block { padding: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .table-wrap { font-size: 0.8rem; }
  thead th, tbody td { padding: 0.75rem 0.875rem; }
  .hero__content { text-align: center; }
  .hero .cta-group { justify-content: center; }
}
