
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: oklch(0.14 0.015 250);
  --text: oklch(0.96 0.008 80);
  --muted: oklch(0.64 0.01 250);
  --accent: #0ad2d2;
  --accent-on-light: #0ac2c2;
  --link-on-light: #0a9c9c;
  --surface: oklch(0.18 0.012 250);
  --border: oklch(0.28 0.01 250);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 18px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; background: oklch(0.14 0.015 250 / 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { height: 32px; object-fit: contain; }
.nav-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); display: none; }
nav ul { display: flex; gap: 16px; list-style: none; white-space: nowrap; }
nav ul a { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: var(--text); }
.nav-cta { background: var(--accent); color: oklch(0.1 0.01 60); padding: 10px 18px; white-space: nowrap; flex-shrink: 0; border-radius: 15px; font-size: 14px; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.02em; text-decoration: none; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.page-hero { padding: 200px 60px 100px; position: relative; overflow: hidden; background-color: var(--bg); background-image: linear-gradient(180deg, oklch(0.1 0.015 250 / 0.85) 0%, oklch(0.12 0.015 250 / 0.9) 40%, oklch(0.14 0.015 250 / 0.98) 66%, var(--bg) 84%, var(--bg) 100%), url('uploads/Gemini_Generated_Image_nvnsihnvnsihnvns.jpeg'); background-size: auto, 160% auto; background-position: center, center 62%; background-repeat: no-repeat, no-repeat; animation: heroPan 18s ease-in-out infinite alternate; }
@keyframes heroPan { 0% { background-size: auto, 160% auto; background-position: center, center 58%; } 100% { background-size: auto, 175% auto; background-position: center, center 66%; } }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 80px 80px; opacity: 0.3; mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%); }
.hero-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 32px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(44px, 6vw, 88px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; max-width: 900px; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { margin-top: 32px; max-width: 640px; font-size: 20px; line-height: 1.7; color: #F0EDEA; font-weight: 300; }
.btn-primary { background: var(--accent); color: oklch(0.1 0.01 60); padding: 16px 36px; border-radius: 15px; font-size: 16px; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.02em; text-decoration: none; transition: opacity 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
section { padding: 120px 60px; }
.section-label { display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; height: 32px; min-width: 160px; padding: 0 18px; border-radius: 15px; background: var(--accent); color: oklch(0.12 0.01 250); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1; white-space: nowrap; margin-bottom: 24px; }
h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
h3 { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }
.section-white { background: #f4f4f4 url('uploads/babylonsixty-parchment.png') center / cover no-repeat; color: oklch(0.15 0.01 250); --accent: var(--accent-on-light); }
.section-white .section-label { background: var(--accent); color: oklch(0.12 0.01 250); }
.section-white h2 { color: oklch(0.12 0.01 250); }
.section-white p { color: oklch(0.42 0.01 250); }
.content-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 96px; align-items: center; }
.content-side { position: sticky; top: 40px; background: transparent; border-radius: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: none; width: 100%; }
.content-live { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.content-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulseDot 1.8s ease-in-out infinite; box-shadow: 0 0 0 0 oklch(0.75 0.14 180 / 0.6); }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 oklch(0.75 0.14 180 / 0.5); } 70% { box-shadow: 0 0 0 8px oklch(0.75 0.14 180 / 0); } 100% { box-shadow: 0 0 0 0 oklch(0.75 0.14 180 / 0); } }
.content-chart { border-left: none; padding-left: 0; padding: 32px 40px; animation: chartFadeIn 1s ease 0.2s both; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.content-donut { position: relative; width: clamp(220px, 24vw, 320px); height: clamp(220px, 24vw, 320px); display: flex; align-items: center; justify-content: center; }
.content-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.content-donut-track { fill: none; stroke: oklch(1 0 0 / 0.1); stroke-width: 14; }
.content-donut-fill { fill: none; stroke: var(--accent); stroke-width: 14; stroke-linecap: round; }
.content-percent { position: absolute; font-family: var(--font-display); font-size: clamp(44px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.content-percent-label { color: #F0EDEA; font-size: 16px; line-height: 1.6; max-width: 320px; text-align: center; }
@keyframes chartFadeIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
.content-stat { font-family: var(--font-display); font-size: 64px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.content-stat-label { color: #F0EDEA; font-size: 15px; line-height: 1.6; }
.content-side hr { border: none; border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-side { position: static; }
}
.body-copy { max-width: 760px; }
.body-copy p { color: #F0EDEA; font-size: 18px; line-height: 1.8; font-weight: 300; margin-bottom: 12px; }
.body-copy p strong { color: var(--text); font-weight: 600; }
.bio { max-width: 1100px; }
.bio-lead { font-size: clamp(20px, 2.3vw, 27px); line-height: 1.5; font-weight: 300; color: #F0EDEA; letter-spacing: -0.01em; padding-bottom: 34px; border-bottom: 1px solid var(--border); }
.bio-lead strong { color: var(--text); font-weight: 600; }
.bio-cols { columns: 2; column-gap: 52px; column-rule: 1px solid var(--border); margin-top: 34px; }
.bio-cols p { color: #F0EDEA; font-size: 16px; line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.bio-cols p:last-child { margin-bottom: 0; }
.bio-quote { position: relative; margin: 40px 0 6px; padding: 30px 34px 30px 58px; background: oklch(0.7 0.15 185 / 0.07); border: 1px solid oklch(0.7 0.15 185 / 0.3); border-radius: 12px; font-family: var(--font-display); font-size: clamp(19px, 2.1vw, 26px); font-weight: 600; line-height: 1.35; letter-spacing: -0.02em; color: #fff; }
.bio-quote::before { content: '\201C'; position: absolute; left: 22px; top: 30px; font-family: var(--font-display); font-size: 54px; line-height: 0.75; color: var(--accent); }
.bio-signoff { margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--border); }
.bio-signoff p { color: var(--accent); font-weight: 600; font-size: 16px; }
@media (max-width: 760px) { .bio-cols { columns: 1; column-rule: none; } }
.section-white .body-copy p { color: oklch(0.35 0.01 250); }
.pull-quote { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; max-width: 800px; margin: 8px 0; }
.pull-quote span { color: var(--accent); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.card-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.tile { background: var(--surface); padding: 44px 40px; }
.tile h3 { margin-bottom: 16px; }
.tile .tile-sub { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 20px; font-family: var(--font-display); }
.tile p { color: #F0EDEA; font-size: 15px; line-height: 1.65; margin-bottom: 16px; font-weight: 300; }
.bullet-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.bullet-list div { font-size: 14px; color: #F0EDEA; padding-left: 18px; position: relative; line-height: 1.5; }
.bullet-list div::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--accent); }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 48px; }
.info-item .label { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.info-item p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.info-item a { color: var(--text); text-decoration: none; }
.info-item a:hover { color: var(--accent); }
.section-white .info-item a { color: oklch(0.15 0.01 250); }
.section-white .info-item a:hover { color: var(--accent); }
.about-photo { width: 100%; max-width: 380px; border-radius: 4px; object-fit: cover; aspect-ratio: 4/5; }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; margin-top: 48px; }
.contact-form label { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }
.contact-form input, .contact-form textarea { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; color: var(--text); font-family: var(--font-body); font-size: 15px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form button { align-self: flex-start; margin-top: 8px; }
.cta-section { border-top: 1px solid var(--border); text-align: center; padding: 80px 60px; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--accent) 0%, transparent 60%); opacity: 0.08; pointer-events: none; }
.cta-section h2 { max-width: 700px; margin: 0 auto 24px; }
.cta-section p { color: #F0EDEA; font-size: 20px; max-width: 480px; margin: 0 auto 48px; font-weight: 300; }
.cta-fine { color: var(--muted); font-size: 14px; margin-top: 20px; }
footer { border-top: 1px solid var(--border); padding: 48px 60px 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 24px; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-contact a { color: var(--accent); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-cta { padding: 10px 22px; font-size: 14px; white-space: nowrap; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer p { color: var(--muted); font-size: 14px; }
footer a { color: var(--accent); text-decoration: none; font-size: 14px; transition: color 0.2s; }
footer a:hover { color: #fff; }
@media (max-width: 700px) {
  .footer-top, .footer-bottom, .footer-brand { flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 24px 32px; }
}
@media (max-width: 1180px) {
  nav ul { gap: 12px; }
  nav ul a { font-size: 13px; }
}
@media (max-width: 760px) {
  nav { padding: 20px 24px; } nav ul { display: none; }
  section, .page-hero { padding: 140px 24px 80px; }
  .card-grid, .card-grid.two-col { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top, .footer-bottom, .footer-brand { flex-direction: column; align-items: flex-start; }
}

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 22px; cursor: pointer; z-index: 110; background: none; border: none; padding: 0; flex-shrink: 0; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--bg); z-index: 105; padding: 110px 36px 40px; display: flex; flex-direction: column; gap: 28px; transition: right 0.35s ease; box-shadow: -20px 0 60px oklch(0 0 0 / 0.4); overflow-y: auto; }
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; padding: 0; margin: 0; }
.mobile-menu ul a { color: var(--text); text-decoration: none; font-size: 18px; font-family: var(--font-display); font-weight: 600; opacity: 0.85; }
.mobile-menu ul a:hover, .mobile-menu ul a.active { opacity: 1; color: var(--accent); }
.mobile-menu .nav-cta { align-self: flex-start; margin-top: 8px; }
.menu-backdrop { position: fixed; inset: 0; background: oklch(0 0 0 / 0.55); z-index: 104; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.menu-backdrop.open { opacity: 1; pointer-events: auto; }
@media (max-width: 760px) {
  nav#main-nav > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---- long-form SEO page components ---- */
.narrow { max-width: 820px; }
.prose h2 { font-size: clamp(28px, 3.2vw, 42px); margin-top: 8px; margin-bottom: 20px; }
.prose h3 { margin-top: 36px; margin-bottom: 12px; }
.prose p { color: #F0EDEA; font-size: 18px; line-height: 1.8; font-weight: 300; margin-bottom: 18px; }
.prose ul { margin: 0 0 24px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { color: #F0EDEA; font-size: 17px; line-height: 1.65; font-weight: 300; padding-left: 22px; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 10px; height: 1px; background: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }
.section-white .prose p, .section-white .prose ul li { color: oklch(0.35 0.01 250); }
.section-white .prose strong { color: oklch(0.12 0.01 250); }
.section-white .prose h3 { color: oklch(0.12 0.01 250); }
.anchor-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.anchor-nav a { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; transition: border-color 0.2s, background 0.2s; }
.anchor-nav a:hover { border-color: var(--accent); background: oklch(0.75 0.14 190 / 0.08); }
.cmp-table { width: 100%; border-collapse: collapse; margin-top: 32px; font-size: 15px; }
.cmp-table th, .cmp-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.55; }
.cmp-table th { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.cmp-table td { color: #F0EDEA; font-weight: 300; }
.cmp-table td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.section-white .cmp-table th, .section-white .cmp-table td { border-color: oklch(0.88 0.005 250); }
.section-white .cmp-table th { color: var(--accent); }
.section-white .cmp-table td { color: oklch(0.35 0.01 250); }
.section-white .cmp-table td:first-child { color: oklch(0.12 0.01 250); }
@media (max-width: 700px) { .cmp-table, .cmp-table tbody, .cmp-table tr, .cmp-table td { display: block; width: 100%; } .cmp-table thead { display: none; } .cmp-table tr { border-bottom: 1px solid var(--border); padding: 12px 0; } .cmp-table td { border: none; padding: 4px 0; } .cmp-table td:first-child { font-size: 17px; margin-bottom: 6px; white-space: normal; } }
.faq-list-seo { margin-top: 40px; border-top: 1px solid var(--accent); }
.faq-q { border-bottom: 1px solid var(--accent); }
.faq-q summary { list-style: none; cursor: pointer; padding: 24px 48px 24px 0; font-family: var(--font-display); font-size: clamp(17px, 2vw, 20px); font-weight: 600; line-height: 1.4; letter-spacing: -0.01em; position: relative; transition: color 0.2s; }
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary:hover { color: var(--accent); }
.faq-q summary::after { content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 400; color: var(--accent); line-height: 1; }
.faq-q[open] summary::after { content: '\2212'; }
.faq-q .faq-a { padding: 0 60px 26px 0; color: #F0EDEA; font-size: 17px; line-height: 1.75; font-weight: 300; }
.faq-q .faq-a p { margin-bottom: 14px; }
.faq-q .faq-a p:last-child { margin-bottom: 0; }
.section-white .faq-list-seo, .section-white .faq-q { border-color: var(--accent); }
.section-white .faq-q .faq-a { color: oklch(0.35 0.01 250); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 40px 32px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.3s ease, border-color 0.3s ease; }
.price-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 20px 50px -24px oklch(0.75 0.14 190 / 0.5); }
.price-tag { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.price-days { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.price-amount { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; }
.price-amount span { display: block; font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: 4px; }
.price-card p { color: #F0EDEA; font-size: 15px; line-height: 1.65; font-weight: 300; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 40px; display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; margin-bottom: 24px; position: relative; overflow: hidden; transition: border-color 0.3s ease, transform 0.3s ease; }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
.case-card:hover { border-color: oklch(0.7 0.15 185 / 0.45); transform: translateY(-3px); }
.case-card:hover::before { transform: scaleX(1); }
.case-meta { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 110px; }
.case-logo { background: #fff; border-radius: 8px; padding: 18px 22px; height: 90px; display: flex; align-items: center; justify-content: center; }
.case-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.case-logo a { display: flex; align-items: center; justify-content: center; height: 100%; max-width: 100%; transition: opacity 0.2s; }
.case-logo a:hover { opacity: 0.75; }
.case-logo:has(img[src*="Realtor"]) { padding: 4px 10px; }
.case-logo:has(img[src*="Exaba_Black"]) { padding: 0 6px; }
.case-logo:has(img[src*="Exaba_Black"]) img { transform: scale(1.35); }
.case-logo:has(img[src*="Exaba_Black"]) { overflow: hidden; }
.case-logo:has(img[src*="AG Consulting Logo-551bc6db"]) { padding: 0; overflow: hidden; }
.case-logo img[src*="AG Consulting Logo-551bc6db"] { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.case-meta > div:not(.case-logo) { background: oklch(1 0 0 / 0.03); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; height: 90px; box-sizing: border-box; overflow: hidden; }
.case-logo { box-sizing: border-box; }
.case-meta .label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.case-meta p { color: #F0EDEA; font-size: 14px; line-height: 1.45; font-weight: 300; }
.case-body h3 { margin-bottom: 26px; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.22; max-width: 780px; }
.case-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-step { background: oklch(1 0 0 / 0.035); border: 1px solid var(--border); border-radius: 10px; padding: 22px 20px; transition: background 0.3s ease, border-color 0.3s ease; }
.case-step:hover { background: oklch(0.7 0.15 185 / 0.07); border-color: oklch(0.7 0.15 185 / 0.4); }
.cs-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cs-num { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: oklch(0.16 0.02 220); background: var(--accent); border-radius: 4px; padding: 3px 6px; }
.case-step .label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.case-step p { color: #F0EDEA; font-size: 15px; line-height: 1.65; font-weight: 300; margin: 0; }
.case-quote { position: relative; margin-top: 22px; background: oklch(0.7 0.15 185 / 0.07); border: 1px solid oklch(0.7 0.15 185 / 0.3); border-radius: 10px; padding: 26px 30px 24px 58px; color: #fff; font-size: 16px; line-height: 1.7; font-weight: 300; font-style: normal; }
.case-quote::before { content: '\201C'; position: absolute; left: 22px; top: 26px; font-family: var(--font-display); font-size: 52px; line-height: 0.8; color: var(--accent); }
.case-quote cite { display: block; font-style: normal; font-size: 13px; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; color: var(--accent); margin-top: 14px; }
@media (max-width: 1080px) { .case-steps { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .case-card { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; } .case-meta { position: static; flex-direction: row; flex-wrap: wrap; align-items: stretch; } .case-logo { flex: 0 0 auto; min-width: 150px; } }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.stat-cell { background: var(--surface); padding: 36px 32px; }
.stat-cell .n { font-family: var(--font-display); font-size: clamp(34px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.stat-cell .t { color: #F0EDEA; font-size: 15px; line-height: 1.55; font-weight: 300; }
@media (max-width: 860px) { .stat-row { grid-template-columns: 1fr; } }
.role-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 40px 34px; text-decoration: none; display: flex; flex-direction: column; gap: 14px; transition: transform 0.3s ease, border-color 0.3s ease; }
.role-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.role-card .tile-sub { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-display); }
.role-card h3 { color: var(--text); }
.role-card p { color: #F0EDEA; font-size: 15px; line-height: 1.65; font-weight: 300; }
.role-card .more { color: var(--accent); font-size: 14px; font-weight: 600; font-family: var(--font-display); margin-top: auto; }
a { color: var(--accent); }
a:hover { color: #fff; }
.section-white a { color: var(--link-on-light); }
.section-white a:hover { color: oklch(0.12 0.01 250); }

.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; padding: 0 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.footer-links > div { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-links .fl-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-links a { color: #F0EDEA; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
@media (max-width: 860px) { .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 480px) { .footer-links { grid-template-columns: 1fr; } }

@media (max-width: 1180px) { nav ul { gap: 10px; } nav ul a { font-size: 13px; } }
@media (max-width: 1040px) { nav ul { display: none; } .nav-toggle { display: flex; } nav#main-nav > .nav-cta { display: none; } }

.mobile-menu .nav-cta { display: inline-block !important; }

.mini-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0 36px; max-width: none; width: min(1320px, calc(100vw - 140px)); }
.mini-tile { background: #f4f4f4 url('uploads/babylonsixty-parchment.png') center / cover no-repeat; border: 1px solid var(--border); border-radius: 10px; padding: 62px 24px 26px; font-size: 15px; line-height: 1.6; font-weight: 300; color: oklch(0.35 0.01 250); position: relative; --accent: var(--accent-on-light); transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; }
.mini-tile .mt-icon { position: absolute; left: 24px; top: 22px; width: 24px; height: 24px; color: var(--accent); display: block; transition: color 0.3s ease, transform 0.3s ease; }
.mini-tile .mt-icon svg { width: 100%; height: 100%; }
.mini-tile:hover { border-color: var(--accent); color: oklch(0.15 0.01 250); transform: translateY(-4px); box-shadow: 0 14px 28px -14px oklch(0.15 0.01 250 / 0.35); }
.mini-tile:hover .mt-icon { transform: translateY(-2px); }
@media (max-width: 900px) { .mini-tiles { grid-template-columns: 1fr; } }

.when-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.when-card { background: oklch(0.96 0.005 250); border: 1px solid oklch(0.9 0.005 250); border-radius: 10px; padding: 32px 28px 30px; position: relative; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.when-card::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.when-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 18px 40px -22px oklch(0.15 0.01 250 / 0.35); }
.when-card:hover::after { transform: scaleX(1); }
.when-num { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 16px; }
.when-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; color: oklch(0.12 0.01 250); margin-bottom: 10px; }
.when-card p { color: oklch(0.42 0.01 250); font-size: 15px; line-height: 1.6; font-weight: 300; }
@media (max-width: 980px) { .when-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .when-grid { grid-template-columns: 1fr; } }

.gantt { max-width: 1040px; margin-top: 52px; }
.gantt-head { display: grid; grid-template-columns: 168px repeat(4, 1fr); border-bottom: 1px solid oklch(0.88 0.005 250); padding-bottom: 12px; margin-bottom: 8px; }
.gantt-head div { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.gantt-head div:first-child { color: oklch(0.55 0.01 250); }
.gantt-row { display: grid; grid-template-columns: 168px repeat(4, 1fr); align-items: center; min-height: 62px; border-bottom: 1px solid oklch(0.93 0.004 250); position: relative; }
.gantt-row:last-child { border-bottom: none; }
.gantt-label { font-family: var(--font-display); font-size: 14px; font-weight: 600; line-height: 1.35; color: oklch(0.12 0.01 250); padding-right: 20px; }
.gantt-track { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.gantt-bar { grid-row: 1; align-self: center; min-height: 34px; border-radius: 6px; background: var(--accent); display: flex; align-items: center; padding: 6px 14px; font-size: 12.5px; line-height: 1.3; font-weight: 500; color: #fff; overflow: hidden; transform-origin: left; transform: scaleX(0); transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.gantt.visible .gantt-bar { transform: scaleX(1); }
.gantt-bar.soft { background: oklch(0.9 0.03 185); color: oklch(0.28 0.04 185); }
.gantt-bar span { white-space: normal; overflow-wrap: break-word; hyphens: auto; }
.gantt-grid { position: absolute; inset: 0; grid-column: 2 / -1; display: grid; grid-template-columns: repeat(4, 1fr); pointer-events: none; }
.gantt-grid i { border-left: 1px dashed oklch(0.9 0.005 250); }
.gantt-grid i:first-child { border-left: none; }
.gantt-out { margin-top: 28px; padding: 18px 22px; background: oklch(0.96 0.005 250); border-left: 2px solid var(--accent); border-radius: 6px; font-size: 15px; line-height: 1.65; color: oklch(0.35 0.01 250); font-weight: 300; }
.gantt-weeks { display: none; }
@media (max-width: 800px) {
  .gantt { margin-top: 36px; padding-left: 22px; border-left: 2px solid var(--accent); }
  .gantt-head { display: none; }
  .gantt-row { display: block; min-height: 0; padding: 0 0 26px; border-bottom: none; position: relative; }
  .gantt-row::before { content: ''; position: absolute; left: -29px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid #f4f4f4; box-sizing: border-box; }
  .gantt-row:last-child { padding-bottom: 0; }
  .gantt-grid { display: none; }
  .gantt-label { padding-right: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 16px; margin-bottom: 8px; }
  .gantt-weeks { display: inline-block; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.12 0.01 250); background: var(--accent); border-radius: 4px; padding: 3px 8px; }
  .gantt-track { display: block; }
  .gantt-bar { grid-column: auto !important; transform: none !important; transition: none; min-height: 0; height: auto; padding: 0; background: none !important; color: oklch(0.32 0.01 250) !important; font-size: 15px; line-height: 1.6; font-weight: 300; border-radius: 0; display: block; }
  .gantt-bar span { white-space: normal; }
}

.quote-block { display: flex; gap: 28px; align-items: flex-start; max-width: 820px; margin-top: 12px; }
.quote-avatar { width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0; background-size: cover; background-position: center top; border: 2px solid var(--accent); }
.quote-body p { margin-bottom: 14px; }
.quote-body p em { color: var(--accent); font-style: normal; font-weight: 600; }
.quote-person { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); }
.quote-person span { display: block; font-weight: 400; font-size: 14px; color: var(--muted); margin-top: 3px; }
.section-white .quote-person { color: oklch(0.12 0.01 250); }
@media (max-width: 640px) { .quote-block { flex-direction: column; gap: 20px; } .quote-avatar { width: 76px; height: 76px; } }

.quote-aligned { padding-left: 120px; }
.section-label.quote-aligned { padding-left: 18px; margin-left: 120px; }
@media (max-width: 640px) { .quote-aligned { padding-left: 0; } .section-label.quote-aligned { padding-left: 18px; margin-left: 0; } }

.anz-lead { max-width: 900px; margin-top: 8px; }
.anz-route { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.anz-route span { font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; white-space: nowrap; }
.anz-route .anz-dest { color: oklch(0.12 0.01 250); background: var(--accent); border-color: var(--accent); }
.anz-route i { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border), var(--accent)); position: relative; max-width: 220px; }
.anz-route i::after { content: ''; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); transform: rotate(45deg); }
.anz-lead p { color: #F0EDEA; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.6; font-weight: 300; }
.anz-lead p strong { color: var(--text); font-weight: 600; }
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; max-width: 1100px; }
.journey-stage { background: #f4f4f4 url('uploads/babylonsixty-parchment.png') center / cover no-repeat; border: 1px solid oklch(0.86 0.005 250); border-radius: 10px; padding: 30px 26px 28px; position: relative; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; box-shadow: 0 2px 4px oklch(0 0 0 / 0.3), 0 14px 32px -12px oklch(0 0 0 / 0.6);  --accent: var(--accent-on-light); }
.journey-stage::before { content: ''; position: absolute; left: 26px; right: 26px; top: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
.journey-stage:hover { transform: translateY(-5px); border-color: var(--accent); }
.journey-stage:hover::before { transform: scaleX(1); }
.js-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.js-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(0.12 0.01 250); margin-bottom: 10px; }
.journey-stage p { color: oklch(0.32 0.01 250); font-size: 15px; line-height: 1.65; font-weight: 300; }
@media (max-width: 980px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .journey { grid-template-columns: 1fr; } .anz-route i { max-width: none; } }

.calc { display: grid; grid-template-columns: 300px 1fr; gap: 24px; margin-top: 52px; max-width: 1040px; align-items: stretch; }
.calc-controls { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 34px 32px; display: flex; flex-direction: column; gap: 28px; }
.calc-field { display: flex; flex-direction: column; gap: 14px; }
.calc-label { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.calc-label span { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.calc-label strong { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.calc input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: var(--border); outline: none; }
.calc input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--surface); box-shadow: 0 0 0 1px var(--accent); }
.calc input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--surface); box-shadow: 0 0 0 1px var(--accent); }
.calc-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.08em; }
.calc-note { font-size: 14px; line-height: 1.55; color: var(--muted); border-top: 1px solid var(--border); padding-top: 22px; margin-top: auto; }
.calc-note.on { color: var(--accent); font-weight: 500; }
.calc-output { background: var(--accent); border-radius: 10px; padding: 40px 36px; display: flex; flex-direction: column; gap: 26px; color: oklch(0.16 0.02 220); }
.calc-rate { font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.calc-rate span { display: block; font-size: clamp(34px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.calc-figures { display: flex; flex-direction: column; gap: 18px; border-top: 1px solid oklch(0.16 0.02 220 / 0.2); padding-top: 24px; }
.cf-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.cf-value { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.cf-value.accent { font-size: 32px; font-weight: 800; }
.calc-fine { font-size: 12px; line-height: 1.55; opacity: 0.75; margin-top: auto; }
.calc-output .btn-primary { background: oklch(0.16 0.02 220); color: var(--accent); align-self: flex-start; }
.calc-output .btn-primary:hover { opacity: 0.88; }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } }

.calc-compare { max-width: 1040px; margin-top: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 38px 36px; }
.cc-head p { color: #F0EDEA; font-size: 16px; line-height: 1.6; font-weight: 300; max-width: 640px; }
.cc-head p strong { color: var(--text); font-weight: 600; }
.cc-figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 30px; background: var(--border); border-radius: 8px; overflow: hidden; }
.cc-fig { background: var(--bg); padding: 26px 24px; }
.cc-fig.saving { background: oklch(0.2 0.05 185); }
.cc-fig.saving.over { background: oklch(0.22 0.03 30); }
.cc-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cc-value { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--text); }
.cc-fig.saving .cc-value { color: var(--accent); }
.cc-fig.saving.over .cc-value { color: oklch(0.78 0.14 40); }
.cc-sub { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
.cc-breakdown { margin-top: 26px; border-top: 1px solid var(--border); padding-top: 20px; }
.cc-breakdown summary { list-style: none; cursor: pointer; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--accent); }
.cc-breakdown summary::-webkit-details-marker { display: none; }
.cc-breakdown summary::after { content: ' +'; }
.cc-breakdown[open] summary::after { content: ' \2212'; }
.cc-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.cc-table td { padding: 12px 16px 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.5; color: #F0EDEA; font-weight: 300; vertical-align: top; }
.cc-table td:first-child { color: var(--text); font-weight: 600; white-space: nowrap; }
.cc-table td:nth-child(2) { color: var(--accent); font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
.cc-table tr.cc-total td { border-bottom: none; border-top: 1px solid var(--accent); padding-top: 14px; }
.cc-src { font-size: 12px; line-height: 1.6; color: var(--muted); margin-top: 18px; }
@media (max-width: 860px) { .cc-figures { grid-template-columns: 1fr; } .cc-table td { display: block; padding: 2px 0; } .cc-table tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); } .cc-table td:first-child { white-space: normal; } }

.calc-donut { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 36px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; text-align: center; }
.cd-ring { position: relative; width: 100%; max-width: 240px; aspect-ratio: 1; flex-shrink: 0; display: grid; place-items: center; }
.cd-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.cd-track { fill: none; stroke: var(--border); stroke-width: 7; }
.cd-fill { fill: none; stroke: var(--accent); stroke-width: 7; stroke-linecap: round; transition: stroke-dashoffset 0.85s cubic-bezier(0.22,1,0.36,1), stroke 0.3s ease; }
.cd-centre { position: absolute; inset: 0; display: grid; place-items: center; }
.cd-centre strong { font-family: var(--font-display); font-size: clamp(44px, 5vw, 62px); font-weight: 800; letter-spacing: -0.04em; color: var(--accent); line-height: 1; transition: color 0.3s ease; }
.cd-copy { display: flex; flex-direction: column; gap: 12px; }
.cd-label { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--text); }
.calc-donut .calc-note { border-top: none; padding-top: 0; margin-top: 0; }
.calc-donut.over .cd-fill { stroke: oklch(0.68 0.16 40); }
.calc-donut.over .cd-centre strong { color: oklch(0.72 0.16 40); }
@media (max-width: 820px) { .calc-donut { flex-direction: row; text-align: left; align-items: center; gap: 26px; padding: 28px 26px; } .calc-donut .cd-ring { max-width: 132px; } .cd-centre strong { font-size: 34px; } .cd-label { font-size: 15px; } }
@media (max-width: 480px) { .calc-donut { flex-direction: column; align-items: flex-start; } }

.calc-foot { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.calc-foot .btn-primary { padding: 14px 28px; font-size: 15px; }
.calc-foot .calc-fine { font-size: 11px; line-height: 1.5; color: var(--muted); margin: 0; }

.inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; max-width: 1200px; }
.inc-card { background: #f4f4f4 url('uploads/babylonsixty-parchment.png') center / cover no-repeat; border: 1px solid oklch(0.86 0.005 250); border-radius: 10px; padding: 30px 26px 28px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 2px 4px oklch(0 0 0 / 0.3), 0 14px 32px -12px oklch(0 0 0 / 0.6);  --accent: var(--accent-on-light); }
.inc-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.inc-card .inc-icon { color: var(--accent); }
.inc-icon { display: block; width: 26px; height: 26px; color: var(--accent); margin-bottom: 20px; }
.inc-icon svg { width: 100%; height: 100%; }
.inc-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.12 0.01 250); margin-bottom: 10px; }
.inc-card p { color: oklch(0.32 0.01 250); font-size: 15px; line-height: 1.6; font-weight: 300; }
.exc-band { margin-top: 24px; max-width: 1200px; background: transparent; border: 1px solid var(--border); border-radius: 10px; padding: 26px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.exc-head { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.exc-items { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; }
.exc-item { font-size: 14px; line-height: 1.2; color: #F0EDEA; font-weight: 300; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; white-space: nowrap; }
.exc-note { font-size: 13px; line-height: 1.55; color: var(--muted); width: 100%; padding-top: 14px; border-top: 1px solid var(--border); }
@media (max-width: 1080px) { .inc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .inc-grid { grid-template-columns: 1fr; } .exc-item { white-space: normal; } }

.laptop { max-width: 940px; margin: 52px auto 0; position: relative; isolation: isolate; }
.lp-lid { background: oklch(0.22 0.008 250); border: 1px solid oklch(0.32 0.01 250); border-radius: 16px 16px 5px 5px; padding: 16px 16px 20px; box-shadow: 0 30px 60px -30px oklch(0.15 0.01 250 / 0.5); }
.lp-screen { position: relative; aspect-ratio: 16 / 10; background: #000; border-radius: 6px; overflow: hidden; }
.lp-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.7s ease; }
.lp-screen img.on { opacity: 1; }
.lp-base { position: relative; width: 112%; margin-left: -6%; height: 13px; border-radius: 0 0 16px 16px; background: linear-gradient(180deg, oklch(0.34 0.008 250), oklch(0.2 0.008 250)); display: flex; justify-content: center; align-items: flex-start; }
.lp-base::after { content: ''; position: absolute; left: 4%; right: 4%; bottom: -14px; height: 22px; border-radius: 50%; background: radial-gradient(ellipse at center, oklch(0.15 0.01 250 / 0.38), oklch(0.15 0.01 250 / 0.12) 55%, transparent 80%); filter: blur(6px); z-index: -1; pointer-events: none; }
.lp-base span { width: 96px; height: 5px; border-radius: 0 0 6px 6px; background: oklch(0.16 0.008 250); }
.lp-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.lp-arrow { background: none; border: 1px solid var(--border); color: var(--text); width: 42px; height: 42px; border-radius: 50%; font-size: 17px; cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s; font-family: var(--font-display); }
.lp-arrow:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.lp-dots { display: flex; gap: 10px; }
.lp-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--border); transition: background 0.25s, transform 0.25s; }
.lp-dot:hover { background: oklch(0.45 0.01 250); }
.lp-dot.on { background: var(--accent); transform: scale(1.35); }
.section-white .lp-arrow { border-color: oklch(0.86 0.005 250); color: oklch(0.25 0.01 250); }
.section-white .lp-arrow:hover { border-color: var(--accent); color: var(--accent); }
.section-white .lp-dot { background: oklch(0.84 0.005 250); }
.section-white .lp-dot:hover { background: oklch(0.68 0.01 250); }
.section-white .lp-dot.on { background: var(--accent); }
@media (max-width: 600px) { .lp-lid { padding: 9px 9px 12px; border-radius: 10px 10px 4px 4px; } .lp-controls { gap: 16px; margin-top: 22px; } .lp-arrow { width: 38px; height: 38px; } }

.social-wrap { max-width: 940px; margin: 56px auto 0; }
.social-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.social-grid { columns: 4 200px; column-gap: 16px; }
.social-grid img { width: 100%; height: auto; display: block; border-radius: 8px; border: 1px solid var(--border); margin-bottom: 16px; transition: transform 0.3s ease, border-color 0.3s ease; }
.social-grid img:hover { transform: translateY(-4px); border-color: var(--accent); }
.section-white .social-grid img { border-color: oklch(0.88 0.005 250); }
.section-white .social-grid img:hover { border-color: var(--accent); }
@media (max-width: 600px) { .social-grid { columns: 2 140px; } }

.laptop.fill .lp-screen img { object-fit: cover; object-position: top center; }
.laptop .lp-screen img.fit { object-fit: contain; object-position: center; background: #050609; }

/* ---- alternatives + growth chart ---- */
.compare-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: 48px; align-items: start; margin-top: 44px; }
.compare-left { min-width: 0; }
.compare-left .cmp-table { margin-top: 0; }
.growth-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.growth-stats .gs p { color: #F0EDEA; font-size: 14px; line-height: 1.5; font-weight: 300; margin: 0; }
.gs-num { font-family: var(--font-display); font-size: 52px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--accent); margin-bottom: 10px; }
.gs-num.gs-alt { color: #fff; }
.growth-chart { margin: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 26px 24px 20px; }
.growth-chart figcaption { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.gc-plot { position: relative; }
.growth-chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.gc-grid { stroke: oklch(1 0 0 / 0.09); stroke-width: 1; }
.gc-axis { stroke: oklch(1 0 0 / 0.35); stroke-width: 1; }
.gc-tick { fill: #C9C6C3; font-size: 11px; font-family: var(--font-display); }
.gc-line { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.gc-area { color: var(--accent); }
.gc-line-f { stroke: var(--accent); }
.gc-line-t { stroke: #fff; }
.gc-dot { r: 5; stroke-width: 2.5; opacity: 0; transition: opacity 0.35s ease, r 0.15s ease; cursor: pointer; }
.gc-dot-f { fill: var(--accent); stroke: oklch(0.13 0.01 60); }
.gc-dot-t { fill: #fff; stroke: oklch(0.13 0.01 60); }
.gc-dot:hover { r: 7.5; }
.gc-hit { fill: transparent; cursor: pointer; }
.gc-tip { position: absolute; pointer-events: none; transform: translate(-50%, -130%); background: oklch(0.16 0.012 60); border: 1px solid var(--accent); border-radius: 8px; padding: 8px 12px; font-size: 12px; line-height: 1.45; color: #fff; white-space: nowrap; z-index: 3; }
.gc-tip b { font-family: var(--font-display); font-size: 13px; }
.gc-legend { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.gc-key { font-size: 13px; color: #F0EDEA; display: flex; align-items: center; gap: 8px; }
.gc-key::before { content: ''; width: 22px; height: 3px; border-radius: 2px; background: var(--accent); }
.gc-key-t::before { background: #fff; }
@media (max-width: 1080px) { .compare-top { grid-template-columns: 1fr; gap: 40px; } .growth-chart { max-width: 620px; } }
.gs-num { line-height: 1; }
@media (max-width: 560px) { .growth-stats { grid-template-columns: 1fr; gap: 20px; } }

/* ---- E4 stepped tiles ---- */
.stage-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; align-items: stretch; }
.stage-tile { background: #fff; border: 1px solid oklch(0.88 0.005 250); border-radius: 12px; padding: 30px 26px 26px; position: relative; display: flex; flex-direction: column; gap: 14px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.stage-steps { position: relative; }
.stage-tile + .stage-tile::after { content: ''; position: absolute; left: -18px; top: 52px; width: 18px; height: 10px; background: var(--accent); clip-path: polygon(0 40%, 62% 40%, 62% 0, 100% 50%, 62% 100%, 62% 60%, 0 60%); }
.stage-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 12px 12px 0 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.stage-tile:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 18px 36px -16px oklch(0.15 0.01 250 / 0.3); }
.stage-tile:hover::before { transform: scaleX(1); }
.st-head { display: flex; align-items: baseline; gap: 12px; }
.st-num { font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: 0.08em; color: var(--accent); }
.stage-tile h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: oklch(0.12 0.01 250); margin: 0; }
.stage-tile > p { color: oklch(0.38 0.01 250); font-size: 15px; line-height: 1.65; font-weight: 300; margin: 0; }
.st-out { margin-top: auto; padding-top: 16px; border-top: 1px solid oklch(0.9 0.005 250); font-size: 14px; line-height: 1.55; color: oklch(0.3 0.01 250); font-weight: 300; }
.st-out-label { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
@media (max-width: 1080px) { .stage-steps { grid-template-columns: repeat(2, 1fr); } .stage-tile:nth-child(3)::after { display: none; } }
@media (max-width: 620px) { .stage-steps { grid-template-columns: 1fr; } .stage-tile + .stage-tile::after { left: 50%; top: -18px; width: 10px; height: 18px; transform: translateX(-50%); clip-path: polygon(40% 0, 40% 62%, 0 62%, 50% 100%, 100% 62%, 60% 62%, 60% 0); } }

/* ---- market expansion fan ---- */
.mkt-fan { display: grid; grid-template-columns: max-content minmax(90px, 200px) max-content; align-items: center; justify-content: start; gap: 0; margin-bottom: 32px; }
.mf-origin { border: 1px solid var(--accent); border-radius: 10px; padding: 16px 22px; background: oklch(0.7 0.15 185 / 0.08); }
.mf-tag { display: block; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.mf-origin strong { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.mf-linewrap { position: relative; align-self: stretch; min-height: 40px; }
.mf-lines { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mf-lines path { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 5 7; opacity: 0.75; animation: mfFlow 2.4s linear infinite; }
.mf-lines path:nth-child(2) { animation-delay: 0.3s; }
.mf-lines path:nth-child(3) { animation-delay: 0.6s; }
.mf-lines path:nth-child(4) { animation-delay: 0.9s; }
@keyframes mfFlow { to { stroke-dashoffset: -24; } }
.mf-dests { display: grid; gap: 18px; }
.mf-dest { font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; color: oklch(0.16 0.02 220); background: var(--accent); border-radius: 8px; padding: 12px 20px; text-align: center; min-width: 130px; display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease; }
.mf-dest:hover { transform: translateX(4px); }
@media (max-width: 760px) { .mkt-fan { grid-template-columns: 1fr; gap: 20px; justify-items: start; } .mf-linewrap { display: none; } .mf-dests { grid-template-columns: repeat(2, max-content); } }

/* ---- project work tile ---- */
.proj-tile { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 48px; align-items: center; background: #fff; border: 1px solid oklch(0.88 0.005 250); border-radius: 16px; padding: 48px 46px; max-width: 1180px; }
.proj-copy .section-label { background: var(--accent); color: oklch(0.12 0.01 250); margin-bottom: 12px; }
.proj-copy h2 { color: oklch(0.12 0.01 250); font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.proj-copy p { color: oklch(0.36 0.01 250); font-size: 17px; line-height: 1.75; font-weight: 300; margin-bottom: 14px; max-width: 620px; }
.proj-copy p:last-child { margin-bottom: 0; }
.proj-copy p strong { color: oklch(0.12 0.01 250); font-weight: 600; }
.proj-cta { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; justify-content: center; border-left: 1px solid oklch(0.9 0.005 250); padding-left: 44px; }
.proj-btn { display: inline-block; background: oklch(0.16 0.015 250); color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 0.01em; text-decoration: none; padding: 17px 34px; border-radius: 8px; box-shadow: 0 10px 24px -14px oklch(0.15 0.01 250 / 0.6); transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.proj-btn:hover, .proj-tile a.proj-btn:hover, .proj-tile a.proj-btn:focus, .proj-tile a.proj-btn:active { color: #fff; background: oklch(0.22 0.02 220); transform: translateY(-3px); box-shadow: 0 16px 30px -14px oklch(0.15 0.01 250 / 0.7); }
@media (max-width: 900px) { .proj-tile { grid-template-columns: 1fr; gap: 32px; padding: 34px 26px; } .proj-cta { border-left: none; padding-left: 0; border-top: 1px solid oklch(0.9 0.005 250); padding-top: 28px; } }

/* ---- light footer ---- */
footer { background: #f4f4f4 url('uploads/babylonsixty-parchment.png') center / cover no-repeat; border-top: 1px solid oklch(0.86 0.005 250); color: oklch(0.15 0.01 250);  --accent: var(--accent-on-light); }
footer .footer-top, footer .footer-links { border-bottom-color: oklch(0.82 0.005 250); }
footer p, footer .footer-contact span, footer .footer-links .fl-label { color: oklch(0.42 0.01 250) !important; }
footer a, footer .footer-contact a, footer .footer-links a { color: oklch(0.2 0.01 250); }
footer a:hover, footer .footer-contact a:hover, footer .footer-links a:hover { color: var(--accent); }
footer .footer-brand img { filter: invert(1) brightness(0.2); opacity: 0.85 !important; }
footer .btn-primary { color: oklch(0.1 0.01 60); }

/* ---- alternating case bands ---- */
.case-band { padding: 72px 60px; }
.case-band .case-card { margin-bottom: 0; }
.case-band + .case-band:not(.section-white) { border-top: 1px solid var(--border); }
.section-white .case-card { background: #fff; border-color: oklch(0.87 0.005 250); }
.section-white .case-card:hover { border-color: oklch(0.7 0.15 185 / 0.6); box-shadow: 0 24px 48px -28px oklch(0.15 0.01 250 / 0.3); }
.section-white .case-logo { background: oklch(0.97 0.003 250); border: 1px solid oklch(0.9 0.005 250); }
.section-white .case-meta > div:not(.case-logo) { background: oklch(0.975 0.003 250); border-color: oklch(0.89 0.005 250); }
.section-white .case-meta .label, .section-white .case-step .label, .section-white .case-quote cite { color: var(--accent); }
.section-white .case-meta p, .section-white .case-step p { color: oklch(0.3 0.01 250); }
.section-white .case-body h3 { color: oklch(0.12 0.01 250); }
.section-white .case-step { background: oklch(0.975 0.003 250); border-color: oklch(0.89 0.005 250); }
.section-white .case-step:hover { background: oklch(0.7 0.15 185 / 0.08); border-color: oklch(0.7 0.15 185 / 0.5); }
.section-white .case-quote { background: oklch(0.7 0.15 185 / 0.1); border-color: oklch(0.7 0.15 185 / 0.4); color: oklch(0.15 0.01 250); }
.section-white .case-quote::before { color: var(--accent); }
@media (max-width: 860px) { .case-band { padding: 48px 24px; } }

/* ---- silver laptop on dark sections ---- */
section:not(.section-white) .lp-lid { background: repeating-linear-gradient(90deg, oklch(1 0 0 / 0.035) 0 1px, transparent 1px 3px), linear-gradient(180deg, oklch(0.6 0.006 250), oklch(0.5 0.006 250) 60%, oklch(0.45 0.006 250)); border-color: oklch(0.66 0.006 250); box-shadow: 0 30px 60px -30px oklch(0 0 0 / 0.75), inset 0 1px 0 oklch(1 0 0 / 0.35), inset 0 -1px 0 oklch(0 0 0 / 0.25); }
section:not(.section-white) .lp-base { background: repeating-linear-gradient(90deg, oklch(1 0 0 / 0.03) 0 1px, transparent 1px 3px), linear-gradient(180deg, oklch(0.64 0.006 250), oklch(0.42 0.006 250)); box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.3); }
section:not(.section-white) .lp-base span { background: oklch(0.36 0.006 250); }
section:not(.section-white) .lp-base::after { background: radial-gradient(ellipse at center, oklch(0 0 0 / 0.7), oklch(0 0 0 / 0.3) 55%, transparent 80%); }

/* ---- calculator tiles on parchment ---- */
.section-white .calc-controls, .section-white .calc-donut, .section-white .calc-compare { box-shadow: 0 2px 4px oklch(0.15 0.01 250 / 0.12), 0 14px 32px -12px oklch(0.15 0.01 250 / 0.45); border-color: oklch(0.3 0.01 250); }
.section-white .calc-compare .section-label { background: var(--accent); color: oklch(0.12 0.01 250); }

/* ---- CTA on parchment ---- */
.cta-section.section-white { border-top: 1px solid oklch(0.86 0.005 250); }
.cta-section.section-white .cta-bg { opacity: 0.14; }
.cta-section.section-white h2 { color: oklch(0.12 0.01 250); }
.cta-section.section-white p { color: oklch(0.35 0.01 250); }
.cta-section.section-white .cta-fine { color: oklch(0.45 0.01 250); }
.cta-section.section-white .cta-fine a { color: var(--accent); }

/* ---- dark footer opt-in (pages ending on a parchment section) ---- */
footer.footer-dark { background: var(--bg); border-top: 1px solid var(--border); color: var(--text); }
footer.footer-dark .footer-links { border-bottom-color: var(--border); }
footer.footer-dark p, footer.footer-dark .footer-links .fl-label { color: var(--muted) !important; }
footer.footer-dark .footer-links a { color: #F0EDEA; }
footer.footer-dark a { color: var(--accent); }
footer.footer-dark a:hover, footer.footer-dark .footer-links a:hover { color: var(--accent); }

/* ---- market expansion globe ---- */
.mkt-globe { display: grid; grid-template-columns: minmax(260px, 420px); gap: 40px; align-items: center; margin-bottom: 32px; }
.mg-canvas { width: 100%; aspect-ratio: 1; position: relative; }
.mg-canvas canvas { display: block; }
.mg-side { display: grid; gap: 22px; justify-items: start; }
@media (max-width: 760px) { .mkt-globe { grid-template-columns: 1fr; gap: 24px; } .mg-canvas { max-width: 340px; } .mf-dests { grid-template-columns: repeat(2, max-content); } }

@media (max-width: 760px) { .section-label { white-space: normal; height: auto; min-height: 32px; padding: 6px 14px; line-height: 1.3; text-align: center; min-width: 0; } }
