/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #141414;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #222222;
  --bg-card: #1e1e1e;
  --text-primary: #f2ede4;
  --text-secondary: #8a817c;
  --text-muted: #5c554e;
  --accent: #b08d57;
  --accent-dim: rgba(176, 141, 87, 0.12);
  --accent-glow: rgba(176, 141, 87, 0.06);
  --border: #3a3632;
  --border-hover: rgba(176, 141, 87, 0.25);
  --umber: #6b4226;
  --walnut: #3d2b1f;
  --font-display: 'Cormorant Garamond', serif;
  --font-label: 'Cormorant SC', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Subtle noise grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Focus-visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Pressed state for all interactive elements */
.nav-cta:active,
.btn-next:active,
.btn-download:active,
.btn-secondary:active,
.btn-primary:active,
.btn-outline:active,
.form-submit:active,
.share-btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}

nav.scrolled {
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg, .nav-logo img {
  width: 32px;
  height: 32px;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

/* Current page indicator */
.nav-links a[aria-current="page"] {
  color: var(--text-primary);
}

.nav-cta {
  background: transparent !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--umber) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--umber) !important;
  border-color: var(--umber) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 12, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--text-primary); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-primary);
  font-size: 1.5rem;
  background: none;
  border: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-logo svg, .hero-logo img {
  width: 120px;
  height: auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 16ch;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  max-width: 36ch;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-description {
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  background: var(--umber);
  color: var(--text-primary);
  border: 1px solid var(--umber);
  padding: 18px 40px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-cta:hover {
  background: transparent;
  border-color: var(--umber);
}

.hero-cta:active {
  transform: scale(0.97);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 120px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
}

/* ===== APPROACH SECTION ===== */
.approach {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.approach-header {
  margin-bottom: 72px;
  max-width: 640px;
}

.approach-header .section-subtitle {
  /* left-aligned naturally */
}

.continuum {
  position: relative;
  margin-bottom: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.continuum-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 8px;
}

.continuum-line::before {
  display: none;
}

.continuum-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.continuum-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.continuum-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  white-space: nowrap;
  color: var(--text-secondary);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.capability-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.capability-card:last-child {
  grid-column: 1 / -1;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.capability-card:hover {
  border-color: rgba(176, 141, 87, 0.2);
  box-shadow: 0 8px 40px rgba(176, 141, 87, 0.04), 0 0 0 1px rgba(176, 141, 87, 0.08);
}

.capability-card:hover::before { opacity: 1; }

.capability-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.capability-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.capability-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 42ch;
}

.integrated-callout {
  margin-top: 56px;
  background: transparent;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  padding: 24px 0 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.integrated-callout-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.integrated-callout h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.integrated-callout p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== ASSESSMENT SECTION ===== */
.assessment {
  position: relative;
}

.assessment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.assessment-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.assessment-header .section-subtitle {
  margin: 0 auto;
}

.assessment-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.progress-bar {
  height: 3px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  margin-bottom: 40px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.5s var(--ease-out);
  width: 0%;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.step-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.assessment-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.assessment-question {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.assessment-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.options-grid {
  display: grid;
  gap: 10px;
  flex: 1;
}

.options-grid.two-col {
  grid-template-columns: 1fr 1fr;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.option-item:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.02);
}

.option-item.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.option-item input {
  display: none;
}

.option-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.option-item.checkbox .option-check {
  border-radius: 4px;
}

.option-item.selected .option-check {
  border-color: var(--accent);
  background: var(--accent);
}

.option-check-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-primary);
  opacity: 0;
  transition: opacity 0.2s;
}

.option-item.checkbox .option-check-inner {
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background: none;
}

.option-item.selected .option-check-inner {
  opacity: 1;
}

.option-text {
  display: flex;
  flex-direction: column;
}

.option-label {
  font-weight: 500;
  font-size: 0.95rem;
}

.option-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.select-wrapper {
  position: relative;
}

.styled-select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s;
}

.styled-select:focus {
  outline: none;
  border-color: var(--accent);
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.styled-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 1rem;
  resize: vertical;
  min-height: 100px;
  transition: all 0.2s;
}

.styled-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.assessment-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-back {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  padding: 10px 0;
}

.btn-back:hover { color: var(--text-primary); }

.btn-next {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-next:hover {
  opacity: 0.9;
}

.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-next svg, .btn-back svg {
  width: 16px;
  height: 16px;
}

/* ===== RESULTS ===== */
.results-container {
  max-width: 800px;
  margin: 0 auto;
  display: none;
}

.results-container.active { display: block; }

.results-header {
  text-align: center;
  margin-bottom: 48px;
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.results-header p {
  color: var(--text-secondary);
}

.readiness-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.score-circle {
  width: 120px;
  height: 120px;
  position: relative;
}

.score-circle svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.score-circle-bg {
  fill: none;
  stroke: var(--bg-tertiary);
  stroke-width: 6;
}

.score-circle-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.5s var(--ease-out);
}

.score-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
}

.score-details h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.score-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.results-section {
  margin-bottom: 32px;
}

.results-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.results-section-title span {
  color: var(--accent);
}

.roadmap-list {
  list-style: none;
}

.roadmap-item {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
}

.roadmap-phase {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 2px;
  min-width: 80px;
}

.roadmap-content h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.roadmap-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.roadmap-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.category-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-hover);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.category-badge:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 80, 80, 0.05);
  border: 1px solid rgba(255, 80, 80, 0.1);
  border-radius: 6px;
  margin-bottom: 8px;
}

