:root {
  --bg: #090b10;
  --surface: rgba(8, 12, 20, 0.72);
  --text: #edf2ff;
  --muted: #a8b2c8;
  --accent: #f4a261;
  --secondary: #46d9ff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(70, 217, 255, 0.14), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(244, 162, 97, 0.12), transparent 18%),
    linear-gradient(180deg, #06080c 0%, #0a0f17 52%, #111827 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
}

section[id] {
  scroll-margin-top: 118px;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  position: sticky;
  top: 14px;
  z-index: 10;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.brand div {
  min-width: 0;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong,
.hero h1,
.section-heading h2,
.contact-card h2,
.spotlight h2,
.panel-card strong,
.service-card h3,
.feature-grid h3,
.process-grid h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand span:last-child,
.hero-text,
.section-heading p,
.service-card p,
.feature-grid p,
.process-grid p,
.panel-card p,
.contact-card p,
.form-note,
.contact-note {
  color: var(--muted);
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(70, 217, 255, 0.16);
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button:focus-visible,
.nav a:focus-visible,
.nav-toggle:focus-visible,
.ai-agent-toggle:focus-visible,
.ai-agent-close:focus-visible,
.ai-agent-shortcuts button:focus-visible,
.ai-agent-controls button:focus-visible,
.ai-agent-form button:focus-visible,
.enquiry-form input:focus-visible,
.enquiry-form select:focus-visible,
.enquiry-form textarea:focus-visible,
.ai-agent-form input:focus-visible {
  outline: 3px solid rgba(70, 217, 255, 0.62);
  outline-offset: 3px;
}

main {
  display: grid;
  gap: 28px;
  margin-top: 26px;
}

.hero,
.featured-work,
.services,
.feature-band,
.process,
.enquiry,
.contact,
.trust-strip {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 28px;
  padding: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.hero-text,
.section-heading p,
.contact-card p,
.service-card p,
.feature-grid p,
.process-grid p,
.panel-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions,
.quick-contact,
.contact-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-value {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 8px 0 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #08120f;
  background: linear-gradient(135deg, #25d366 0%, #d7ffd9 100%);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.18);
}

.urgency-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.urgency-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffeec9;
  background: rgba(244, 162, 97, 0.12);
  border: 1px solid rgba(244, 162, 97, 0.28);
  font-size: 0.92rem;
  font-weight: 800;
}

.urgency-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: #ffcb3d;
  box-shadow: 0 0 0 4px rgba(255, 203, 61, 0.14);
}

.loss-aversion {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  max-width: 620px;
}

.loss-aversion p {
  position: relative;
  margin: 0;
  padding: 12px 16px 12px 42px;
  border-radius: 18px;
  color: #ffe8e4;
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 122, 102, 0.22);
  font-weight: 800;
  line-height: 1.35;
}

.loss-aversion p::before {
  content: "!";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: #ffcb3d;
  font-size: 0.8rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.quick-contact {
  margin-top: 14px;
}

.cta-guide {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #ffdf8a;
  font-weight: 900;
}

.cue-arrow {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 28px;
  border-radius: 999px;
  color: #08120f;
  background: #ffcb3d;
  box-shadow: 0 12px 24px rgba(255, 203, 61, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 900;
  cursor: pointer;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
}

.hero-actions .button::after,
.form-actions .button::after,
.contact-actions .button::after {
  content: "->";
  margin-left: 10px;
  font-weight: 900;
}

.button-primary {
  color: #071018;
  background: linear-gradient(135deg, #ffcb3d 0%, #fff1a8 100%);
  box-shadow: 0 18px 38px rgba(255, 203, 61, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button-whatsapp {
  color: #08120f;
  background: linear-gradient(135deg, #16c65b 0%, #a8ffbf 100%);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.26);
}

.button-call {
  color: white;
  background: linear-gradient(135deg, #1747c7 0%, #24c8ff 100%);
  box-shadow: 0 18px 38px rgba(70, 217, 255, 0.24);
}

.lead-magnet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  max-width: 720px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 203, 61, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 203, 61, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.lead-magnet-copy {
  min-width: 0;
}

.lead-magnet-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ffdf8a;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-magnet-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  line-height: 1.12;
}

.lead-magnet-copy p {
  margin: 8px 0 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.lead-magnet-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #071018;
  background: linear-gradient(135deg, #ffcb3d 0%, #fff1a8 100%);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(255, 203, 61, 0.22);
}

.lead-magnet-link::after {
  content: "->";
  margin-left: 8px;
}

.human-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  max-width: 620px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.human-trust p {
  margin: 0;
  color: #dbe4fb;
  font-weight: 700;
  line-height: 1.45;
}

.face-stack {
  display: flex;
  flex: 0 0 auto;
}

.mini-face {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(10, 15, 23, 0.92);
  border-radius: 999px;
  background: #d58a62;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.face-stack .mini-face + .mini-face {
  margin-left: -12px;
}

.mini-face::before,
.mini-face::after {
  content: "";
  position: absolute;
}

.mini-face::before {
  inset: 0 0 auto;
  height: 17px;
  border-radius: 999px 999px 12px 12px;
  background: #1f2937;
}

.mini-face::after {
  left: 12px;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #111827;
  box-shadow: 14px 0 0 #111827;
}

.mini-face span {
  position: absolute;
  left: 15px;
  bottom: 9px;
  width: 14px;
  height: 6px;
  border-bottom: 2px solid rgba(17, 24, 39, 0.8);
  border-radius: 0 0 999px 999px;
}

.face-one {
  background: #d58a62;
}

.face-two {
  background: #bd7657;
}

.face-three {
  background: #e1a478;
}

.face-guide {
  width: 36px;
  height: 36px;
  border-width: 2px;
  transform: rotate(-3deg);
}

.face-guide::after {
  left: 13px;
  box-shadow: 12px 0 0 #111827;
}

.hero-points,
.contact-meta {
  list-style: none;
  padding: 0;
}

.hero-points {
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #2578ff);
}

.hero-panel,
.stats-grid,
.service-grid,
.feature-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panel-card,
.service-card,
.feature-grid article,
.process-grid article,
.enquiry-form,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(21, 25, 36, 0.96), rgba(16, 19, 29, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-card-featured {
  border-color: rgba(70, 217, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(70, 217, 255, 0.08);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.service-icon {
  position: relative;
  width: 124px;
  height: 124px;
  flex: 0 0 124px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(39, 58, 71, 0.92), rgba(25, 34, 45, 0.96));
  border: 1px solid rgba(140, 167, 193, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-glyph {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #f4f7ff;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #b0c2e4;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin: 0 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: #aab6cb;
  font-size: 1rem;
  line-height: 1.68;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #edf2ff;
  font-size: 0.98rem;
  font-weight: 700;
}

.service-note {
  margin-top: 28px;
}

.service-note p {
  color: #b4bfd4;
}

.visual-chip,
.visual-line,
.visual-ring,
.visual-dot,
.visual-stack,
.visual-orbit,
.visual-bar,
.visual-bubble,
.visual-shape,
.visual-play,
.visual-wave,
.visual-mic,
.visual-spark,
.visual-reel,
.visual-frame,
.visual-star,
.visual-ticket,
.visual-ticket-line,
.visual-ledger,
.visual-ledger-line,
.visual-pin,
.visual-route,
.visual-funnel,
.visual-grid-cell,
.visual-switch,
.visual-node,
.visual-connector {
  position: absolute;
}

.visual-chip,
.visual-dot,
.visual-bubble,
.visual-shape,
.visual-spark,
.visual-node {
  border-radius: 999px;
}

.chip-a {
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  background: #46d9ff;
  opacity: 0.82;
}

.chip-b {
  top: 22px;
  right: 22px;
  width: 20px;
  height: 20px;
  background: #e7a15d;
}

.visual-line {
  right: 10px;
  bottom: 12px;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #2dbef0;
  transform: rotate(-43deg);
}

.visual-ring {
  top: 18px;
  left: 20px;
  width: 68px;
  height: 68px;
  border: 3px solid rgba(70, 217, 255, 0.7);
  border-radius: 999px;
}

.visual-dot {
  top: 20px;
  right: 22px;
  width: 22px;
  height: 22px;
  background: #e7a15d;
}

.visual-stack {
  left: 20px;
  width: 78px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(70, 217, 255, 0.35);
  background: rgba(70, 217, 255, 0.14);
}

.stack-one {
  top: 24px;
}

.stack-two {
  top: 50px;
  left: 34px;
  width: 62px;
}

.visual-orbit {
  border: 1px solid rgba(70, 217, 255, 0.42);
  border-radius: 999px;
}

.orbit-one {
  top: 20px;
  left: 18px;
  width: 72px;
  height: 72px;
}

.orbit-two {
  top: 34px;
  left: 30px;
  width: 62px;
  height: 62px;
}

.visual-bar {
  bottom: 24px;
  width: 16px;
  border-radius: 999px;
}

.bar-one {
  left: 24px;
  height: 36px;
  background: linear-gradient(180deg, #46d9ff, #2f8fce);
}

.bar-two {
  left: 48px;
  height: 52px;
  background: linear-gradient(180deg, #54c1ff, #348db5);
}

.bar-three {
  left: 72px;
  height: 70px;
  background: linear-gradient(180deg, #e7a15d, #9f7351);
}

.visual-bubble {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bubble-one {
  top: 20px;
  left: 20px;
  width: 42px;
  height: 32px;
  background: rgba(84, 195, 110, 0.3);
}

.bubble-two {
  top: 42px;
  left: 70px;
  width: 34px;
  height: 28px;
  background: rgba(82, 190, 220, 0.26);
}

.shape-diamond {
  top: 20px;
  right: 22px;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  background: #e7a15d;
}

.shape-circle {
  top: 22px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: #46d9ff;
}

.visual-play {
  top: 28px;
  left: 30px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #46d9ff;
}

.visual-wave {
  left: 26px;
  bottom: 18px;
  width: 58px;
  height: 28px;
  border-bottom: 3px solid rgba(231, 161, 93, 0.86);
  border-radius: 0 0 999px 999px;
}

.visual-mic {
  top: 26px;
  left: 34px;
  width: 24px;
  height: 46px;
  border-radius: 14px;
  border: 3px solid #46d9ff;
}

.visual-spark {
  top: 26px;
  right: 18px;
  width: 18px;
  height: 18px;
  background: #e7a15d;
}

.visual-reel {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid #46d9ff;
}

.reel-one {
  top: 22px;
  left: 20px;
}

.reel-two {
  top: 22px;
  left: 50px;
}

.visual-frame {
  top: 22px;
  left: 20px;
  width: 78px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid rgba(70, 217, 255, 0.7);
}

.visual-star {
  top: 26px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: #e7a15d;
  transform: rotate(45deg);
}

.visual-ticket {
  top: 22px;
  left: 18px;
  width: 84px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid rgba(231, 161, 93, 0.72);
}

.visual-ticket-line {
  top: 42px;
  left: 30px;
  width: 54px;
  height: 3px;
  background: #46d9ff;
}

.visual-ledger {
  top: 20px;
  left: 24px;
  width: 70px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid rgba(70, 217, 255, 0.58);
}

.visual-ledger-line {
  left: 36px;
  width: 42px;
  height: 3px;
  background: #e7a15d;
}

.line-one {
  top: 38px;
}

.line-two {
  top: 54px;
}

.visual-pin {
  top: 20px;
  left: 46px;
  width: 26px;
  height: 36px;
  border-radius: 16px 16px 16px 0;
  transform: rotate(-45deg);
  background: #46d9ff;
}

.visual-route {
  right: 18px;
  bottom: 24px;
  width: 34px;
  height: 18px;
  border: 2px dashed rgba(231, 161, 93, 0.76);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.visual-funnel.top {
  top: 24px;
  left: 20px;
  width: 82px;
  height: 24px;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 28% 100%);
  background: rgba(70, 217, 255, 0.76);
}

.visual-funnel.bottom {
  top: 48px;
  left: 46px;
  width: 28px;
  height: 28px;
  clip-path: polygon(0 0, 100% 0, 68% 100%, 32% 100%);
  background: rgba(231, 161, 93, 0.8);
}

.visual-grid-cell {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(70, 217, 255, 0.22);
  border: 1px solid rgba(70, 217, 255, 0.36);
}

.cell-one {
  top: 22px;
  left: 22px;
}

.cell-two {
  top: 22px;
  left: 48px;
}

.cell-three {
  top: 48px;
  left: 35px;
}

.visual-switch {
  top: 22px;
  width: 20px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-switch::after {
  content: "";
  position: absolute;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #46d9ff;
}

.visual-switch.left {
  left: 28px;
}

.visual-switch.left::after {
  top: 5px;
}

.visual-switch.right {
  left: 58px;
}

.visual-switch.right::after {
  bottom: 5px;
  background: #e7a15d;
}

.visual-node {
  width: 14px;
  height: 14px;
  background: #46d9ff;
}

.node-one {
  top: 22px;
  left: 20px;
}

.node-two {
  top: 22px;
  right: 20px;
}

.node-three {
  bottom: 22px;
  left: 48px;
  background: #e7a15d;
}

.visual-connector {
  top: 28px;
  left: 30px;
  width: 54px;
  height: 34px;
  border-left: 2px solid rgba(70, 217, 255, 0.6);
  border-right: 2px solid rgba(70, 217, 255, 0.6);
  border-bottom: 2px solid rgba(231, 161, 93, 0.5);
}

.spotlight {
  padding: 28px;
  background: linear-gradient(135deg, rgba(25, 88, 158, 0.92), rgba(15, 217, 255, 0.52)), #0f2037;
}

.hero-banner {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 8px 0 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 48px rgba(6, 10, 16, 0.32);
}

.spotlight p,
.spotlight .panel-label {
  color: rgba(255, 255, 255, 0.84);
}

.panel-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.trust-strip {
  padding: 18px 28px;
  text-align: center;
}

.trust-strip p {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}

.services,
.featured-work,
.feature-band,
.process,
.enquiry,
.contact {
  padding: 38px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.work-card {
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.work-card h3,
.work-card p,
.work-points {
  padding-left: 26px;
  padding-right: 26px;
}

.work-card h3 {
  margin: 22px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1.05;
}

.work-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.work-media {
  margin: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.work-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.work-points {
  margin: 18px 0 0;
  padding-bottom: 28px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.work-points li {
  position: relative;
  padding-left: 22px;
  color: #dbe4fb;
  line-height: 1.55;
}

.work-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffcb3d;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.process-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.18), rgba(70, 217, 255, 0.18));
  color: #ffd6ad;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 10px;
}

.enquiry-form span {
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.ai-agent-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 16, 0.84);
  color: var(--text);
  font: inherit;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder,
.ai-agent-form input::placeholder {
  color: #8390aa;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus,
.ai-agent-form input:focus {
  outline: 2px solid rgba(70, 217, 255, 0.28);
  border-color: rgba(70, 217, 255, 0.48);
}

.full-width {
  grid-column: 1 / -1;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.contact-actions {
  min-width: 250px;
  align-content: center;
}

.contact-meta {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-meta strong {
  color: var(--text);
}

.ai-agent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(420px, calc(100vw - 24px));
}

.ai-agent-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 15, 23, 0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.ai-agent-toggle-avatar,
.ai-agent-avatar,
.ai-agent-portrait img {
  display: block;
  overflow: hidden;
  border-radius: 999px;
}

.ai-agent-toggle-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 2px solid rgba(105, 229, 255, 0.28);
}

.ai-agent-toggle-avatar img,
.ai-agent-avatar,
.ai-agent-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-agent-toggle-copy {
  display: grid;
  text-align: left;
  gap: 2px;
}

.ai-agent-toggle-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.ai-agent-toggle-copy span,
.ai-agent-profile span,
.ai-agent-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.ai-agent-panel {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(105, 229, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(10, 15, 23, 0.98), rgba(11, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.ai-agent-head,
.ai-agent-profile,
.ai-agent-controls,
.ai-agent-shortcuts,
.ai-agent-form {
  display: flex;
}

.ai-agent-head {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
}

.ai-agent-profile {
  align-items: center;
  gap: 12px;
}

.ai-agent-avatar {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(105, 229, 255, 0.24);
}

.ai-agent-profile strong,
.ai-agent-status h3 {
  font-family: "Space Grotesk", sans-serif;
}

.ai-agent-close {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
  cursor: pointer;
}

.ai-agent-stage {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 16px;
  padding: 0 18px 18px;
}

.ai-agent-portrait {
  position: relative;
  width: 122px;
  height: 122px;
}

.ai-agent-ring {
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(105, 229, 255, 0.22);
  box-shadow: 0 0 0 0 rgba(105, 229, 255, 0.2);
}

.ai-agent-ring.is-listening {
  animation: ai-agent-pulse 1.2s infinite;
}

.ai-agent-ring.is-speaking {
  animation: ai-agent-pulse 0.9s infinite;
  border-color: rgba(106, 227, 142, 0.44);
}

.ai-agent-status h3 {
  margin: 6px 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.ai-agent-status p:last-child {
  margin: 0;
  color: #d5def1;
  line-height: 1.65;
}

.ai-agent-messages {
  display: grid;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding: 0 18px 14px;
}

.ai-agent-bubble {
  max-width: 90%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.58;
}

.ai-agent-bubble-bot {
  background: rgba(255, 255, 255, 0.06);
}

.ai-agent-bubble-user {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(70, 217, 255, 0.16));
}

.ai-agent-shortcuts,
.ai-agent-controls {
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 18px 14px;
}

.ai-agent-shortcuts button,
.ai-agent-controls button,
.ai-agent-form button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.ai-agent-shortcuts button {
  padding: 10px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.ai-agent-controls button {
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
}

.ai-agent-voice {
  color: #08120f;
  background: linear-gradient(135deg, #25d366 0%, #46d9ff 100%);
}

.ai-agent-stop {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.ai-agent-form {
  gap: 10px;
  padding: 0 18px 18px;
}

.ai-agent-form button {
  padding: 0 18px;
  font-weight: 800;
  color: #08120f;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd29c 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  .service-grid,
  .work-grid,
  .feature-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  section[id] {
    scroll-margin-top: 24px;
  }

  .topbar {
    border-radius: 28px;
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand span:last-child {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(8, 12, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .topbar.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 12px;
  }

  .topbar {
    position: sticky;
    top: 8px;
    padding: 14px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 16px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand span:last-child {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .hero,
  .featured-work,
  .services,
  .feature-band,
  .process,
  .enquiry,
  .contact {
    padding: 24px;
  }

  .stats-grid,
  .work-grid,
  .service-grid,
  .feature-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-value {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-guide {
    display: flex;
    justify-content: center;
  }

  .human-trust {
    align-items: flex-start;
  }

  .lead-magnet {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-magnet-link {
    width: 100%;
  }

  .urgency-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .urgency-strip span {
    justify-content: center;
    text-align: center;
  }

  .hero h1,
  .section-heading h2,
  .contact-card h2 {
    line-height: 1.04;
    letter-spacing: 0;
  }

  .work-media {
    margin: 14px;
    border-radius: 20px;
  }

  .work-card h3,
  .work-card p,
  .work-points {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .service-card-top {
    margin-bottom: 26px;
  }

  .service-icon {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
    border-radius: 26px;
  }

  .service-card h3 {
    font-size: 1.9rem;
  }

  .ai-agent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .ai-agent-panel {
    max-height: calc(100vh - 126px);
    overflow-y: auto;
  }

  .ai-agent-stage {
    grid-template-columns: 1fr;
  }

  .ai-agent-portrait {
    width: 104px;
    height: 104px;
  }

}

@media (max-width: 460px) {
  .site-shell {
    width: min(100% - 14px, 1180px);
  }

  main {
    gap: 18px;
  }

  .hero,
  .featured-work,
  .services,
  .feature-band,
  .process,
  .enquiry,
  .contact,
  .trust-strip {
    border-radius: 22px;
  }

  .hero,
  .featured-work,
  .services,
  .feature-band,
  .process,
  .enquiry,
  .contact {
    padding: 18px;
  }

  .topbar {
    padding: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 1.75rem;
  }

  .work-card h3,
  .service-card h3 {
    font-size: 1.65rem;
  }

  .ai-agent-toggle {
    padding: 10px;
  }

  .ai-agent-toggle-avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .ai-agent-toggle-copy span {
    display: none;
  }

  .human-trust {
    flex-direction: column;
    text-align: center;
  }

  .face-stack {
    align-self: center;
  }

  .ai-agent-form {
    flex-direction: column;
  }

  .ai-agent-form button,
  .ai-agent-controls button,
  .ai-agent-shortcuts button {
    min-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Light theme */
:root {
  --bg: #f7fafc;
  --surface: rgba(255, 255, 255, 0.92);
  --text: #101827;
  --muted: #526173;
  --accent: #f59e0b;
  --secondary: #0f75bc;
  --shadow: 0 22px 58px rgba(15, 23, 42, 0.1);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.12), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(255, 203, 61, 0.16), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 52%, #eef5ff 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
}

.topbar,
.hero,
.featured-work,
.services,
.feature-band,
.process,
.enquiry,
.contact,
.trust-strip {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(15, 23, 42, 0.08);
}

.topbar {
  background: rgba(255, 255, 255, 0.9);
}

.brand,
.nav a,
.nav-toggle,
.button-secondary,
.ai-agent-toggle,
.ai-agent-close,
.ai-agent-shortcuts button,
.ai-agent-stop {
  color: var(--text);
}

.brand-logo {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 24px rgba(15, 117, 188, 0.14);
}

.nav-toggle,
.button-secondary,
.ai-agent-shortcuts button,
.ai-agent-stop {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.eyebrow,
.cta-guide,
.lead-magnet-copy span {
  color: #0f75bc;
}

.urgency-strip span {
  color: #7a3c00;
  background: rgba(255, 203, 61, 0.16);
  border-color: rgba(245, 158, 11, 0.32);
}

.loss-aversion p {
  color: #8f1d1d;
  background: rgba(255, 82, 82, 0.08);
  border-color: rgba(220, 38, 38, 0.18);
}

.lead-magnet,
.human-trust,
.work-card,
.panel-card,
.service-card,
.feature-grid article,
.process-grid article,
.enquiry-form,
.contact-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.lead-magnet {
  background:
    radial-gradient(circle at top right, rgba(255, 203, 61, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
  border-color: rgba(245, 158, 11, 0.28);
}

.lead-magnet-copy p,
.human-trust p,
.work-points li,
.ai-agent-status p:last-child {
  color: #42526a;
}

.work-media {
  background: rgba(15, 23, 42, 0.04);
}

.process-grid article span {
  color: #9a4a00;
  background: linear-gradient(135deg, rgba(255, 203, 61, 0.22), rgba(15, 117, 188, 0.12));
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.ai-agent-form input {
  color: var(--text);
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder,
.ai-agent-form input::placeholder {
  color: #8a97a8;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus,
.ai-agent-form input:focus {
  border-color: rgba(15, 117, 188, 0.52);
  outline-color: rgba(15, 117, 188, 0.2);
}

.button-secondary {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.button-call {
  color: #ffffff;
}

.spotlight {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(15, 117, 188, 0.92), rgba(37, 211, 102, 0.54)), #0f75bc;
}

.ai-agent-toggle {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.ai-agent-panel {
  background:
    radial-gradient(circle at top right, rgba(15, 117, 188, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.99));
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.ai-agent-bubble-bot {
  background: rgba(15, 23, 42, 0.06);
}

.ai-agent-bubble-user {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(15, 117, 188, 0.14));
}

@media (max-width: 900px) {
  .nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.1);
  }

  .nav a {
    background: rgba(15, 23, 42, 0.04);
  }
}

@keyframes ai-agent-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(105, 229, 255, 0.24);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(105, 229, 255, 0);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(105, 229, 255, 0);
    transform: scale(1);
  }
}
