/*
Theme Name: Ingaged
Theme URI: https://ingaged.ai
Author: Ingaged Technologies
Author URI: https://ingaged.ai
Description: Adaptability as a Service. A custom theme for Ingaged Technologies featuring a deep navy palette, cyan accents, and the full Ingaged platform, solutions, about, and contact pages.
Version: 1.0.0
License: Proprietary
Text Domain: ingaged
*/

/* ============ VARIABLES ============ */
:root {
  --navy-deepest: #060D18;
  --navy-dark: #0B1426;
  --navy: #122040;
  --navy-mid: #1B3260;
  --cyan: #22D3EE;
  --cyan-glow: rgba(34, 211, 238, 0.15);
  --cyan-hover: #06B6D4;
  --warm: #F59E0B;
  --warm-soft: rgba(245, 158, 11, 0.1);
  --slate: #94A3B8;
  --light: #E2E8F0;
  --lightest: #F1F5F9;
  --white: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--light);
  background: var(--navy-deepest);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(6, 13, 24, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.75rem 3rem;
  border-bottom: 1px solid rgba(34, 211, 238, 0.08);
}
.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-link {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--cyan); }
.nav-cta {
  color: var(--navy-dark);
  background: var(--cyan);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--cyan-hover); }

/* ============ SHARED ELEMENTS ============ */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.section-label.center { justify-content: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan);
  color: var(--navy-dark);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-primary:hover { background: var(--cyan-hover); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  background: transparent;
  font-family: var(--font-body);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--cyan); background: var(--cyan-glow); }

/* ============ HERO (shared base) ============ */
.hero {
  padding: 10rem 3rem 6rem;
  position: relative;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero h1 em { font-style: italic; color: var(--cyan); }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s ease forwards;
}

/* ============ CTA SECTION (shared) ============ */
.cta-section {
  padding: 7rem 3rem;
  text-align: center;
}
.cta-inner {
  max-width: 660px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(34, 211, 238, 0.06);
  padding: 3.5rem 3rem 2.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo span { color: var(--cyan); }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 0.25rem;
}
.footer-links { display: flex; gap: 2rem; }
.footer-link {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-right {
  font-size: 0.8rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* ============ HOMEPAGE ============ */

/* Homepage hero override */
.home .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 6rem;
  overflow: hidden;
}
.home .hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.home .hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

/* Signal graphic */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.signal-container { position: relative; width: 380px; height: 380px; }
.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.12);
  animation: pulse 4s ease-in-out infinite;
}
.signal-ring:nth-child(1) { inset: 0; animation-delay: 0s; }
.signal-ring:nth-child(2) { inset: 40px; animation-delay: 0.8s; border-color: rgba(34, 211, 238, 0.18); }
.signal-ring:nth-child(3) { inset: 80px; animation-delay: 1.6s; border-color: rgba(34, 211, 238, 0.25); }
.signal-ring:nth-child(4) { inset: 120px; animation-delay: 2.4s; border-color: rgba(34, 211, 238, 0.35); }
.signal-core {
  position: absolute; inset: 150px; border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.signal-core-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}
.signal-label {
  position: absolute;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate); white-space: nowrap;
}
.signal-label.l-infra { top: 15%; right: -5%; }
.signal-label.l-models { bottom: 20%; right: -8%; }
.signal-label.l-people { bottom: 15%; left: -5%; }
.signal-label.l-data { top: 20%; left: -8%; }
.signal-label span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-right: 6px;
  vertical-align: middle;
}

/* Problem strip */
.problem-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(34, 211, 238, 0.06);
  border-bottom: 1px solid rgba(34, 211, 238, 0.06);
  padding: 4.5rem 3rem;
}
.problem-inner { max-width: 1280px; margin: 0 auto; }
.problem-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--warm); margin-bottom: 1.25rem;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white); line-height: 1.3;
  max-width: 750px; margin-bottom: 2.5rem;
}
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.problem-card {
  background: rgba(18, 32, 64, 0.5);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; padding: 1.75rem; transition: all 0.3s;
}
.problem-card:hover { border-color: rgba(34, 211, 238, 0.15); transform: translateY(-2px); }
.problem-card .number { font-family: var(--font-display); font-size: 2rem; color: var(--cyan); margin-bottom: 0.75rem; }
.problem-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.55; }

