:root {
  /* Brand colors */
  --mint-50:  #E8FBF4;
  --mint-100: #B8F2DD;
  --mint-200: #7FE5C3;
  --mint-400: #4FD9A8;
  --mint-600: #1FA67A;
  --mint-900: #064E3B;

  --ink-50:   #F7F8FA;
  --ink-100:  #E4E7EC;
  --ink-200:  #C5CAD3;
  --ink-400:  #6B7385;
  --ink-600:  #1F2937;
  --ink-900:  #0B1220;

  --cobalt:   #2563EB;
  --violet:   #7C3AED;
  --amber:    #F59E0B;
  --crimson:  #E11D48;

  /* Type */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-serif: 'Fraunces', Georgia, serif;

  /* Layout */
  --max-w: 1240px;
  --section-pad: clamp(64px, 10vw, 128px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--ink-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ====================================================
   NAVIGATION
   ==================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(247, 248, 250, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s ease;
}

nav.scrolled { border-bottom-color: var(--ink-100); box-shadow: 0 10px 30px -24px rgba(11,18,32,.35); }

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

nav .logo img { height: 26px; }

nav .links {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav .links a {
  font-size: 14px;
  color: var(--ink-400);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav .links a:hover { color: var(--ink-900); }

/* Active navigation highlight */
nav .links a.active {
  color: var(--ink-900);
  position: relative;
}

nav .links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint-600);
}

nav .links a.cta.active {
  color: var(--ink-50);
  background: var(--mint-600);
}

nav .links a.cta.active::after { display: none; }

nav .cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-50);
  background: var(--ink-900);
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

nav .cta:hover { background: var(--mint-600); transform: translateY(-1px); }

.menu-toggle { display: none; }

@media (max-width: 820px) {
  nav .links { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
  }
  .menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--ink-900);
    transition: all 0.2s ease;
  }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  padding: 140px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--mint-100) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
}

/* Right column wraps dashboard + floating cards */
.hero-visual {
  position: relative;
}

.hero-cards {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 240px;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(11, 18, 32, 0.25)) drop-shadow(0 10px 20px rgba(11, 18, 32, 0.1));
  animation: float-cards 6s ease-in-out infinite;
}

@keyframes float-cards {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-cards { width: 200px; right: -30px; bottom: -40px; }
}

@media (max-width: 900px) {
  .hero-cards {
    position: relative;
    width: 260px;
    right: auto;
    bottom: auto;
    margin: -40px auto 0;
    display: block;
  }
}

/* ====================================================
   STATS STRIP
   ==================================================== */
.stats-strip {
  background: #FFFFFF;
  padding: 36px 0;
  border-top: 0.5px solid var(--ink-100);
  border-bottom: 0.5px solid var(--ink-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--ink-100);
}

@media (max-width: 800px) {
  .stat-item:nth-child(2)::after { display: none; }
}

.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
}

.stat-value .suffix {
  color: var(--mint-600);
  font-weight: 600;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 500;
  margin-top: 12px;
}

/* ====================================================
   COMPARISON (Difference) section
   ==================================================== */
.difference {
  background: var(--ink-50);
}

.diff-table {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid var(--ink-100);
  box-shadow: 0 20px 60px -30px rgba(11, 18, 32, 0.1);
}

.diff-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--ink-100);
}

.diff-head .col {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.diff-head .col.us {
  background: var(--ink-900);
  color: var(--ink-50);
}

.diff-head .col img { height: 22px; }

.diff-head .col .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-400);
}

.diff-head .col.us .label {
  color: var(--mint-400);
}

.diff-head .col .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: inherit;
}

.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--ink-100);
}

.diff-row:last-child { border-bottom: none; }

.diff-cell {
  padding: 22px 32px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.diff-cell.us {
  background: rgba(79, 217, 168, 0.04);
  color: var(--ink-900);
  font-weight: 500;
  border-right: 0.5px solid var(--ink-100);
}

.diff-cell.them {
  color: var(--ink-400);
}

.diff-cell .icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.diff-cell.us .icon {
  background: var(--mint-400);
  color: var(--ink-900);
}

.diff-cell.them .icon {
  background: var(--ink-100);
  color: var(--ink-400);
}

@media (max-width: 700px) {
  .diff-head { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; }
  .diff-cell.us { border-right: none; border-bottom: 0.5px solid var(--ink-100); }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--mint-50);
  border: 0.5px solid var(--mint-200);
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mint-900);
  letter-spacing: 0.01em;
}