.risk-icon {
  color: #ff5050;
  font-size: 0.9rem;
  padding-top: 2px;
  flex-shrink: 0;
}

.risk-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benchmark-item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}

.benchmark-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 4px;
}

.benchmark-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.package-card {
  padding: 28px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.package-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.package-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.package-priorities {
  list-style: none;
  display: grid;
  gap: 6px;
}

.package-priorities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.package-priorities li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.next-steps-list {
  list-style: none;
  counter-reset: steps;
}

.next-step-item {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.next-step-item:last-child { border-bottom: none; }

.next-step-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--accent);
  min-width: 32px;
}

.next-step-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.next-step-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.results-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}

.btn-download:hover {
  opacity: 0.9;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
}

/* ===== CLIENTS SECTION ===== */
.clients {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.clients-header {
  text-align: center;
  margin-bottom: 56px;
}

.clients-header .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.client-logo:hover { opacity: 1; }

.client-logo-img {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-img svg {
  height: 48px;
  width: auto;
}

.client-logo span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-image {
  position: relative;
  margin-top: 48px;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  z-index: -1;
}

.about-image-frame {
  aspect-ratio: 3/4;
  background: var(--bg-tertiary);
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-image-frame img {
  position: relative;
  z-index: 0;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(20, 20, 20, 0.6));
  z-index: 1;
}

.about-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
}

.about-text .section-label { margin-bottom: 10px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.about-role {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 28px;
}

.about-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.about-bio p {
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-stat {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 2px;
  line-height: 1.2;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== EXPERIENCE ===== */
.experience-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.experience-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.experience-intro {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 32px;
  font-size: 1rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
  transition: border-color 0.3s var(--ease-out);
}

.experience-card:hover {
  border-color: var(--border-hover);
}

.experience-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 12px;
}

.experience-card-header h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
}

.experience-period {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.experience-role {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.experience-card > p:last-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Career timeline */
.career-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.career-entry {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.career-entry:first-child {
  padding-top: 0;
}

.career-entry:last-child {
  border-bottom: none;
}

.career-company {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
}

.career-detail {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-secondary);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-muted);
}

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

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 16px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo svg, .footer-logo img {
  width: 24px;
  height: 24px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-content {
  display: none;
  animation: slideIn 0.3s var(--ease-out);
}

.step-content.active { display: flex; flex-direction: column; flex: 1; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== SHARE BUTTONS ===== */
.share-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
  background: transparent;
}

.share-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.share-btn svg {
  width: 14px;
  height: 14px;
}

/* ===== TOOLS ===== */
.tools {
  padding: 100px 0;
}

.tools-header {
  margin-bottom: 48px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
  border-color: rgba(176, 141, 87, 0.2);
  box-shadow: 0 8px 40px rgba(176, 141, 87, 0.04), 0 0 0 1px rgba(176, 141, 87, 0.08);
}

.tool-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  color: var(--accent);
  margin-bottom: 20px;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.tool-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG ===== */
.blog-article {
  padding: 140px 24px 80px;
}

.article-header {
  margin-bottom: 48px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.article-back {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.article-back:hover {
  color: var(--accent);
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 16px;
}

.article-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
}

.article-author {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-author a {
  color: var(--accent);
  text-decoration: none;
}

.article-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(176, 141, 87, 0.3);
  transition: text-decoration-color 0.2s;
}

.article-body a:hover {
  text-decoration-color: var(--accent);
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 500;
}

.article-body em {
  font-style: italic;
}

/* Article table */
.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.article-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.article-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(58, 54, 50, 0.4);
  color: var(--text-secondary);
}

.article-table tbody tr:hover {
  background: rgba(176, 141, 87, 0.03);
}

/* Checklist */
.checklist {
  margin: 20px 0 28px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(58, 54, 50, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checklist-item span {
  font-size: 0.9rem;
  line-height: 1.6;
}

.checklist-item:has(input:checked) span {
  opacity: 0.5;
  text-decoration: line-through;
  text-decoration-color: var(--text-muted);
}

/* Article CTA */
.article-cta {
  margin-top: 56px;
  padding: 36px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}

.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 8px;
}

.article-cta p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Blog listing */
.blog-post-card {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s;
}

.blog-post-card:first-child {
  border-top: 1px solid var(--border);
}

.blog-post-card:hover {
  border-color: var(--border-hover);
}

.blog-post-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.blog-post-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.25;
}

.blog-post-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-post-read {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}

/* ===== SAAS TEASER ===== */
.saas-teaser {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.saas-teaser-blur {
  padding: 24px;
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
}

.saas-teaser-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.saas-teaser-row:last-child {
  margin-bottom: 0;
}

.saas-teaser-card {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
}

.saas-teaser-card.wide {
  flex: 2;
}

.saas-teaser-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.saas-teaser-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.saas-teaser-bar {
  height: 4px;
  background: var(--bg-primary);
  border-radius: 2px;
  overflow: hidden;
}

.saas-teaser-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--umber));
  border-radius: 2px;
}

.saas-teaser-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.saas-teaser-channels span {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: 3px;
  color: var(--accent);
}

.saas-teaser-timeline {
  margin-top: 8px;
}

.saas-teaser-week {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.saas-teaser-week:last-child {
  border-bottom: none;
}

.saas-teaser-week span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  margin-right: 8px;
}

.saas-teaser-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(2px);
}

.saas-teaser-cta {
  text-align: center;
  padding: 32px;
}

.saas-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--umber);
  color: var(--text-primary);
  border: 1px solid var(--umber);
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s;
}

