:root {
  --ink: #05080d;
  --navy: #09111f;
  --navy-2: #101c2f;
  --paper: #f4f1e9;
  --paper-2: #e9e5da;
  --gold: #c6a23a;
  --gold-2: #e2c35d;
  --muted: #9da8b8;
  --line: rgba(255,255,255,.13);
  --dark-line: rgba(5,8,13,.12);
  --success: #8fd7a8;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.24);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999;
  transform: translateY(-140%); background: var(--gold-2); color: var(--ink);
  padding: .7rem 1rem; border-radius: 10px; font-weight: 800;
}
.skip-link:focus { transform: none; }

.site-shell { position: relative; isolation: isolate; }
.site-shell::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -3;
  background:
    radial-gradient(circle at 15% 0%, rgba(198,162,58,.12), transparent 30%),
    radial-gradient(circle at 90% 25%, rgba(21,54,91,.38), transparent 33%),
    linear-gradient(180deg, var(--ink), #07101c 65%, var(--ink));
}
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-navy { background: var(--navy); }
.section-border { border-block: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; text-transform: uppercase;
  letter-spacing: .16em; font-size: .74rem; font-weight: 900; color: var(--gold-2);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #6d5718; }
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 7.7rem); line-height: .92; letter-spacing: -.055em;
  margin: 22px 0 26px; font-weight: 500;
}
.h1-small { font-size: clamp(3.2rem, 7vw, 6.4rem); }
.heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.1rem); line-height: 1; letter-spacing: -.045em;
  margin: 18px 0 24px; font-weight: 500;
}
.subheading { font-size: clamp(1.2rem, 2vw, 1.55rem); max-width: 740px; color: #c7cfdb; }
.section-light .subheading { color: #4e5560; }
.kicker { max-width: 680px; color: var(--muted); font-size: 1.06rem; }
.section-light .kicker { color: #555d67; }

.header {
  position: fixed; inset: 0 0 auto; z-index: 100; padding: 18px 0;
  transition: background .35s ease, padding .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.header.scrolled { background: rgba(5,8,13,.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); padding: 12px 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 950; letter-spacing: -.04em; }
.logo-mark {
  width: 42px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(226,195,93,.65);
  border-radius: 13px; color: var(--gold-2); background: rgba(198,162,58,.08); box-shadow: inset 0 0 24px rgba(198,162,58,.06);
}
.logo-copy strong { display: block; line-height: .9; font-size: 1.1rem; }
.logo-copy span { color: var(--muted); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) { color: #c8d0dc; font-size: .92rem; font-weight: 700; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold-2); transition: right .25s ease; }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: transparent; color: #fff; }
.menu-toggle span { width: 20px; height: 1px; background: currentColor; display: block; margin: 5px auto; transition: .25s ease; }
.menu-toggle.open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  min-height: 50px; padding: 0 1.25rem; border-radius: 999px; border: 1px solid transparent;
  background: var(--gold-2); color: var(--ink); font-weight: 900; font-size: .9rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(198,162,58,.24); background: #efd474; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn-outline:hover { background: #fff; color: var(--ink); box-shadow: none; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy-2); box-shadow: 0 14px 36px rgba(0,0,0,.18); }
.btn-sm { min-height: 42px; padding-inline: 1rem; }
.arrow { transition: transform .25s ease; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }

.hero { min-height: 100svh; display: flex; align-items: center; padding: 145px 0 78px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display span { color: var(--gold-2); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: #bec7d3; font-size: .86rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 5px rgba(226,195,93,.1); }

.hero-visual { position: relative; min-height: 590px; perspective: 1200px; }
.orbit { position: absolute; inset: 4% -5% 0; border: 1px solid rgba(226,195,93,.18); border-radius: 50%; transform: rotate(-13deg); }
.orbit::after { content: ""; position: absolute; width: 12px; height: 12px; background: var(--gold-2); border-radius: 50%; left: 8%; top: 30%; box-shadow: 0 0 30px var(--gold); }
.dashboard {
  position: absolute; inset: 9% 5% 7% 5%; padding: 22px; border-radius: 30px;
  background: linear-gradient(145deg, rgba(18,31,51,.96), rgba(5,8,13,.96));
  border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); transform: rotateY(-7deg) rotateX(3deg);
  overflow: hidden;
}
.dashboard::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(198,162,58,.16), transparent 28%); pointer-events: none; }
.dash-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); }
.dash-label { color: #d9dfE8; font-size: .82rem; font-weight: 800; }
.dash-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; margin-top: 18px; }
.metric-large, .metric-card, .keyword-card { background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 18px; }
.metric-large { padding: 20px; grid-row: span 2; min-height: 286px; }
.metric-label { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.metric-value { font-family: Georgia, serif; font-size: 3.5rem; line-height: 1; margin-top: 8px; }
.metric-value small { color: var(--success); font: 800 .78rem Inter, sans-serif; margin-left: 8px; }
.chart { height: 160px; margin-top: 18px; position: relative; overflow: hidden; }
.chart svg { width: 100%; height: 100%; }
.metric-card { padding: 18px; }
.metric-card strong { display: block; font-size: 1.6rem; margin-top: 8px; }
.keyword-list { grid-column: 1 / -1; display: grid; gap: 8px; }
.keyword-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; padding: 11px 13px; border-radius: 12px; background: rgba(255,255,255,.045); color: #cbd3de; font-size: .78rem; }
.rank-up { color: var(--success); font-weight: 900; }
.float-card {
  position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; padding: 14px 17px;
  background: rgba(9,17,31,.86); backdrop-filter: blur(14px); box-shadow: 0 18px 44px rgba(0,0,0,.26); font-size: .82rem;
  animation: float 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 1.2rem; margin-top: 3px; }
.float-one { top: 3%; right: -2%; }
.float-two { left: -4%; bottom: 10%; animation-delay: -2.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.logo-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.02); overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: 58px; padding: 22px 29px; white-space: nowrap; color: #aeb8c5; font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.marquee-group span::before { content: "✦"; color: var(--gold-2); margin-right: 58px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-head { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.split-head .heading { margin-bottom: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.026));
}
.card-light { border-color: var(--dark-line); background: rgba(255,255,255,.72); }
.service-card { min-height: 460px; padding: 28px; display: flex; flex-direction: column; transition: transform .35s ease, border-color .35s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(226,195,93,.45); }
.service-card:nth-child(2) { background: linear-gradient(160deg, rgba(198,162,58,.18), rgba(255,255,255,.035)); }
.service-number { color: var(--gold-2); font-size: .78rem; letter-spacing: .16em; font-weight: 900; }
.service-visual { height: 175px; margin: 18px 0 24px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid var(--line); display: grid; place-items: center; position: relative; overflow: hidden; }
.service-visual::before { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(226,195,93,.28); border-radius: 50%; }
.service-visual svg { width: 82px; color: var(--gold-2); position: relative; z-index: 2; }
.service-card h3 { font-family: Georgia, serif; font-size: 2rem; line-height: 1.05; margin: 0 0 14px; font-weight: 500; }
.service-card p { color: #aeb8c5; margin: 0 0 24px; }
.text-link { margin-top: auto; display: inline-flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 900; }

.process-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.process-list { display: grid; gap: 14px; }
.process-item { padding: 28px; border-radius: 20px; border: 1px solid var(--dark-line); background: rgba(255,255,255,.6); display: grid; grid-template-columns: 60px 1fr; gap: 18px; }
.process-item .num { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; border: 1px solid #c6a23a; font-weight: 900; color: #6d5718; }
.process-item h3 { margin: 0 0 8px; font-size: 1.22rem; }
.process-item p { margin: 0; color: #59616b; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card { padding: 26px; display: flex; flex-direction: column; min-height: 640px; transition: transform .3s ease; }
.price-card:hover { transform: translateY(-7px); }
.price-card.featured { border-color: rgba(226,195,93,.75); background: linear-gradient(160deg, rgba(198,162,58,.18), rgba(255,255,255,.04)); box-shadow: 0 22px 70px rgba(0,0,0,.26); }
.badge { display: inline-flex; align-self: flex-start; color: var(--ink); background: var(--gold-2); padding: .35rem .65rem; border-radius: 999px; font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 950; }
.price-card h3 { font-size: 1.1rem; margin: 20px 0 6px; }
.price { font-family: Georgia, serif; font-size: 2.85rem; letter-spacing: -.04em; }
.price small { font: 700 .76rem Inter, sans-serif; color: var(--muted); letter-spacing: 0; }
.price-note { color: #aeb8c5; min-height: 56px; font-size: .88rem; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 10px; color: #d4dae3; font-size: .84rem; }
.feature-list li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; }
.feature-list li::before { content: "✓"; color: var(--gold-2); font-weight: 900; }
.price-card .btn { margin-top: auto; }
.fine-print { color: var(--muted); font-size: .78rem; margin-top: 20px; }

.report-panel { display: grid; grid-template-columns: 1fr 1.12fr; gap: 46px; align-items: center; }
.report-window { border-radius: 26px; background: #fff; color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.36); overflow: hidden; transform: rotate(1.5deg); }
.report-bar { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; background: #f1efe9; border-bottom: 1px solid #ded9cc; font-size: .78rem; font-weight: 800; }
.report-body { padding: 24px; }
.report-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.report-stat { padding: 14px; border: 1px solid #e1ddd2; border-radius: 14px; }
.report-stat span { display: block; color: #727983; font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.report-stat strong { font-size: 1.4rem; }
.bar-chart { height: 180px; display: flex; align-items: end; gap: 8px; padding-top: 22px; }
.bar-chart i { flex: 1; border-radius: 7px 7px 2px 2px; background: linear-gradient(180deg, var(--gold-2), #8a6c1b); transform-origin: bottom; animation: growbar 1.4s both; }
@keyframes growbar { from { transform: scaleY(.05); } }
.placeholder-note { margin-top: 15px; font-size: .72rem; color: #6b7078; background: #f4f1e9; padding: 10px 12px; border-radius: 10px; }

.faq { display: grid; gap: 10px; max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--dark-line); }
.faq-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border: 0; background: transparent; color: inherit; text-align: left; font-weight: 850; }
.faq-button span:last-child { font-size: 1.5rem; transition: transform .25s ease; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { color: #5b626c; margin: 0 0 24px; max-width: 760px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.cta-panel { padding: 64px; border-radius: 34px; position: relative; overflow: hidden; background: var(--gold-2); color: var(--ink); }
.cta-panel::after { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(5,8,13,.2); border-radius: 50%; right: -80px; top: -170px; box-shadow: 0 0 0 55px rgba(5,8,13,.035), 0 0 0 110px rgba(5,8,13,.025); }
.cta-panel .heading { max-width: 730px; position: relative; z-index: 2; }
.cta-panel p { max-width: 650px; color: rgba(5,8,13,.75); position: relative; z-index: 2; }
.cta-panel .btn { position: relative; z-index: 2; margin-top: 18px; }

.footer { padding: 70px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .9fr; gap: 42px; }
.footer h4 { margin: 0 0 16px; font-size: .76rem; text-transform: uppercase; letter-spacing: .13em; color: var(--gold-2); }
.footer p, .footer a { color: #aeb8c5; font-size: .88rem; }
.footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 34px; margin-top: 44px; border-top: 1px solid var(--line); color: #7f8997; font-size: .78rem; }

.page-hero { padding: 180px 0 90px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; border: 1px solid rgba(226,195,93,.16); right: -140px; top: 20px; box-shadow: 0 0 0 80px rgba(198,162,58,.025), 0 0 0 160px rgba(198,162,58,.02); }
.breadcrumbs { color: var(--muted); font-size: .8rem; margin-bottom: 24px; }
.breadcrumbs a:hover { color: #fff; }

.service-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.service-detail + .service-detail { margin-top: 90px; padding-top: 90px; border-top: 1px solid var(--dark-line); }
.service-detail h2 { font-family: Georgia, serif; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1; margin: 10px 0 20px; font-weight: 500; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.check { border: 1px solid var(--dark-line); border-radius: 14px; padding: 13px; font-size: .85rem; font-weight: 700; background: rgba(255,255,255,.5); }
.check::before { content: "✓"; color: #7c6215; margin-right: 8px; }
.visual-box { min-height: 390px; border-radius: 28px; background: var(--navy); border: 1px solid rgba(255,255,255,.14); padding: 28px; position: relative; overflow: hidden; color: #fff; }
.visual-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(198,162,58,.23), transparent 34%); }
.audit-line { position: relative; display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .83rem; }
.audit-line span:last-child { color: var(--success); font-weight: 900; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.values { display: grid; gap: 14px; }
.value { padding: 22px; border: 1px solid var(--dark-line); border-radius: 18px; background: rgba(255,255,255,.62); }
.value h3 { margin: 0 0 5px; }
.value p { margin: 0; color: #5d6570; }
.disclosure { border-left: 3px solid var(--gold); padding: 14px 16px; background: rgba(198,162,58,.11); color: #514619; border-radius: 0 12px 12px 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-card { padding: 26px; border: 1px solid var(--dark-line); border-radius: 20px; background: rgba(255,255,255,.6); }
.contact-card + .contact-card { margin-top: 14px; }
.contact-card h3 { margin-top: 0; }
.form { padding: 34px; border: 1px solid var(--dark-line); border-radius: 26px; background: #fff; box-shadow: 0 24px 70px rgba(14,18,25,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 850; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #d8d4ca; border-radius: 12px; padding: 13px 14px; background: #faf9f5; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,162,58,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { color: #676e77; font-size: .75rem; margin-top: 14px; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 44px; }
.legal p, .legal li { color: #525a64; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

@media (max-width: 1060px) {
  .hero-grid, .report-panel, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 530px; width: min(100%, 700px); margin-inline: auto; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .service-card:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav { position: fixed; inset: 0; background: rgba(5,8,13,.98); display: flex; flex-direction: column; justify-content: center; gap: 24px; transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .nav.open { transform: none; }
  .nav a:not(.btn) { font-size: 1.45rem; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .split-head, .process-wrap, .service-detail, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .sticky-copy { position: static; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .cta-panel { padding: 42px 28px; }
  .section { padding: 84px 0; }
  .page-hero { padding-top: 150px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .display { font-size: clamp(3.25rem, 17vw, 5.2rem); }
  .hero { padding-top: 125px; }
  .hero-visual { min-height: 450px; }
  .dashboard { inset: 6% 0 4%; padding: 14px; border-radius: 22px; transform: none; }
  .dash-body { grid-template-columns: 1fr 1fr; gap: 9px; }
  .metric-large { grid-column: 1 / -1; min-height: 185px; grid-row: auto; }
  .chart { height: 95px; }
  .keyword-row { grid-template-columns: 1fr auto; }
  .keyword-row span:nth-child(2) { display: none; }
  .float-one { right: 0; top: 0; }
  .float-two { left: 0; bottom: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .form-grid, .check-grid, .report-stats { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { grid-column: auto !important; }
  .footer-bottom { flex-direction: column; }
  .cta-panel { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 2026 conversion, navigation and local SEO update */
:root { --promo-height: 42px; --header-height: 78px; }
body.promo-closed { --promo-height: 0px; }

.promo-banner {
  position: fixed; inset: 0 0 auto; z-index: 1000; min-height: var(--promo-height);
  display: grid; place-items: center; background: linear-gradient(90deg, #b58e25, #f0d66f 48%, #b58e25);
  color: #05080d; box-shadow: 0 10px 35px rgba(0,0,0,.2); transition: transform .35s ease, opacity .35s ease;
}
body.promo-closed .promo-banner { transform: translateY(-110%); opacity: 0; pointer-events: none; }
.promo-inner { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 15px; padding: 6px 54px 6px 18px; font-size: .8rem; font-weight: 700; text-align: center; }
.promo-spark { animation: promoPulse 1.8s ease-in-out infinite; }
.promo-code { border: 1px dashed rgba(5,8,13,.48); background: rgba(255,255,255,.24); color: inherit; border-radius: 999px; padding: 4px 10px; font-size: .72rem; font-weight: 800; transition: transform .2s, background .2s; }
.promo-code:hover { transform: translateY(-1px); background: rgba(255,255,255,.5); }
.promo-inner > a { font-weight: 950; text-decoration: underline; text-underline-offset: 3px; }
.promo-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border: 0; background: transparent; color: inherit; font-size: 1.35rem; line-height: 1; }
@keyframes promoPulse { 0%,100% { transform: rotate(0) scale(1); } 50% { transform: rotate(18deg) scale(1.18); } }

.scroll-progress { position: fixed; top: var(--promo-height); left: 0; right: 0; height: 2px; z-index: 1001; pointer-events: none; transition: top .35s ease; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--gold), #fff0a9); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 14px rgba(226,195,93,.7); }

.header { top: var(--promo-height); transition: top .35s ease, background .35s ease, padding .35s ease, border-color .35s ease, backdrop-filter .35s ease; }
.hero { padding-top: calc(145px + var(--promo-height)); }
.page-hero { padding-top: calc(180px + var(--promo-height)); }
.logo { flex: 0 0 auto; }
.logo img { width: 190px; height: auto; max-height: 52px; }
.footer .logo img { width: 205px; }

.nav { gap: 23px; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { white-space: nowrap; }
.nav-popover {
  position: absolute; top: calc(100% + 22px); left: 50%; width: 245px; padding: 16px 17px;
  border: 1px solid rgba(226,195,93,.26); border-radius: 16px; background: rgba(9,17,31,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.38); backdrop-filter: blur(18px); color: #fff;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 10px) scale(.96);
  transition: opacity .22s ease, transform .22s ease, visibility .22s; overflow: hidden;
}
.nav-popover::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 0%, rgba(226,195,93,.16), transparent 42%); pointer-events: none; }
.nav-popover strong, .nav-popover span { position: relative; display: block; }
.nav-popover strong { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 5px; }
.nav-popover span { color: #aeb8c5; font-size: .77rem; line-height: 1.5; }
.nav-item:hover .nav-popover, .nav-item:focus-within .nav-popover { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }

/* Deeper but still restrained motion */
.reveal {
  opacity: 0; transform: translate3d(0, 46px, 0) scale(.985); filter: blur(8px);
  transition: opacity .82s ease, transform .95s cubic-bezier(.16,1,.3,1), filter .8s ease;
  transition-delay: var(--stagger-delay, 0s); will-change: transform, opacity;
}
.reveal.in-view { opacity: 1; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
.reveal-left { transform: translate3d(-58px, 20px, 0) scale(.985); }
.reveal-right { transform: translate3d(58px, 20px, 0) scale(.985); }
.reveal-scale { transform: translate3d(0, 26px, 0) scale(.92); }
.reveal-soft { transform: translate3d(0, 34px, 0); clip-path: inset(0 0 22% 0); }
.reveal-soft.in-view { clip-path: inset(0 0 0 0); }
.delay-1 { --stagger-delay: .1s; }
.delay-2 { --stagger-delay: .2s; }
.delay-3 { --stagger-delay: .3s; }

.section { overflow: clip; }
.section::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(226,195,93,.08); right: -250px; top: 22%; pointer-events: none; transform: translateY(var(--section-shift, 0px)); transition: transform .1s linear; }
.section-light::after { border-color: rgba(5,8,13,.06); }
.card, .market-card, .visual-box, .process-item, .value, .contact-card { transform-style: preserve-3d; backface-visibility: hidden; }
.card::after, .market-card::after {
  content: ""; position: absolute; inset: -45% -80%; background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.12) 50%, transparent 58%);
  transform: translateX(-55%) rotate(7deg); transition: transform .8s cubic-bezier(.16,1,.3,1); pointer-events: none;
}
.card:hover::after, .market-card:hover::after { transform: translateX(55%) rotate(7deg); }

.section-local { background: linear-gradient(135deg, #f4f1e9 0%, #ece7db 58%, #e5ddc9 100%); color: var(--ink); }
.local-grid, .local-service-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.local-copy .heading { max-width: 720px; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.keyword-cloud span, .area-list span { border: 1px solid rgba(5,8,13,.13); background: rgba(255,255,255,.62); border-radius: 999px; padding: 8px 12px; color: #3f4650; font-size: .78rem; font-weight: 780; box-shadow: 0 7px 22px rgba(18,24,34,.04); }
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.market-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid rgba(5,8,13,.12); border-radius: 24px; background: rgba(255,255,255,.7); box-shadow: 0 24px 65px rgba(14,18,25,.08); overflow: hidden; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.market-card:nth-child(2) { background: linear-gradient(155deg, #101c2f, #09111f); color: #fff; border-color: rgba(226,195,93,.26); }
.market-card:nth-child(2) p { color: #b7c0cc; }
.market-card:hover { transform: translateY(-9px); border-color: rgba(198,162,58,.58); box-shadow: 0 34px 80px rgba(14,18,25,.15); }
.market-label { color: #866a18; font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.market-card:nth-child(2) .market-label { color: var(--gold-2); }
.market-card h3 { font-family: Georgia, serif; font-size: 2rem; line-height: 1.04; font-weight: 500; margin: 48px 0 14px; }
.market-card p { color: #5d6570; margin: 0 0 28px; }
.market-card .text-link { width: 100%; }
.local-hero { background: radial-gradient(circle at 78% 30%, rgba(198,162,58,.17), transparent 30%); }
.london-hero { background: radial-gradient(circle at 78% 30%, rgba(34,75,118,.38), transparent 34%); }
.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.area-list span { font-size: .88rem; padding: 11px 15px; }
.section-faq { border-top: 1px solid rgba(5,8,13,.08); }

.discount-callout { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 15px 18px; margin-bottom: 26px; border: 1px solid rgba(226,195,93,.4); border-radius: 17px; background: rgba(226,195,93,.1); color: #fff; }
.discount-callout span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; font-weight: 950; }
.discount-callout strong { font-size: .9rem; }
.discount-callout a { margin-left: auto; color: var(--gold-2); font-size: .82rem; font-weight: 900; }

/* Polished interaction states */
.btn, .promo-code, .menu-toggle, .faq-button { -webkit-tap-highlight-color: transparent; }
.btn:focus-visible, .nav a:focus-visible, .promo-code:focus-visible, .promo-close:focus-visible, .faq-button:focus-visible { outline: 2px solid #fff2a9; outline-offset: 4px; }
.section-light .btn:focus-visible, .section-light .faq-button:focus-visible { outline-color: #806514; }

@media (max-width: 1100px) {
  .nav { gap: 15px; }
  .nav a:not(.btn) { font-size: .84rem; }
  .nav-cta { display: none; }
  .local-grid, .local-service-grid { grid-template-columns: 1fr; }
  .market-grid { max-width: 820px; }
}

@media (max-width: 820px) {
  :root { --promo-height: 48px; }
  .promo-inner { gap: 8px; padding: 5px 44px 5px 10px; font-size: .72rem; }
  .promo-inner > a { display: none; }
  .promo-code { font-size: .66rem; }
  .logo img { width: 164px; }
  .nav { inset: 0; padding: calc(95px + var(--promo-height)) 30px 45px; align-items: stretch; justify-content: flex-start; overflow-y: auto; z-index: 1; }
  .nav-item { display: block; }
  .nav-item > a { display: block; padding: 5px 0; }
  .nav-popover { display: none; }
  .nav-cta { display: inline-flex; margin-top: 12px; }
  .market-grid { grid-template-columns: 1fr; }
  .market-card { min-height: 270px; }
  .discount-callout { justify-content: flex-start; }
  .discount-callout a { width: 100%; margin-left: 0; }
  .page-hero { padding-top: calc(150px + var(--promo-height)); }
}

@media (max-width: 620px) {
  .promo-inner > span:nth-child(2) { max-width: 190px; line-height: 1.2; }
  .hero { padding-top: calc(125px + var(--promo-height)); }
  .page-hero { padding-top: calc(135px + var(--promo-height)); }
  .local-grid, .local-service-grid { gap: 38px; }
  .market-card h3 { margin-top: 32px; }
  .section::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-spark, .card::after, .market-card::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-soft { opacity: 1; transform: none; filter: none; clip-path: none; }
}

/* =========================================================
   MIO motion system — transform/opacity driven for performance
   ========================================================= */
:root {
  --promo-height: 46px;
  --ease-premium: cubic-bezier(.16,1,.3,1);
}

body { animation: pageIn .7s var(--ease-premium) both; }
body.page-leaving { animation: pageOut .38s ease both; pointer-events: none; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pageOut { to { opacity: 0; transform: scale(.994); filter: blur(5px); } }

/* Fast brand intro. It cannot trap the page if JavaScript is disabled. */
.page-loader {
  position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center;
  background: #05080d; pointer-events: none;
  animation: loaderCurtain 1.3s var(--ease-premium) forwards;
}
.loader-mark {
  font: 950 clamp(3rem,8vw,6.4rem)/1 Inter,ui-sans-serif,sans-serif;
  letter-spacing: -.09em; color: #fff; position: relative;
  animation: loaderMark .9s var(--ease-premium) both;
}
.loader-mark::after { content: ""; position: absolute; left: 4%; right: -4%; bottom: -15px; height: 4px; border-radius: 999px; background: linear-gradient(90deg,var(--gold),var(--gold-2)); transform-origin: left; animation: loaderLine .85s .15s var(--ease-premium) both; }
.page-loader > span { position: absolute; inset: auto 0 0; height: 2px; background: var(--gold-2); transform-origin: left; animation: loaderProgress 1s ease both; }
@keyframes loaderMark { from { opacity: 0; transform: translateY(28px) scale(.9); filter: blur(12px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes loaderLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loaderProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loaderCurtain { 0%,68% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; transform: translateY(-2%); } }

/* Moving discount ticker */
.promo-banner {
  display: flex; align-items: center; min-height: var(--promo-height); overflow: hidden;
  background: linear-gradient(90deg,#9e7414,#f1d76f 35%,#d2a934 70%,#9e7414);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.promo-viewport { flex: 1; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent); }
.promo-track { display: flex; width: max-content; animation: promoMarquee 24s linear infinite; will-change: transform; }
.promo-sequence { display: flex; align-items: center; white-space: nowrap; min-height: var(--promo-height); }
.promo-sequence span, .promo-sequence b { display: inline-flex; align-items: center; gap: 11px; padding-inline: 24px; color: #07101c; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 850; }
.promo-sequence span::after, .promo-sequence b::after { content: "✦"; margin-left: 35px; font-size: .72rem; }
.promo-sequence b { font-weight: 950; }
.promo-actions { position: relative; z-index: 2; flex: 0 0 auto; display: flex; align-items: center; gap: 10px; min-height: var(--promo-height); padding: 0 14px 0 12px; background: rgba(247,220,116,.92); box-shadow: -20px 0 34px rgba(198,162,58,.34); }
.promo-actions > a { color: #07101c; font-size: .72rem; font-weight: 950; white-space: nowrap; }
.promo-code { border: 1px dashed rgba(5,8,13,.55); background: rgba(255,255,255,.26); color: #07101c; border-radius: 999px; padding: 5px 11px; font-size: .69rem; font-weight: 850; transition: transform .2s,background .2s; white-space: nowrap; }
.promo-code:hover { transform: scale(1.04); background: rgba(255,255,255,.56); }
.promo-close { position: static; transform: none; width: 28px; height: 28px; flex: 0 0 28px; }
@keyframes promoMarquee { to { transform: translateX(-50%); } }

/* Ambient movement behind the interface */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .62; will-change: transform; }
.orb-a { width: 44vw; aspect-ratio: 1; top: -24vw; right: -12vw; background: radial-gradient(circle,rgba(44,91,145,.31),transparent 67%); animation: orbA 17s ease-in-out infinite alternate; }
.orb-b { width: 36vw; aspect-ratio: 1; bottom: -20vw; left: -13vw; background: radial-gradient(circle,rgba(198,162,58,.22),transparent 68%); animation: orbB 21s ease-in-out infinite alternate; }
.orb-c { width: 30vw; aspect-ratio: 1; top: 34%; left: 43%; background: radial-gradient(circle,rgba(30,65,105,.18),transparent 67%); animation: orbC 23s ease-in-out infinite alternate; }
.grid-field { position: absolute; inset: 0; opacity: .07; background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 50% 25%,#000,transparent 70%); animation: gridDrift 28s linear infinite; }
@keyframes orbA { to { transform: translate(-8vw,9vw) scale(1.1); } }
@keyframes orbB { to { transform: translate(11vw,-7vw) scale(.92); } }
@keyframes orbC { to { transform: translate(-8vw,5vw) scale(1.18); } }
@keyframes gridDrift { to { background-position: 72px 72px; } }

.cursor-glow { position: fixed; z-index: 45; width: 360px; height: 360px; border-radius: 50%; pointer-events: none; opacity: 0; transform: translate3d(calc(var(--cursor-x, -500px) - 50%),calc(var(--cursor-y, -500px) - 50%),0); background: radial-gradient(circle,rgba(226,195,93,.09),transparent 65%); transition: opacity .3s; mix-blend-mode: screen; }
body.cursor-active .cursor-glow { opacity: 1; }

/* Premium word-by-word typography reveals */
[data-split].is-split { overflow: hidden; }
[data-split].is-split .word { display: inline-block; overflow: hidden; vertical-align: bottom; margin-right: .22em; margin-bottom: -.12em; padding-bottom: .12em; }
[data-split].is-split .word-inner { display: inline-block; opacity: 0; transform: translateY(110%) rotate(2deg); filter: blur(8px); transition: transform .9s var(--ease-premium),opacity .7s ease,filter .8s ease; transition-delay: calc(var(--word-index) * 42ms); }
[data-split].is-split.text-in-view .word-inner { opacity: 1; transform: none; filter: none; }
.hero [data-split].is-split .word-inner { transition-duration: 1.05s; }

.eyebrow { position: relative; overflow: hidden; }
.eyebrow::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg,transparent 30%,rgba(255,255,255,.8) 50%,transparent 70%); transform: translateX(-130%); animation: eyebrowSweep 5.8s 1.4s ease-in-out infinite; }
@keyframes eyebrowSweep { 0%,70% { transform: translateX(-130%); } 90%,100% { transform: translateX(130%); } }

/* Scroll scene enhancements */
.section::before { content: ""; position: absolute; top: 0; left: 50%; width: min(86%,1080px); height: 1px; background: linear-gradient(90deg,transparent,rgba(226,195,93,.28),transparent); transform: translateX(-50%) scaleX(.25); transform-origin: center; opacity: .35; transition: transform 1.4s var(--ease-premium),opacity .8s; }
.section.scene-active::before { transform: translateX(-50%) scaleX(1); opacity: 1; }
.section-light::before { background: linear-gradient(90deg,transparent,rgba(5,8,13,.14),transparent); }

.reveal.reveal-rotate { transform: translate3d(0,60px,0) rotate(2.2deg) scale(.96); }
.reveal.reveal-flip { transform: perspective(1000px) rotateX(16deg) translateY(45px); transform-origin: top; }
.reveal.reveal-left-deep { transform: translate3d(-90px,20px,0) scale(.97); }
.reveal.reveal-right-deep { transform: translate3d(90px,20px,0) scale(.97); }
.reveal.in-view { transform: none; }

/* Card spotlight is injected as a child so it does not fight existing pseudo-elements. */
[data-spotlight] { isolation: isolate; }
.spotlight-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; background: radial-gradient(340px circle at var(--spot-x,50%) var(--spot-y,50%),rgba(226,195,93,.16),transparent 58%); transition: opacity .25s; }
[data-spotlight]:hover .spotlight-layer { opacity: 1; }
[data-spotlight] > :not(.spotlight-layer) { position: relative; z-index: 1; }
.card, .market-card, .process-item, .value, .contact-card, .visual-box, .report-window { transition: transform .45s var(--ease-premium),border-color .35s,box-shadow .45s var(--ease-premium); }
.card:hover, .process-item:hover, .value:hover, .contact-card:hover { box-shadow: 0 28px 75px rgba(0,0,0,.17); }
.section-light .process-item:hover, .section-light .value:hover, .section-light .contact-card:hover { transform: translateY(-7px); border-color: rgba(198,162,58,.5); }

/* Buttons: magnetic JS uses variables, sheen stays CSS-only. */
.btn { --mag-x: 0px; --mag-y: 0px; position: relative; overflow: hidden; transform: translate3d(var(--mag-x),var(--mag-y),0); }
.btn:hover { transform: translate3d(var(--mag-x),calc(var(--mag-y) - 2px),0); }
.btn::before { content: ""; position: absolute; inset: -2px auto -2px -42%; width: 36%; transform: skewX(-22deg); background: linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent); transition: left .7s var(--ease-premium); }
.btn:hover::before { left: 112%; }
.btn > * { position: relative; z-index: 1; }

/* Logo has a subtle living highlight */
.logo img { filter: drop-shadow(0 8px 22px rgba(0,0,0,.2)); transition: transform .45s var(--ease-premium),filter .45s; }
.logo:hover img { transform: translateY(-2px) scale(1.025); filter: drop-shadow(0 12px 28px rgba(198,162,58,.2)); }
.header .logo::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(226,195,93,.35); animation: logoPing 2.7s ease-out infinite; }
@keyframes logoPing { 70%,100% { box-shadow: 0 0 0 13px rgba(226,195,93,0); } }

/* Hero motion */
.hero-visual { animation: heroVisualIn 1.25s .55s var(--ease-premium) both; }
@keyframes heroVisualIn { from { opacity: 0; transform: translateX(70px) scale(.9); filter: blur(18px); } to { opacity: 1; transform: none; filter: none; } }
.orbit { animation: orbitSpin 26s linear infinite; }
.orbit::before { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; right: 12%; bottom: 24%; background: #fff; box-shadow: 0 0 20px rgba(255,255,255,.7); }
@keyframes orbitSpin { to { transform: rotate(347deg); } }
.dashboard { animation: dashboardFloat 6.5s ease-in-out infinite; }
@keyframes dashboardFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
.chart svg path:last-child { stroke-dasharray: 680; stroke-dashoffset: 680; animation: drawChart 2.2s 1.1s var(--ease-premium) forwards; }
@keyframes drawChart { to { stroke-dashoffset: 0; } }
.metric-card { animation: metricBreath 4.5s ease-in-out infinite; }
.metric-card:nth-of-type(3) { animation-delay: -2.1s; }
@keyframes metricBreath { 50% { border-color: rgba(226,195,93,.32); background: rgba(226,195,93,.07); transform: translateY(-3px); } }
.keyword-row { transition: transform .3s,background .3s; }
.keyword-row:hover { transform: translateX(5px); background: rgba(226,195,93,.09); }

/* Animated chart/report elements only begin once visible */
.bar-chart i { animation-play-state: paused; }
.report-window.in-view .bar-chart i, .scene-active .report-window .bar-chart i { animation-play-state: running; }
.report-window .bar-chart i:nth-child(2) { animation-delay: .07s; }
.report-window .bar-chart i:nth-child(3) { animation-delay: .14s; }
.report-window .bar-chart i:nth-child(4) { animation-delay: .21s; }
.report-window .bar-chart i:nth-child(5) { animation-delay: .28s; }
.report-window .bar-chart i:nth-child(6) { animation-delay: .35s; }
.report-window .bar-chart i:nth-child(7) { animation-delay: .42s; }

/* Local internal-link architecture */
.area-link-wrap { grid-column: 1 / -1; margin-top: 46px; padding-top: 38px; border-top: 1px solid rgba(5,8,13,.12); }
.area-link-wrap h3 { max-width: 760px; font-family: Georgia,serif; font-size: clamp(1.9rem,3.5vw,3.1rem); line-height: 1.06; font-weight: 500; margin: 14px 0 28px; }
.area-link-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.area-link-grid a { min-height: 170px; padding: 21px; border: 1px solid rgba(5,8,13,.12); border-radius: 20px; background: rgba(255,255,255,.62); display: flex; flex-direction: column; transition: transform .4s var(--ease-premium),box-shadow .4s,border-color .3s; overflow: hidden; position: relative; }
.area-link-grid a::before { content: ""; position: absolute; inset: auto -35% -65% 25%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(198,162,58,.26),transparent 67%); transition: transform .5s var(--ease-premium); }
.area-link-grid a:hover { transform: translateY(-8px); border-color: rgba(198,162,58,.48); box-shadow: 0 25px 60px rgba(14,18,25,.12); }
.area-link-grid a:hover::before { transform: scale(1.35) translate(-8%,-8%); }
.area-link-grid b,.area-link-grid span,.area-link-grid i { position: relative; z-index: 1; }
.area-link-grid b { font-size: 1.05rem; }
.area-link-grid span { margin-top: 9px; color: #606873; font-size: .78rem; }
.area-link-grid i { margin-top: auto; font-style: normal; font-size: 1.2rem; color: #806514; transition: transform .3s; }
.area-link-grid a:hover i { transform: translateX(6px); }
.linked-area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.linked-area-list a { padding: 11px 16px; border: 1px solid rgba(5,8,13,.14); border-radius: 999px; background: rgba(255,255,255,.68); color: #424a55; font-weight: 800; font-size: .85rem; transition: transform .25s,background .25s,border-color .25s; }
.linked-area-list a:hover { transform: translateY(-3px); background: #fff; border-color: rgba(198,162,58,.65); }

/* FAQ opening has more depth */
.faq-answer { opacity: .35; transform: translateY(-8px); transition: grid-template-rows .45s var(--ease-premium),opacity .35s,transform .45s var(--ease-premium); }
.faq-item.open .faq-answer { opacity: 1; transform: none; }
.faq-button:hover { color: #7a6017; }
.section-navy .faq-button:hover { color: var(--gold-2); }

/* Moving CTA geometry */
.cta-panel::after { animation: ctaOrbit 14s linear infinite; }
.cta-panel::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; left: -90px; bottom: -150px; border: 1px solid rgba(5,8,13,.18); box-shadow: 0 0 0 45px rgba(5,8,13,.03); animation: ctaOrbitReverse 17s linear infinite; }
@keyframes ctaOrbit { to { transform: rotate(360deg) scale(1.04); } }
@keyframes ctaOrbitReverse { to { transform: rotate(-360deg) scale(.94); } }

/* Footer entry */
.footer { position: relative; overflow: hidden; }
.footer::before { content: "MIO"; position: absolute; right: -1vw; bottom: -6vw; font: 950 clamp(8rem,24vw,22rem)/1 Inter,sans-serif; letter-spacing: -.1em; color: rgba(255,255,255,.018); pointer-events: none; }

@media (max-width: 1060px) {
  .area-link-grid { grid-template-columns: repeat(2,1fr); }
  .promo-actions > a { display: none; }
}
@media (max-width: 820px) {
  :root { --promo-height: 48px; }
  .promo-actions { padding-inline: 8px; gap: 5px; }
  .promo-code { padding: 5px 8px; }
  .promo-sequence span,.promo-sequence b { padding-inline: 14px; font-size: .66rem; }
  .promo-sequence span::after,.promo-sequence b::after { margin-left: 22px; }
  .cursor-glow { display: none; }
  .area-link-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .area-link-grid { grid-template-columns: 1fr; }
  .area-link-grid a { min-height: 135px; }
  .promo-track { animation-duration: 19s; }
  .header .logo::after { display: none; }
  [data-split].is-split .word-inner { transition-delay: calc(var(--word-index) * 25ms); }
}
@media (prefers-reduced-motion: reduce) {
  body,.page-loader,.loader-mark,.loader-mark::after,.page-loader>span,.promo-track,.orb,.grid-field,.eyebrow::after,.header .logo::after,.hero-visual,.orbit,.dashboard,.chart svg path:last-child,.metric-card,.cta-panel::before,.cta-panel::after { animation: none !important; }
  .page-loader { display: none; }
  body.page-leaving { opacity: 1; transform: none; filter: none; }
  [data-split].is-split .word-inner { opacity: 1; transform: none; filter: none; transition: none; }
  .cursor-glow { display: none; }
  .promo-viewport { mask-image: none; }
}


/* =========================================================
   MIO final brand, banner and motion refinements
   ========================================================= */
.logo img { width: 210px; max-height: 58px; filter: drop-shadow(0 8px 22px rgba(0,0,0,.22)); transition: transform .35s var(--ease-premium), filter .35s ease; }
.logo:hover img { transform: translateY(-2px) scale(1.018); filter: drop-shadow(0 12px 30px rgba(226,195,93,.16)); }
.header .logo { position: relative; }
.header .logo::after { content:""; position:absolute; inset:8% -3%; background:linear-gradient(105deg,transparent 35%,rgba(255,240,162,.18) 50%,transparent 65%); transform:translateX(-120%) skewX(-18deg); pointer-events:none; }
.header .logo:hover::after { animation: logoSweep .85s ease both; }
@keyframes logoSweep { to { transform:translateX(120%) skewX(-18deg); } }

.promo-banner { padding-right: 42px; }
.promo-viewport { width: 100%; }
.promo-close {
  position:absolute; right:8px; top:50%; transform:translateY(-50%);
  width:28px; height:28px; border:1px solid rgba(7,16,28,.24); border-radius:50%;
  background:rgba(255,255,255,.2); color:#07101c; display:grid; place-items:center;
  font-size:1.1rem; line-height:1; z-index:3; transition:background .2s, transform .2s;
}
.promo-close:hover { background:rgba(255,255,255,.52); transform:translateY(-50%) rotate(8deg) scale(1.06); }
.promo-sequence span, .promo-sequence b { padding-inline:26px; }
.promo-track { animation-duration: 27s; }
.promo-sequence b { text-shadow: 0 1px 0 rgba(255,255,255,.25); }

.nav-popover { overflow:hidden; }
.nav-popover::before { content:""; position:absolute; inset:0; background:linear-gradient(115deg,transparent 20%,rgba(226,195,93,.08),transparent 70%); transform:translateX(-120%); transition:transform .6s ease; pointer-events:none; }
.nav-item:hover .nav-popover::before, .nav-item:focus-within .nav-popover::before { transform:translateX(120%); }

.service-card, .contact-card, .cta-panel {
  transform: translateY(var(--scroll-float, 0px));
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.service-card:hover, .contact-card:hover { transform: translateY(calc(var(--scroll-float, 0px) - 7px)); }

.relationship-section { overflow:hidden; }
.relationship-grid .service-card { min-height: 260px; }
.service-route-links { margin-top:34px; }
.service-route-links a { position:relative; overflow:hidden; }
.service-route-links a::after { content:"→"; margin-left:10px; transition:transform .25s ease; }
.service-route-links a:hover::after { transform:translateX(4px); }

.form { position:relative; overflow:hidden; }
.form::before { content:""; position:absolute; width:280px; height:280px; border-radius:50%; right:-170px; top:-160px; border:1px solid rgba(198,162,58,.15); box-shadow:0 0 0 45px rgba(198,162,58,.025),0 0 0 90px rgba(198,162,58,.018); pointer-events:none; }
.field input, .field textarea, .field select { transition:border-color .2s,box-shadow .2s,transform .2s,background .2s; }
.field input:focus, .field textarea:focus, .field select:focus { transform:translateY(-1px); background:#fff; }
.form .btn { position:relative; isolation:isolate; overflow:hidden; }
.form .btn::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.15),transparent 75%); transform:translateX(-130%); }
.form .btn:hover::before { animation:buttonSweep .7s ease both; }
@keyframes buttonSweep { to { transform:translateX(130%); } }

.check-list { list-style:none; margin:28px 0 0; padding:0; display:grid; gap:12px; }
.check-list li { position:relative; padding:13px 16px 13px 42px; border:1px solid #ded9cc; border-radius:14px; background:rgba(255,255,255,.65); font-weight:750; }
.check-list li::before { content:"✓"; position:absolute; left:15px; top:50%; transform:translateY(-50%); width:18px; height:18px; border-radius:50%; display:grid; place-items:center; background:rgba(198,162,58,.18); color:#75570f; font-size:.72rem; }

.text-link { display:inline-flex; margin-top:18px; color:#765a15; font-weight:900; text-decoration:underline; text-underline-offset:4px; }

@media (max-width: 760px) {
  .logo img { width: 174px; }
  .promo-banner { padding-right:36px; }
  .promo-sequence span, .promo-sequence b { padding-inline:18px; font-size:.65rem; }
  .relationship-grid .service-card { min-height:0; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-track { animation:none !important; transform:none !important; }
  .header .logo::after, .form .btn::before { display:none; }
  .service-card, .contact-card, .cta-panel { transform:none !important; }
}