/* Adapt section */
.adapt-section { padding: 7rem 3rem; position: relative; }
.adapt-inner { max-width: 1280px; margin: 0 auto; }
.adapt-header { max-width: 680px; margin-bottom: 4rem; }
.adapt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.adapt-card {
  background: linear-gradient(135deg, rgba(18, 32, 64, 0.6) 0%, rgba(11, 20, 38, 0.8) 100%);
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: 12px; padding: 2.5rem 2rem;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.adapt-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.adapt-card:hover::before { opacity: 1; }
.adapt-card:hover { border-color: rgba(34, 211, 238, 0.2); transform: translateY(-3px); }
.adapt-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--cyan-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--cyan);
}
.adapt-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.adapt-card p { font-size: 0.925rem; color: var(--slate); line-height: 1.6; }

/* Transform table */
.transform-section { padding: 7rem 3rem; background: var(--navy-dark); }
.transform-inner { max-width: 1000px; margin: 0 auto; }
.transform-header { text-align: center; margin-bottom: 3.5rem; }
.transform-table {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(34, 211, 238, 0.1); border-radius: 12px; overflow: hidden;
}
.transform-col-header {
  padding: 1.25rem 2rem; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.transform-col-header.before {
  background: rgba(100, 116, 139, 0.1); color: var(--slate);
  border-bottom: 1px solid rgba(100, 116, 139, 0.15);
  border-right: 1px solid rgba(34, 211, 238, 0.08);
}
.transform-col-header.after {
  background: var(--cyan-glow); color: var(--cyan);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}
.transform-row { display: contents; }
.transform-cell {
  padding: 1.15rem 2rem; font-size: 0.925rem; line-height: 1.5;
  border-bottom: 1px solid rgba(34, 211, 238, 0.05);
}
.transform-cell.before {
  color: var(--slate);
  border-right: 1px solid rgba(34, 211, 238, 0.08);
  text-decoration: line-through;
  text-decoration-color: rgba(100, 116, 139, 0.4);
}
.transform-cell.after { color: var(--white); }
.transform-cell.after::before { content: '→ '; color: var(--cyan); font-weight: 600; }

/* Tools grid */
.tools-section { padding: 7rem 3rem; }
.tools-inner { max-width: 1280px; margin: 0 auto; }
.tools-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem; }
.tools-header-text { max-width: 600px; }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.tool-card {
  background: rgba(18, 32, 64, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; padding: 1.75rem 1.5rem; text-align: center; transition: all 0.3s;
}
.tool-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  background: rgba(18, 32, 64, 0.7);
  transform: translateY(-2px);
}
.tool-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.tool-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.tool-card p { font-size: 0.8rem; color: var(--slate); line-height: 1.5; }

/* Philosophy */
.philosophy-section { padding: 7rem 3rem; background: var(--navy); }
.philosophy-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: 1.75rem; font-style: italic; color: var(--white);
  line-height: 1.4; margin-top: 1.5rem; position: relative;
  padding-left: 1.5rem; border-left: 3px solid var(--cyan);
}
.belief-list { display: flex; flex-direction: column; gap: 1.25rem; }
.belief-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(11, 20, 38, 0.6); border-radius: 10px;
  border: 1px solid rgba(34, 211, 238, 0.06); transition: border-color 0.3s;
}
.belief-item:hover { border-color: rgba(34, 211, 238, 0.15); }
.belief-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: var(--cyan-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); margin-top: 2px;
}
.belief-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.belief-text p { font-size: 0.85rem; color: var(--slate); line-height: 1.55; }

/* ============ PLATFORM PAGE ============ */
.page-template-page-platform .hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(34, 211, 238, 0.05) 0%, transparent 100%);
  pointer-events: none;
}
.page-template-page-platform .hero { text-align: center; }
.page-template-page-platform .hero-inner { max-width: 780px; }
.page-template-page-platform .hero-sub { max-width: 600px; margin: 0 auto 2rem; }

