:root {
  --purple: #390F61;
  --cyan: #01FEDC;
  --lavender: #F1F0FF;
  --near-black: #0D0D0D;
  --white: #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--near-black); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; line-height: 1.15; }

/* NAV */
nav { background: var(--purple); padding: 0 5%; height: 72px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; opacity: 0.8; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta { background: var(--cyan); color: var(--purple) !important; padding: 9px 22px; font-weight: 600 !important; opacity: 1 !important; letter-spacing: 0.06em; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--purple); padding: 28px 5%; z-index: 99; border-top: 1px solid rgba(255,255,255,0.12); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a { color: var(--white); text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 500; }

/* HERO */
.hero { background: var(--purple); padding: 96px 5% 108px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -180px; right: -180px; width: 560px; height: 560px; border-radius: 50%; background: rgba(1,254,220,0.05); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); max-width: 820px; margin-bottom: 28px; line-height: 1.1; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.75; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 52px; margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 700; color: var(--cyan); display: block; }
.stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.4; }

/* PAGE HEADER */
.page-header { background: var(--purple); padding: 72px 5% 80px; }
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); max-width: 700px; margin-bottom: 20px; }
.page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.75; }

/* SECTIONS */
section { padding: 88px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple); opacity: 0.5; margin-bottom: 16px; }
.section-eyebrow-light { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); opacity: 0.85; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; color: var(--near-black); }
.section-title-light { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; color: var(--white); }
.section-lead { font-size: 1.05rem; line-height: 1.75; color: #505050; max-width: 580px; margin-bottom: 52px; }
.section-lead-light { font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 640px; margin-bottom: 52px; }

/* BUTTONS */
.btn-primary { background: var(--cyan); color: var(--purple); padding: 14px 32px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(1,254,220,0.3); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.35); color: var(--white); padding: 14px 32px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-purple { background: var(--purple); color: var(--white); padding: 14px 32px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(57,15,97,0.25); }
.btn-dark { background: var(--purple); color: var(--white); padding: 14px 36px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(57,15,97,0.3); }

/* SERVICES */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--lavender); padding: 44px 36px; transition: background 0.3s; }
.service-card:hover { background: var(--purple); }
.service-card:hover .service-num, .service-card:hover .service-title, .service-card:hover .service-body { color: var(--white); opacity: 1; }
.service-card:hover .service-bar { background: var(--cyan); opacity: 1; }
.service-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--purple); opacity: 0.4; margin-bottom: 16px; transition: color 0.3s, opacity 0.3s; }
.service-bar { width: 28px; height: 3px; background: var(--purple); opacity: 0.25; margin-bottom: 20px; transition: background 0.3s, opacity 0.3s; }
.service-title { font-size: 1.15rem; font-weight: 600; color: var(--purple); margin-bottom: 14px; transition: color 0.3s; line-height: 1.3; }
.service-body { font-size: 0.93rem; line-height: 1.72; color: #555; transition: color 0.3s; }

/* SERVICE BLOCKS (services page) */
.service-block { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; padding: 72px 0; border-bottom: 1px solid rgba(57,15,97,0.1); }
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-label { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.service-num-lg { width: 48px; height: 48px; background: var(--purple); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.1em; flex-shrink: 0; }
.service-category { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); opacity: 0.5; }
.service-left h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--purple); margin-bottom: 16px; }
.service-left p { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 16px; }
.service-right { background: var(--lavender); padding: 44px; }
.deliverables-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); margin-bottom: 20px; opacity: 0.6; }
.deliverable-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.deliverable-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; line-height: 1.55; color: #444; }
.deliverable-list li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--cyan); flex-shrink: 0; margin-top: 7px; }

/* DIFFERENCE */
.difference { background: var(--purple); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.diff-item { background: rgba(255,255,255,0.06); padding: 36px; border-left: 3px solid transparent; transition: border-color 0.3s, background 0.3s; }
.diff-item:hover { border-color: var(--cyan); background: rgba(255,255,255,0.1); }
.diff-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--cyan); margin-bottom: 12px; }
.diff-body { font-size: 0.93rem; line-height: 1.72; color: rgba(255,255,255,0.65); }

/* CLIENTS */
.clients-section { background: var(--lavender); }
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.client-card { background: var(--white); padding: 36px 30px; border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s; }
.client-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.client-dot { width: 8px; height: 8px; background: var(--cyan); margin-bottom: 20px; }
.client-title { font-size: 1.05rem; font-weight: 600; color: var(--purple); margin-bottom: 12px; }
.client-body { font-size: 0.91rem; line-height: 1.7; color: #555; }

/* ABOUT STRIP */
.about-strip { background: var(--near-black); padding: 88px 5%; }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); opacity: 0.8; margin-bottom: 16px; }
.about-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--white); margin-bottom: 24px; }
.about-body { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.68); margin-bottom: 16px; }
.about-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.cred-tag { background: rgba(1,254,220,0.1); color: var(--cyan); padding: 6px 14px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; }
.about-quote-block { background: rgba(255,255,255,0.05); padding: 48px; border-left: 3px solid var(--cyan); }
.about-quote { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--white); line-height: 1.55; margin-bottom: 24px; }
.about-quote em { font-style: normal; color: var(--cyan); }
.about-attr { font-size: 0.84rem; color: rgba(255,255,255,0.45); font-style: italic; }

