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

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Backgrounds */
  --bg:           #0A0A0A;   /* Page background */
  --bg-section:   #0F0F1A;   /* Alternate section background */
  --bg-card:      #111128;   /* Card background */
  --bg-deep:      #1E0A3C;   /* Deep purple — hero accents */

  /* Brand */
  --purple:       #7B2FBE;   /* Vivid purple — CTAs, highlights */
  --pink:         #E91E8C;   /* Hot pink — AI accent, eyebrows */
  --crimson:      #D42B4F;   /* Crimson — urgency, risk */
  --coral:        #FF4D6A;   /* Coral — hover states, accents */
  --blue:         #3B82F6;   /* Blue — D2 domain color only */
  --soft-purple:  #8B5CF6;   /* Soft purple — D5 domain color */
  --gray:         #6B7280;   /* Gray — D6 domain color */

  /* Text */
  --text:         #F8F8FA;   /* Primary text */
  --text-muted:   #9CA3AF;   /* Secondary text */
  --text-subtle:  #6B7280;   /* Tertiary text, footer */

  /* Borders */
  --border:       rgba(123, 47, 190, 0.25);   /* Purple-tinted border */
  --border-subtle: rgba(255, 255, 255, 0.08); /* Subtle white border */

  /* Gradients */
  --grad-accent:  linear-gradient(135deg, #7B2FBE, #E91E8C);
  --grad-hero:    linear-gradient(135deg, #1E0A3C 0%, #7B2FBE 60%, #E91E8C 100%);
  --grad-urgency: linear-gradient(135deg, #D42B4F, #FF4D6A);
  --grad-full:    linear-gradient(90deg, #1E0A3C, #7B2FBE, #E91E8C);
  --grad-button:  linear-gradient(135deg, #7B2FBE, #E91E8C);

  /* Domain colors */
  --d0: #E91E8C;  /* Strategy & Value */
  --d1: #7B2FBE;  /* Governance Core */
  --d2: #3B82F6;  /* Data Quality */
  --d3: #FF4D6A;  /* AI & ML Governance */
  --d4: #D42B4F;  /* Regulatory & Compliance */
  --d5: #8B5CF6;  /* Architecture & Enablement */
  --d6: #6B7280;  /* Operations & Change */
  
  /* Typography & Spacing */
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --nav-h:       88px;
  --max-w:       1200px;
  --section-pad: 96px;       /* top + bottom padding per section */
  --card-pad:    32px;
  --container:   0 24px;     /* horizontal container padding */
  
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
}

/* Typography Scale */
h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
}

h1.hero-h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  background: linear-gradient(135deg, #F8F8FA 20%, #7B2FBE 60%, #E91E8C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

.eyebrow, .section-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.body-large {
  font-size: 18px; /* 17-20px */
}

.caption, .label {
  font-size: 14px;
  font-weight: 500;
}

.mono-data {
  font-family: var(--font-mono);
  font-size: 13px; /* 12-14px */
  font-weight: 500;
  color: var(--purple);
}
.mono-data.pink {
  color: var(--pink);
}

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--container);
}

/* Utility classes */
.bg-deep {
    background-color: var(--bg-deep);
}
.bg-section {
    background-color: var(--bg-section);
}

.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.text-pink { color: var(--pink); }
.text-crimson { color: var(--crimson); }
.text-coral { color: var(--coral); }
.text-purple { color: var(--purple); }
.text-blue { color: var(--blue); }
.text-soft-purple { color: var(--soft-purple); }

.grid { display: grid; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.text-center { text-align: center; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo-link {
    display: flex;
    align-items: center;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--text);
}
.nav__links a.active {
  color: var(--pink);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav__mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--grad-button);
  color: #fff;
}
.btn--primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--purple); }

.btn--outline {
  background: transparent;
  color: var(--pink);
  border: 1px solid var(--pink);
}
.btn--outline:hover { background: rgba(233, 30, 140, 0.1); }

.btn--lg { font-size: 16px; padding: 16px 32px; }

/* Sections */
section {
  padding: var(--section-pad) 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-title {
  /* already defined under h2 */
}
.section-sub {
  font-size: 18px; /* Body large */
}

.accent-bar {
  height: 3px;
  width: 48px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Capabilities */
.capability-badge {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  background: rgba(123,47,190,0.15);
  color: var(--purple);
  border: 1px solid rgba(123,47,190,0.3);
  display: inline-block; margin-bottom: 20px;
}

.what-you-get {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 28px;
}
.what-you-get h4 {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 16px;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}
.card__icon-container {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.card__icon-container svg {
    width: 24px;
    height: 24px;
}

/* Diff Cards */
.diff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
}
.diff-card__number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

/* Quote Cards */
.quote-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--pink);
  border-radius: 10px;
  padding: 28px 32px;
}
.quote-card__text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.quote-card__attribution {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* Feature List */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.feature-list li { font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.feature-list li::before { content: '→'; color: var(--pink); font-weight: 600; flex-shrink: 0; }

/* Domain Pills */
.domain-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  transition: background 0.2s;
}
.domain-pill:hover { background: rgba(255, 255, 255, 0.07); }
.domain-pill__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.domain-pill__name { font-size: 13px; font-weight: 600; color: var(--text); }
.domain-pill__count { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin-left: auto; }

/* Domain Cards */
.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 24px;
}