/* Architecture */
.arch-section { padding: 5rem 3rem 7rem; }
.arch-inner { max-width: 1100px; margin: 0 auto; }
.arch-diagram { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.arch-layer { display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; align-items: stretch; }
.arch-layer-label {
  background: rgba(18, 32, 64, 0.6);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 10px; padding: 1.25rem;
  display: flex; flex-direction: column; justify-content: center; text-align: center;
}
.arch-layer-label .layer-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.35rem;
}
.arch-layer-label .layer-name { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.arch-layer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.arch-block {
  background: rgba(11, 20, 38, 0.8);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 8px; padding: 1rem 1.25rem; transition: all 0.3s;
}
.arch-block:hover { border-color: rgba(34, 211, 238, 0.2); transform: translateY(-1px); }
.arch-block h4 { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.arch-block p { font-size: 0.75rem; color: var(--slate); line-height: 1.45; }
.arch-block .tech {
  display: inline-block; margin-top: 0.4rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--cyan); background: var(--cyan-glow);
  padding: 0.15rem 0.5rem; border-radius: 4px;
}
.arch-connector { display: flex; justify-content: center; padding: 0 0 0 160px; }
.arch-connector-line {
  width: 2px; height: 20px;
  background: linear-gradient(to bottom, rgba(34, 211, 238, 0.3), rgba(34, 211, 238, 0.08));
}

/* How it works */
.how-section {
  padding: 7rem 3rem; background: var(--navy-dark);
  border-top: 1px solid rgba(34, 211, 238, 0.06);
  border-bottom: 1px solid rgba(34, 211, 238, 0.06);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-header { max-width: 600px; margin-bottom: 4rem; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 52px;
  left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(34, 211, 238, 0.15));
}
.how-step { text-align: center; position: relative; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--cyan);
  position: relative; z-index: 2;
}
.how-step h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.how-step p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; max-width: 300px; margin: 0 auto; }
.how-step-detail {
  margin-top: 1.25rem; padding: 1rem;
  background: rgba(18, 32, 64, 0.5); border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, 0.06);
}
.how-step-detail li {
  list-style: none; font-size: 0.8rem; color: var(--slate);
  padding: 0.3rem 0; display: flex; align-items: center; gap: 0.5rem;
}
.how-step-detail li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}

/* Deploy / Service Tiers */
.deploy-section { padding: 7rem 3rem; }
.deploy-inner { max-width: 1100px; margin: 0 auto; }
.deploy-header { max-width: 650px; margin-bottom: 3.5rem; }
.deploy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.deploy-card {
  background: linear-gradient(135deg, rgba(18, 32, 64, 0.6) 0%, rgba(11, 20, 38, 0.8) 100%);
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: 12px; padding: 2.5rem 2rem;
  position: relative; transition: all 0.35s;
}
.deploy-card:hover { border-color: rgba(34, 211, 238, 0.2); transform: translateY(-3px); }
.deploy-card.featured { border-color: rgba(34, 211, 238, 0.25); }
.deploy-card.featured::before {
  content: 'Most popular'; position: absolute; top: -10px; right: 1.5rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-dark); background: var(--cyan);
  padding: 0.25rem 0.75rem; border-radius: 4px;
}
.deploy-tier {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem;
}
.deploy-card h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--white); margin-bottom: 0.75rem;
}
.deploy-card > p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; margin-bottom: 1.75rem; }
.deploy-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.deploy-features li {
  font-size: 0.85rem; color: var(--light);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.deploy-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--cyan); }

/* Data Principles */
.principles-section { padding: 7rem 3rem; background: var(--navy); }
.principles-inner { max-width: 1100px; margin: 0 auto; }
.principles-header { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.principle-card {
  text-align: center; padding: 2rem 1.5rem;
  background: rgba(11, 20, 38, 0.5);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; transition: all 0.3s;
}
.principle-card:hover { border-color: rgba(34, 211, 238, 0.15); }
.principle-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cyan-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--cyan);
}
.principle-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.principle-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.55; }