.hero-pill .indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-600);
  position: relative;
}

.hero-pill .indicator::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--mint-600);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--ink-900);
}

.hero h1 .accent {
  color: var(--mint-600);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}

.hero .lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-400);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ink-900);
  color: var(--ink-50);
}

.btn-primary:hover {
  background: var(--mint-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(31, 166, 122, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--ink-200);
}

.btn-secondary:hover {
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--ink-50);
}

/* trusted by */
.trusted {
  border-top: 0.5px solid var(--ink-100);
  padding-top: 24px;
}

.trusted-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 12px;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.trusted-logos span {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-200);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.trusted-logos span:hover { color: var(--ink-400); }

/* Hero dashboard */
.hero-dashboard {
  background: var(--ink-900);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 30px 80px -20px rgba(11, 18, 32, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  overflow: hidden;
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint-400), transparent);
  opacity: 0.5;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-head .title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-200);
  font-weight: 500;
}

.dashboard-head .period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-400);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi {
  background: var(--ink-600);
  border-radius: 10px;
  padding: 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.04);
}

.kpi .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-200);
  margin-bottom: 6px;
}

.kpi .value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.kpi .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-400);
}

.kpi .delta.warn { color: var(--amber); }

.dashboard-chart {
  background: var(--ink-600);
  border-radius: 10px;
  padding: 14px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  border: 0.5px solid rgba(255, 255, 255, 0.04);
}

.bar {
  flex: 1;
  background: var(--mint-400);
  border-radius: 3px 3px 0 0;
  position: relative;
  animation: bar-rise 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.bar.muted { background: var(--ink-400); opacity: 0.6; }

@keyframes bar-rise {
  from { height: 0 !important; opacity: 0; }
}

.dashboard-legend {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0.5px solid var(--ink-600);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-200);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

/* ====================================================
   SECTION COMMON
   ==================================================== */
section {
  padding: var(--section-pad) 0;
  scroll-margin-top: 92px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-600);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--mint-600);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 700px;
}

.section-title .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--mint-600);
}

.section-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-400);
  max-width: 620px;
  margin-bottom: 64px;
}

/* ====================================================
   SERVICES (What We Do)
   ==================================================== */
.services { background: #FFFFFF; }

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

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

.service-card {
  background: var(--ink-50);
  border-radius: 18px;
  padding: 36px 32px;
  border: 0.5px solid var(--ink-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint-200);
  box-shadow: 0 20px 50px -20px rgba(11, 18, 32, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--mint-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--mint-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--mint-600);
}

.service-icon svg { width: 22px; height: 22px; }

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-200);
  letter-spacing: 0.08em;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink-900);
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-400);
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 13px;
  color: var(--ink-600);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--mint-600);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ====================================================
   PORTFOLIO — 3x2 image gallery
   ==================================================== */
.portfolio { background: var(--ink-50); }

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

@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

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

.shot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-100);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -15px rgba(11, 18, 32, 0.2);
  display: block;
  color: inherit;
  text-decoration: none;
  aspect-ratio: 1.4 / 1;
  border: 0.5px solid var(--ink-100);
}

.shot:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 30px 60px -20px rgba(11, 18, 32, 0.35);
  border-color: var(--mint-400);
}

.shot img.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shot:hover img.thumb {
  transform: scale(1.03);
}

/* External-link indicator */
.shot::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%234FD9A8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M7 7h10v10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}

.shot:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Caption overlay */
.shot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 18, 32, 0.4) 30%, rgba(11, 18, 32, 0.95) 100%);
  color: var(--ink-50);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.shot:hover .shot-caption {
  opacity: 1;
  transform: translateY(0);
}

.shot-caption .industry {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-400);
  margin-bottom: 6px;
  font-weight: 600;
}