/* CTA SECTION */
.cta-section { background: var(--cyan); padding: 80px 5%; }

/* ENGAGEMENT */
.engagement-section { background: var(--near-black); }
.eng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.eng-card { background: rgba(255,255,255,0.05); padding: 40px 32px; border-top: 3px solid transparent; transition: border-color 0.3s, background 0.3s; }
.eng-card:hover { border-color: var(--cyan); background: rgba(255,255,255,0.08); }
.eng-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 12px; }
.eng-card p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

/* INDUSTRIES */
.industries-section { background: var(--lavender); }
.industry-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.industry-item { background: var(--white); padding: 32px; display: flex; align-items: flex-start; gap: 20px; transition: background 0.3s; }
.industry-item:hover { background: var(--purple); }
.industry-item:hover .ind-title, .industry-item:hover .ind-body { color: var(--white); }
.ind-dot { width: 10px; height: 10px; background: var(--cyan); flex-shrink: 0; margin-top: 6px; }
.ind-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--purple); margin-bottom: 8px; transition: color 0.3s; }
.ind-body { font-size: 0.9rem; line-height: 1.6; color: #555; transition: color 0.3s; }

/* ABOUT PAGE */
.about-hero { background: var(--purple); padding: 80px 5%; }
.about-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
.about-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 24px; }
.about-hero-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.headshot-wrap { position: relative; }
.headshot-wrap img { width: 100%; display: block; }

/* CREDENTIALS */
.credentials-section { background: var(--lavender); }
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cred-card { background: var(--white); padding: 36px 28px; }
.cred-bar { width: 32px; height: 3px; background: var(--cyan); margin-bottom: 20px; }
.cred-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--purple); margin-bottom: 8px; }
.cred-body { font-size: 0.9rem; line-height: 1.6; color: #555; }

/* TIMELINE */
.career-section { background: var(--white); }
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: grid; grid-template-columns: 200px 1fr; gap: 48px; padding: 40px 0; border-bottom: 1px solid rgba(57,15,97,0.1); }
.timeline-item:last-child { border-bottom: none; }
.tl-dates { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--purple); opacity: 0.5; letter-spacing: 0.06em; padding-top: 4px; }
.tl-company { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--purple); margin-bottom: 4px; }
.tl-merger { font-size: 0.82rem; color: var(--purple); opacity: 0.5; margin-bottom: 6px; font-style: italic; }
.tl-title { font-size: 0.9rem; color: #666; margin-bottom: 12px; font-style: italic; }
.tl-body { font-size: 0.95rem; line-height: 1.75; color: #444; }

/* PHILOSOPHY */
.philosophy-section { background: var(--near-black); }
.phil-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.phil-body { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.phil-stats { display: flex; flex-direction: column; gap: 2px; }
.phil-stat { background: rgba(255,255,255,0.05); padding: 32px; border-left: 3px solid var(--cyan); }
.phil-stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 700; color: var(--cyan); display: block; margin-bottom: 8px; }
.phil-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; min-height: calc(100vh - 72px); }
.contact-left { background: var(--purple); padding: 80px 5%; display: flex; flex-direction: column; }
.contact-left-inner { max-width: 400px; margin-left: auto; }
.contact-left h1 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); margin-bottom: 24px; }
.contact-left p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }
.contact-details { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
.detail-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); opacity: 0.8; margin-bottom: 4px; }
.detail-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.detail-value a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.detail-value a:hover { color: var(--cyan); }
.contact-footer-note { margin-top: 48px; font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.6; }
.contact-right { background: var(--lavender); padding: 80px 5%; }
.form-wrapper { width: 100%; max-width: 540px; }
.form-wrapper h2 { font-size: 1.5rem; color: var(--purple); margin-bottom: 8px; }
.form-sub { font-size: 0.95rem; color: #666; margin-bottom: 40px; line-height: 1.6; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 8px; opacity: 0.7; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--white); border: 1px solid rgba(57,15,97,0.2); padding: 14px 16px; font-family: 'Lato', sans-serif; font-size: 0.95rem; color: var(--near-black); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { background: var(--purple); color: var(--white); padding: 16px 40px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; width: 100%; transition: background 0.2s; }
.btn-submit:hover { background: #4d1485; }
.success-message { display: none; background: var(--purple); color: var(--white); padding: 48px; text-align: center; }
.success-message h3 { font-size: 1.4rem; color: var(--cyan); margin-bottom: 16px; }
.success-message p { color: rgba(255,255,255,0.75); line-height: 1.7; }

/* FOOTER */
footer { background: var(--purple); padding: 52px 5% 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; flex-wrap: wrap; gap: 28px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-logo img { height: 30px; }
.footer-wordmark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-identity { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-identity span { color: var(--cyan); opacity: 0.7; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner > * { animation: fadeUp 0.65s ease forwards; opacity: 0; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.22s; }
.hero-sub { animation-delay: 0.36s; }
.hero-actions { animation-delay: 0.48s; }
.hero-stats { animation-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .services-grid, .clients-grid { grid-template-columns: 1fr; gap: 2px; }
  .diff-grid, .creds-grid, .eng-grid, .industry-list { grid-template-columns: 1fr; }
  .about-inner, .about-hero-inner, .phil-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left-inner { max-width: 100%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 28px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}