.saas-teaser-btn:hover {
  background: #7d4e2e;
  border-color: #7d4e2e;
}

@media (max-width: 768px) {
  .saas-teaser-row {
    flex-direction: column;
  }
  .saas-teaser-card.wide {
    flex: 1;
  }
  .saas-teaser-blur {
    padding: 16px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-card:last-child {
    grid-column: 1 / -1;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { max-width: 260px; }

  .about-image::after { display: none; }

  .about-stats { flex-wrap: wrap; gap: 24px; }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { padding: 80px 24px 60px; }

  section { padding: 80px 0; }

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

  .capability-card:last-child {
    grid-column: auto;
  }

  .continuum-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .continuum {
    padding: 24px 0;
  }

  .continuum-node { gap: 8px; }

  .continuum-dot { width: 5px; height: 5px; }

  .continuum-label { font-size: 0.8rem; }

  .options-grid.two-col { grid-template-columns: 1fr; }

  .assessment-card { padding: 32px 24px; }

  .integrated-callout {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

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

  .readiness-score {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .experience-section {
    margin-top: 48px;
    padding-top: 40px;
  }

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

  .experience-card {
    padding: 24px 20px;
  }

  .career-entry {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .results-actions {
    flex-direction: column;
  }

  .results-actions .btn-download,
  .results-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-logo svg, .hero-logo img { width: 72px; height: 72px; }

  .continuum {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-logos {
    gap: 40px;
  }
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.toast.show { transform: translateY(0); }

.toast-icon { color: var(--accent); font-size: 1.2rem; }

.toast-text { font-size: 0.9rem; }