.shot-caption .title {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* Tag in top-left, always visible */
.shot-tag {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.shot:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 30px 60px -20px rgba(11, 18, 32, 0.35);
}


/* ====================================================
   PHILOSOPHY
   ==================================================== */
.philosophy {
  background: var(--ink-900);
  color: var(--ink-50);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 217, 168, 0.08) 0%, transparent 60%);
}

.philosophy .container { position: relative; z-index: 1; }

.philosophy .eyebrow { color: var(--mint-400); }
.philosophy .eyebrow::before { background: var(--mint-400); }

.philosophy .section-title { color: var(--ink-50); }
.philosophy .section-title .serif { color: var(--mint-400); }

.philosophy .section-lead { color: var(--ink-200); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-600);
  border-radius: 18px;
  overflow: hidden;
  border: 0.5px solid var(--ink-600);
}

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

.principle {
  background: var(--ink-900);
  padding: 40px 36px;
  position: relative;
}

.principle-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mint-400);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.principle h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink-50);
}

.principle p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-200);
}

.pull-quote {
  margin-top: 80px;
  padding: 48px;
  background: var(--ink-600);
  border-radius: 18px;
  border-left: 3px solid var(--mint-400);
  max-width: 820px;
  position: relative;
}

.pull-quote .q {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.35;
  color: var(--ink-50);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.pull-quote .attr {
  font-size: 13px;
  color: var(--ink-200);
  font-weight: 500;
}

.pull-quote .attr .role {
  color: var(--ink-400);
  font-weight: 400;
}

/* ====================================================
   COURSES
   ==================================================== */
.courses { background: #FFFFFF; }

.courses-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .courses-layout { grid-template-columns: 1fr; gap: 48px; }
}

.courses-intro .section-title { margin-bottom: 16px; }

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card {
  background: var(--ink-50);
  border: 0.5px solid var(--ink-100);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.course-card:hover {
  border-color: var(--mint-400);
  background: #FFFFFF;
  box-shadow: 0 10px 30px -15px rgba(11, 18, 32, 0.15);
}

.course-badge {
  width: 56px;
  height: 56px;
  background: var(--ink-900);
  color: var(--mint-400);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.course-info h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink-900);
}

.course-info p {
  font-size: 13px;
  color: var(--ink-400);
  line-height: 1.5;
}

.course-meta {
  text-align: right;
  flex-shrink: 0;
}

.course-meta .duration {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-600);
  font-weight: 500;
  margin-bottom: 2px;
}

.course-meta .level {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-600);
  font-weight: 600;
}

@media (max-width: 600px) {
  .course-card { grid-template-columns: auto 1fr; }
  .course-meta { grid-column: 1 / -1; text-align: left; }
}

/* ====================================================
   BOOK A CALL — Calendar embed
   ==================================================== */
.booking {
  background: var(--ink-50);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mint-100) 0%, transparent 60%);
  opacity: 0.5;
}

.booking .container { position: relative; z-index: 1; }

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 0.5px solid var(--ink-100);
  box-shadow: 0 30px 80px -30px rgba(11, 18, 32, 0.12);
}

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
}

/* Left intro panel */
.booking-intro {
  padding: clamp(36px, 4vw, 56px);
  background: var(--ink-900);
  color: var(--ink-50);
  position: relative;
  overflow: hidden;
}

.booking-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint-400), transparent);
}

.booking-intro .eyebrow {
  color: var(--mint-400);
}

.booking-intro .eyebrow::before { background: var(--mint-400); }

.booking-intro h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink-50);
}

.booking-intro h2 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--mint-400);
}

.booking-intro .lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-200);
  margin-bottom: 32px;
}

.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 0.5px solid var(--ink-600);
}

.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-200);
}

.booking-meta-item svg {
  color: var(--mint-400);
  flex-shrink: 0;
}

.booking-meta-item strong {
  color: var(--ink-50);
  font-weight: 600;
  margin-right: 4px;
}

/* Right calendar panel */
.booking-calendar {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cal-month {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.cal-nav {
  display: flex;
  gap: 4px;
}

.cal-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--ink-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-600);
  transition: all 0.15s ease;
  border: 0.5px solid var(--ink-100);
}