/* ============ SOLUTIONS PAGE ============ */
.page-template-page-solutions .hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 30% 40%, rgba(34, 211, 238, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Solution areas */
.areas-section { padding: 5rem 3rem 7rem; }
.areas-inner { max-width: 1100px; margin: 0 auto; }
.areas-header { max-width: 620px; margin-bottom: 3.5rem; }
.area-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: 14px; overflow: hidden; transition: all 0.35s;
}
.area-row:hover { border-color: rgba(34, 211, 238, 0.18); }
.area-row:nth-child(even) { direction: rtl; }
.area-row:nth-child(even) > * { direction: ltr; }
.area-content {
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.area-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem;
}
.area-content h3 {
  font-family: var(--font-display); font-size: 1.65rem;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.25;
}
.area-content > p { font-size: 0.95rem; color: var(--slate); line-height: 1.6; margin-bottom: 1.5rem; }
.area-details { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
  font-size: 0.75rem; font-weight: 500; color: var(--light);
  background: rgba(34, 211, 238, 0.08); padding: 0.35rem 0.75rem;
  border-radius: 5px; border: 1px solid rgba(34, 211, 238, 0.08);
}
.area-visual {
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem; position: relative; min-height: 280px;
}
.area-visual-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--cyan-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.area-visual-ring {
  position: absolute; width: 140px; height: 140px;
  border-radius: 50%; border: 1px solid rgba(34, 211, 238, 0.1);
}
.area-visual-ring:nth-child(2) { width: 200px; height: 200px; border-color: rgba(34, 211, 238, 0.06); }

/* Industries */
.industries-section {
  padding: 7rem 3rem; background: var(--navy-dark);
  border-top: 1px solid rgba(34, 211, 238, 0.06);
  border-bottom: 1px solid rgba(34, 211, 238, 0.06);
}
.industries-inner { max-width: 1100px; margin: 0 auto; }
.industries-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.industry-card {
  background: rgba(18, 32, 64, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; padding: 2rem 1.75rem; transition: all 0.3s;
}
.industry-card:hover { border-color: rgba(34, 211, 238, 0.2); transform: translateY(-2px); }
.industry-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.industry-card h4 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.85rem; color: var(--slate); line-height: 1.55; }

/* Spectrum / Tiers */
.spectrum-section { padding: 7rem 3rem; }
.spectrum-inner { max-width: 1100px; margin: 0 auto; }
.spectrum-header { max-width: 650px; margin-bottom: 3.5rem; }
.spectrum-track { position: relative; padding-left: 2rem; }
.spectrum-track::before {
  content: ''; position: absolute; left: 6px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--cyan), rgba(34, 211, 238, 0.1));
}
.spectrum-item { position: relative; padding: 0 0 3rem 2.5rem; }
.spectrum-item:last-child { padding-bottom: 0; }
.spectrum-item::before {
  content: ''; position: absolute; left: -2rem; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--navy-deepest); border: 2px solid var(--cyan);
}
.spectrum-item-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.spectrum-item h4 { font-size: 1.15rem; font-weight: 600; color: var(--white); }
.spectrum-duration {
  font-size: 0.75rem; font-weight: 500; color: var(--cyan);
  background: var(--cyan-glow); padding: 0.2rem 0.6rem; border-radius: 4px;
}
.spectrum-item p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; max-width: 650px; }