/* Product Cards */
.product-badge--free {
  background: rgba(107,114,128,0.2);
  color: var(--text-muted);
  border: 1px solid rgba(107,114,128,0.3);
}

.product-card--pro {
  background: linear-gradient(135deg, rgba(30,10,60,0.8), rgba(10,10,10,0.95));
  border: 1px solid rgba(233,30,140,0.3);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.product-card--pro::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
}

.product-badge--pro {
  background: rgba(233,30,140,0.15);
  color: var(--pink);
  border: 1px solid rgba(233,30,140,0.3);
}

.price-block { margin: 24px 0; }
.price-amount { font-size: 40px; font-weight: 800; color: var(--text); display: block; line-height: 1; margin-bottom: 4px; }
.price-note { font-size: 13px; color: var(--text-muted); }

/* Booking Panel */
.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.calendly-placeholder {
  height: 200px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  margin-bottom: 24px;
}

/* Step Numbers */
.step-number {
  font-family: var(--font-mono);
  font-size: 56px; font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 16px;
  opacity: 0.7;
}

/* Divider inside booking */
.booking-divider {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    margin: 24px 0;
}
.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-subtle);
}
.booking-divider::before { margin-right: 16px; }
.booking-divider::after { margin-left: 16px; }

/* Grid systems & layout rules per page specification */

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after,
.hero-glow {
    content: '';
    position: absolute;
    z-index: 0;
}
.hero::before {
    top: 0; left: 0; bottom: 0; right: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(30,10,60,0.9) 0%, transparent 55%);
}
.hero::after {
    top: 0; left: 0; bottom: 0; right: 0;
    background: radial-gradient(ellipse at 80% 40%, rgba(123,47,190,0.12) 0%, transparent 50%);
}
.hero-glow {
    top: 0; left: 0; bottom: 0; right: 0;
    background: radial-gradient(circle at 75% 20%, rgba(233,30,140,0.07) 0%, transparent 40%);
}
.hero .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
}

/* Pages generic headers */
.page-header {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: radial-gradient(ellipse at top left, rgba(30,10,60,0.3) 0%, transparent 60%);
  z-index: 0;
}
.page-header .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0; /* Left aligned, overridden by container's margin 0 auto though */
  margin-left: max(0px, calc((100vw - var(--max-w)) / 2));
}
/* Left aligned container trick for page headers */
.left-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--container);
    text-align: left;
}
.left-container-720 {
    max-width: 768px; /* 720 + container padding */
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(30,10,60,0.95), rgba(10,10,10,0.98));
  border-top: 1px solid var(--border-subtle);
  padding: 96px 24px;
  text-align: center;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; right: 0;
  background: radial-gradient(ellipse, rgba(123,47,190,0.15) 0%, transparent 70%);
  z-index: 0;
}
.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

/* Footer Email Capture */
.footer-email-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
  background: rgba(123, 47, 190, 0.05);
}
.footer-email-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-email-strip__copy p:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-email-strip__copy p:last-child {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-email-strip form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.footer-email-strip input[type="email"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}
.footer-email-strip input[type="email"]::placeholder { color: var(--text-subtle); }
.footer-email-strip input[type="email"]:focus { border-color: var(--purple); }
@media (max-width: 768px) {
  .footer-email-strip .container { flex-direction: column; align-items: flex-start; }
  .footer-email-strip form { width: 100%; }
  .footer-email-strip input[type="email"] { flex: 1; width: auto; min-width: 0; }
}

/* Footer */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 0;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
}
.footer-brand {
    max-width: 320px;
}
.footer-brand img {
    margin-bottom: 24px;
}
.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 64px;
}
.footer-col h4 {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--pink);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-legal a {
    color: var(--text-subtle);
    font-size: 12px;
    text-decoration: none;
    margin-left: 20px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.grid-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.grid-2-60-40 {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 64px;
}
.grid-domains {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

/* Media Queries */
@media (max-width: 1024px) {
    /* Tablet */
    .hero-h1 { font-size: clamp(32px, 5vw, 56px) !important; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2-60-40 { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { gap: 40px; }
}

@media (max-width: 768px) {
    /* Mobile */
    .hero-h1 { font-size: clamp(28px, 8vw, 42px) !important; }
    .nav__links {
        display: none;
        position: fixed;
        top: 88px; left: 0; right: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-subtle);
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }
    .nav__links--open { display: flex; }
    .nav__links li { border-bottom: 1px solid var(--border-subtle); width: 100%; text-align: center;}
    .nav__links a { display: block; padding: 16px 0; font-size: 16px; }
    
    .nav__mobile-toggle { display: flex; }
    .nav__actions .btn { display: none; } /* Hide CTA in nav on mobile if needed, or put it in menu */
    
    .nav__mobile-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav__mobile-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .grid-domains { grid-template-columns: 1fr; }

    .footer-grid { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-legal a { margin: 0 10px; }
    
    .hero .btn { width: 100%; margin-bottom: 12px; }
}