.cal-nav-btn:hover {
  background: var(--ink-900);
  color: #FFFFFF;
  border-color: var(--ink-900);
}

.cal-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.cal-weekday {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-400);
  padding: 6px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-900);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  font-family: var(--font-mono);
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--mint-50);
  color: var(--mint-900);
}

.cal-day.empty {
  cursor: default;
}

.cal-day.disabled {
  color: var(--ink-200);
  cursor: not-allowed;
}

.cal-day.disabled::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 0.5px;
  background: var(--ink-100);
  transform: rotate(-30deg);
}

.cal-day.available {
  color: var(--ink-900);
  font-weight: 600;
}

.cal-day.available::before {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint-600);
}

.cal-day.today {
  color: var(--mint-600);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--ink-900);
  color: #FFFFFF;
}

.cal-day.selected::before {
  background: var(--mint-400);
}

/* Slot selector — appears after date selection */
.cal-slots {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 0.5px solid var(--ink-100);
  display: none;
}

.cal-slots.show { display: block; }

.cal-slots-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cal-slots-label .sel {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
}

.cal-slots-label .tz {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-400);
}

.cal-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.cal-slot {
  padding: 10px 4px;
  background: #FFFFFF;
  border: 1px solid var(--ink-100);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-600);
  cursor: pointer;
  transition: all 0.15s ease;
}

.cal-slot:hover {
  border-color: var(--mint-400);
  color: var(--mint-900);
  background: var(--mint-50);
}

.cal-slot.selected {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #FFFFFF;
}

.cal-confirm {
  width: 100%;
  padding: 14px 22px;
  background: var(--ink-900);
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  opacity: 0.5;
  pointer-events: none;
}

.cal-confirm.active {
  opacity: 1;
  pointer-events: auto;
}

.cal-confirm.active:hover {
  background: var(--mint-600);
  transform: translateY(-1px);
}

.cal-fallback {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-400);
}

.cal-fallback a {
  color: var(--ink-600);
  font-weight: 600;
  border-bottom: 0.5px solid var(--ink-200);
}

.cal-fallback a:hover { color: var(--mint-600); border-color: var(--mint-400); }

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-brand img { height: 32px; margin-bottom: 20px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-400);
  max-width: 340px;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-400);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-200);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--mint-400); }

.footer-bottom {
  padding-top: 32px;
  border-top: 0.5px solid var(--ink-600);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-400);
}

.footer-bottom a { color: inherit; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--mint-400); }

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }



/* ====================================================
   DASHBOARD FILTERS + COURSE IMAGE PREVIEWS
   ==================================================== */
.dashboard-tabs { display:flex; flex-wrap:wrap; gap:10px; margin:-32px 0 36px; }
.dashboard-tab { padding:10px 16px; border-radius:999px; border:0.5px solid var(--ink-100); background:#fff; color:var(--ink-400); font-size:13px; font-weight:600; transition:all .2s ease; }
.dashboard-tab:hover, .dashboard-tab.active { background:var(--ink-900); color:var(--ink-50); border-color:var(--ink-900); transform:translateY(-1px); }
.shot.hidden { display:none; }
.course-card.image-course { grid-template-columns:128px 1fr auto; overflow:hidden; }
.course-cover { width:128px; height:88px; border-radius:12px; overflow:hidden; background:var(--ink-100); box-shadow:0 8px 24px -18px rgba(11,18,32,.35); }
.course-cover img { width:100%; height:100%; object-fit:cover; transition:transform .4s cubic-bezier(.16,1,.3,1); }
.course-card:hover .course-cover img { transform:scale(1.05); }
@media (max-width:700px){ .course-card.image-course{grid-template-columns:1fr;} .course-cover{width:100%; height:180px;} }

/* Dashboard portfolio image tiles */
#dashboards .gallery { grid-template-columns: repeat(3, 1fr); }
#dashboards .shot { aspect-ratio: 16 / 11; background: #fff; }
#dashboards .shot img.thumb { object-fit: cover; object-position: top left; }
@media (max-width: 1000px) { #dashboards .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { #dashboards .gallery { grid-template-columns: 1fr; } }