/* ============ ABOUT PAGE ============ */
.page-template-page-about .hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 70% 35%, rgba(245, 158, 11, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

/* Origin story */
.origin-section { padding: 5rem 3rem 7rem; }
.origin-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start;
}
.origin-text p { font-size: 1.05rem; color: var(--slate); line-height: 1.75; margin-bottom: 1.5rem; }
.origin-text p strong { color: var(--white); font-weight: 600; }
.origin-aside { position: sticky; top: 7rem; }
.origin-quote {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  color: var(--white); line-height: 1.45; padding: 2rem;
  border-left: 3px solid var(--cyan);
  background: rgba(18, 32, 64, 0.4); border-radius: 0 10px 10px 0;
  margin-bottom: 2rem;
}
.origin-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.origin-stat {
  background: rgba(18, 32, 64, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}
.origin-stat .num { font-family: var(--font-display); font-size: 1.75rem; color: var(--cyan); }
.origin-stat .label { font-size: 0.75rem; color: var(--slate); margin-top: 0.25rem; }

/* Values */
.values-section {
  padding: 7rem 3rem; background: var(--navy-dark);
  border-top: 1px solid rgba(34, 211, 238, 0.06);
  border-bottom: 1px solid rgba(34, 211, 238, 0.06);
}
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-header { max-width: 600px; margin-bottom: 3.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card {
  background: rgba(11, 20, 38, 0.6);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 12px; padding: 2.25rem 2rem;
  transition: all 0.3s; position: relative;
}
.value-card:hover { border-color: rgba(34, 211, 238, 0.18); }
.value-card::before {
  content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.value-card:hover::before { opacity: 1; }
.value-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

/* Approach */
.approach-section { padding: 7rem 3rem; }
.approach-inner { max-width: 1100px; margin: 0 auto; }
.approach-header { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.approach-card {
  background: rgba(18, 32, 64, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; padding: 2rem 1.75rem; text-align: center; transition: all 0.3s;
}
.approach-card:hover { border-color: rgba(34, 211, 238, 0.15); transform: translateY(-2px); }
.approach-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cyan-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--cyan);
}
.approach-card h4 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.approach-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.55; }

/* Roots */
.roots-section { padding: 7rem 3rem; background: var(--navy); }
.roots-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.roots-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white); margin-bottom: 1.5rem; line-height: 1.3;
}
.roots-inner p {
  font-size: 1.05rem; color: var(--slate); line-height: 1.7;
  margin-bottom: 1.25rem; max-width: 700px; margin-left: auto; margin-right: auto;
}
.roots-brands { display: flex; justify-content: center; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.roots-brand {
  text-align: center; padding: 1.5rem 2rem;
  background: rgba(11, 20, 38, 0.5);
  border: 1px solid rgba(34, 211, 238, 0.06);
  border-radius: 10px; min-width: 200px;
}
.roots-brand-name {
  font-family: var(--font-body); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.06em; color: var(--white); margin-bottom: 0.25rem;
}
.roots-brand-name .accent { color: var(--cyan); }
.roots-brand-desc { font-size: 0.8rem; color: var(--slate); }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 3rem 3rem 7rem; }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start;
}

/* Form */
.form-side {
  background: rgba(18, 32, 64, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: 14px; padding: 2.5rem;
}
.form-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.9rem; color: var(--slate); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--light); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(6, 13, 24, 0.8);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 8px; color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.25s; outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(148, 163, 184, 0.5); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select option { background: var(--navy-dark); color: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }

/* Contact info */
.contact-info {
  background: rgba(18, 32, 64, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: 14px; padding: 2rem;
}
.contact-info-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.04);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cyan-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
}
.contact-item-text { font-size: 0.9rem; color: var(--light); }
.contact-item-text a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
.contact-item-text a:hover { color: var(--white); }
.contact-item-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--slate);
}

/* Trust strip */
.trust-strip { padding: 3rem 3rem 5rem; }
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.trust-card {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.25rem; background: rgba(18, 32, 64, 0.3);
  border-radius: 10px; border: 1px solid rgba(34, 211, 238, 0.04);
}
.trust-icon { flex-shrink: 0; color: var(--cyan); margin-top: 2px; }
.trust-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.trust-card p { font-size: 0.8rem; color: var(--slate); line-height: 1.5; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .adapt-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; }
  .tools-header { flex-direction: column; align-items: flex-start; }
  .arch-layer { grid-template-columns: 1fr; }
  .arch-layer-label { text-align: left; flex-direction: row; gap: 0.75rem; padding: 0.75rem 1rem; }
  .arch-connector { padding: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 3rem; }
  .how-steps::before { display: none; }
  .deploy-grid { grid-template-columns: 1fr; max-width: 500px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .area-row, .area-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .area-row:nth-child(even) > * { direction: ltr; }
  .area-visual { min-height: 200px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .origin-inner { grid-template-columns: 1fr; }
  .origin-aside { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-link { display: none; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .home .hero { padding: 7rem 1.5rem 4rem; }
  .problem-strip,
  .adapt-section,
  .transform-section,
  .tools-section,
  .philosophy-section,
  .cta-section,
  .arch-section,
  .how-section,
  .deploy-section,
  .principles-section,
  .areas-section,
  .industries-section,
  .spectrum-section,
  .origin-section,
  .values-section,
  .approach-section,
  .roots-section,
  .contact-section { padding: 4rem 1.5rem; }
  .problem-grid,
  .adapt-grid,
  .tools-grid,
  .industries-grid,
  .principles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-side { padding: 1.75rem; }
  .trust-strip { padding: 2rem 1.5rem 4rem; }
  .trust-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .origin-stats { grid-template-columns: 1fr; }
  .roots-brands { flex-direction: column; align-items: center; }
}
