/* ==========================================================================
   Shaan Nexus Studio — Design System 2026
   Static build. No WordPress, no jQuery, no page builder.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand */
  --brand:        #0D7A57;
  --brand-2:      #17B87C;
  --brand-3:      #6FE3B4;
  --brand-ink:    #ffffff;

  /* light theme */
  --bg:           #F2FAF6;
  --bg-2:         #E7F5EE;
  --surface:      #FFFFFF;
  --surface-2:    #F7FCF9;
  --ink:          #07160F;
  --ink-2:        #4A5D55;
  --ink-3:        #7A8C84;
  --line:         rgba(7, 22, 15, .10);
  --line-2:       rgba(7, 22, 15, .06);
  --mint:         #DCF3E8;
  --shadow-sm:    0 1px 2px rgba(7,22,15,.05), 0 4px 14px rgba(7,22,15,.05);
  --shadow-md:    0 2px 6px rgba(7,22,15,.05), 0 18px 40px -18px rgba(7,22,15,.22);
  --shadow-lg:    0 40px 90px -40px rgba(7,40,26,.45);
  --glass:        rgba(255,255,255,.72);
  --glass-brd:    rgba(255,255,255,.75);
  --glow:         radial-gradient(60% 60% at 50% 0%, rgba(23,184,124,.20), transparent 70%);
  --noise-op:     .035;

  /* type */
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-display: clamp(2.7rem, 6.4vw, 5.4rem);
  --fs-h1:      clamp(2.3rem, 4.6vw, 3.75rem);
  --fs-h2:      clamp(1.95rem, 3.6vw, 3rem);
  --fs-h3:      clamp(1.35rem, 2vw, 1.75rem);
  --fs-h4:      clamp(1.1rem, 1.4vw, 1.28rem);
  --fs-body:    clamp(1rem, 1.05vw, 1.075rem);
  --fs-sm:      .935rem;
  --fs-xs:      .8rem;

  /* space + shape */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;
  --pad:  clamp(1.15rem, 3.4vw, 2.1rem);
  --sect: clamp(2rem, 4vw, 3.5rem);
  --maxw: 1240px;

  /* motion */
  --ease:    cubic-bezier(.22, .61, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
  --t-fast: .18s var(--ease);
  --t:      .32s var(--ease);
  --t-slow: .6s var(--ease);

  color-scheme: light;
}

[data-theme="dark"] {
  --brand:        #21C489;
  --brand-2:      #46DDA4;
  --brand-3:      #A8F4D3;
  --brand-ink:    #04120C;

  --bg:           #050C09;
  --bg-2:         #081410;
  --surface:      #0B1913;
  --surface-2:    #0F211A;
  --ink:          #E9F6EF;
  --ink-2:        #9CB3A8;
  --ink-3:        #74897E;
  --line:         rgba(233,246,239,.13);
  --line-2:       rgba(233,246,239,.07);
  --mint:         #0F2A20;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.4), 0 6px 18px rgba(0,0,0,.35);
  --shadow-md:    0 2px 8px rgba(0,0,0,.45), 0 24px 50px -20px rgba(0,0,0,.7);
  --shadow-lg:    0 50px 110px -45px rgba(0,0,0,.9);
  --glass:        rgba(11,25,19,.66);
  --glass-brd:    rgba(233,246,239,.10);
  --glow:         radial-gradient(60% 60% at 50% 0%, rgba(33,196,137,.22), transparent 70%);
  --noise-op:     .05;

  color-scheme: dark;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4, h5 { line-height: 1.08; font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--brand); color: var(--brand-ink); }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: color-mix(in oklab, var(--brand) 45%, transparent); border-radius: 99px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ---------- 3. Layout ---------- */
.container { width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto; }
.container-wide { width: min(100% - 2rem, 1480px); margin-inline: auto; }
.section { padding-block: var(--sect); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }

/* ---------- 4. Type ---------- */
.display { font-size: var(--fs-display); font-weight: 800; letter-spacing: -.04em; line-height: .98; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }
.h4 { font-size: var(--fs-h4); letter-spacing: -.02em; }
.lead { font-size: clamp(1.02rem, 1.35vw, 1.2rem); color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--ink-2); }
.small { font-size: var(--fs-sm); }
.gradient-text {
  background: linear-gradient(96deg, var(--brand) 0%, var(--brand-2) 45%, var(--brand-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); padding: .45rem .95rem .45rem .7rem;
  border: 1px solid color-mix(in oklab, var(--brand) 28%, transparent);
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 18%, transparent);
  animation: pulse 2.4s var(--ease-io) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.75); } }

.section-head { display: grid; gap: 1.15rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { justify-items: center; }
.section-head.center .lead { text-align: center; }
.section-head--split { grid-template-columns: 1.15fr .85fr; align-items: end; gap: 2rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--brand); --btn-fg: var(--brand-ink);
  position: relative; display: inline-flex; align-items: center; gap: .7rem;
  padding: .95rem 1.05rem .95rem 1.5rem;
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: -.01em;
  color: var(--btn-fg); background: var(--btn-bg);
  border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  box-shadow: 0 10px 26px -12px color-mix(in oklab, var(--brand) 75%, transparent);
  overflow: hidden; isolation: isolate; white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(100deg, var(--brand-2), var(--brand));
  transition: opacity var(--t);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px color-mix(in oklab, var(--brand) 85%, transparent); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0); }
.btn__ico {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand-ink); color: var(--brand);
  transition: transform var(--t);
}
.btn:hover .btn__ico { transform: rotate(45deg); }
.btn__ico svg { width: 15px; height: 15px; }

.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
  box-shadow: none; padding-inline: 1.5rem 1.05rem;
}
.btn--ghost::after { background: color-mix(in oklab, var(--brand) 10%, transparent); }
.btn--ghost:hover { color: var(--ink); border-color: color-mix(in oklab, var(--brand) 45%, transparent); box-shadow: var(--shadow-sm); }
.btn--ghost .btn__ico { background: color-mix(in oklab, var(--brand) 14%, transparent); color: var(--brand); }
.btn--solid-ink { background: var(--ink); color: var(--bg); box-shadow: none; }
.btn--solid-ink .btn__ico { background: var(--bg); color: var(--ink); }
.btn--solid-ink::after { background: var(--brand); }
.btn--solid-ink:hover { color: var(--brand-ink); }
.btn--sm { padding: .68rem .75rem .68rem 1.15rem; font-size: var(--fs-xs); }
.btn--sm .btn__ico { width: 27px; height: 27px; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: var(--fs-sm);
  color: var(--brand); transition: gap var(--t-fast);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
.link-arrow:hover { gap: .8rem; }
.link-arrow:hover svg { transform: translateX(2px) rotate(45deg); }

/* ---------- 6. Decorative layers ---------- */
.noise::before {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: var(--noise-op);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  pointer-events: none; z-index: 0;
}
.blob--1 { width: 44vw; height: 44vw; max-width: 620px; max-height: 620px; background: color-mix(in oklab, var(--brand-2) 45%, transparent); top: -14%; right: -10%; }
.blob--2 { width: 36vw; height: 36vw; max-width: 520px; max-height: 520px; background: color-mix(in oklab, var(--brand) 32%, transparent); bottom: -12%; left: -12%; }
[data-theme="dark"] .blob { opacity: .3; }

.grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 30%, #000 20%, transparent 78%);
}

/* scroll progress */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 1000;
  transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--brand), var(--brand-3));
}

/* ---------- 7. Header ---------- */
.topbar {
  position: relative; z-index: 60;
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .68rem; }
.topbar__badge { display: inline-flex; align-items: center; gap: .5rem; }
.topbar__badge svg { display: none; }
.topbar__badge b { color: var(--ink); font-weight: 700; }
.topbar__badge .years { color: var(--brand); font-weight: 800; letter-spacing: .01em; }
.topbar__right { display: flex; align-items: center; gap: 1.1rem; }
.topbar a:hover { color: var(--brand); }
.socials { display: flex; align-items: center; gap: .15rem; }
.socials a {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  color: var(--ink-2); transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.socials a:hover { color: var(--brand); background: color-mix(in oklab, var(--brand) 12%, transparent); transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; }
.sep { width: 1px; height: 18px; background: var(--line); }

.site-header { position: sticky; top: 0; z-index: 100; padding-top: .85rem; transition: padding var(--t); }
.site-header.is-stuck { padding-top: .5rem; }
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.2rem;
  padding: .55rem;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.is-stuck .nav { box-shadow: var(--shadow-lg); }
.brand { display: flex; align-items: center; gap: .6rem; justify-self: start; margin-left: .8rem; min-width: max-content; }
.brand img { height: 40px; width: auto; }
.logo-light { display: none; }
[data-theme="dark"] .logo-light { display: block; }
[data-theme="dark"] .logo-dark { display: none; }

.nav__menu { display: flex; align-items: center; gap: .2rem; justify-self: center; }
.nav__link {
  position: relative; padding: .6rem .9rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: var(--fs-sm); color: var(--ink);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: .3rem; translate: -50% 0;
  width: 0; height: 2px; border-radius: 2px; background: var(--brand); transition: width var(--t);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 18px; }
.nav__link[aria-current="page"] { color: var(--brand); }

.has-sub { position: relative; }
.has-sub > .nav__link { display: inline-flex; align-items: center; gap: .35rem; }
.has-sub > .nav__link svg { width: 11px; height: 11px; transition: transform var(--t-fast); }
.has-sub:hover > .nav__link svg { transform: rotate(180deg); }
.subnav {
  position: absolute; top: calc(100% + .6rem); left: 50%; translate: -50% 0;
  min-width: 268px; padding: .5rem; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--t);
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a {
  display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border-radius: 10px;
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); transition: all var(--t-fast);
}
.subnav a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: .35; transition: all var(--t-fast); }
.subnav a:hover { background: var(--mint); color: var(--ink); }
.subnav a:hover::before { opacity: 1; scale: 1.4; }

.nav__actions { display: flex; align-items: center; gap: .5rem; justify-self: end; }

/* theme toggle */
.theme-toggle {
  position: relative; width: 62px; height: 32px; flex: none;
  border-radius: var(--r-pill); border: 1px solid var(--line);
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  transition: background var(--t), border-color var(--t);
}
.theme-toggle:hover { border-color: color-mix(in oklab, var(--brand) 50%, transparent); }
.theme-toggle__knob {
  position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; color: var(--brand);
  transition: transform .42s var(--ease-io), background var(--t);
}
[data-theme="dark"] .theme-toggle__knob { transform: translateX(30px); }
.theme-toggle__knob svg { width: 14px; height: 14px; }
.theme-toggle__knob .i-moon { display: none; }
[data-theme="dark"] .theme-toggle__knob .i-sun { display: none; }
[data-theme="dark"] .theme-toggle__knob .i-moon { display: block; }
.theme-toggle__track { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 .5rem; color: var(--ink-3); }
.theme-toggle__track svg { width: 12px; height: 12px; }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); place-items: center; color: var(--ink);
  transition: background var(--t-fast);
}
.burger:hover { background: var(--mint); }
.burger span { display: block; width: 17px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t), opacity var(--t-fast); }
.burger span + span { margin-top: 4px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90; display: grid; grid-template-rows: 1fr;
  background: var(--bg); padding: 9rem var(--pad) 2.5rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-io);
  overflow-y: auto;
}
body.nav-open .drawer { transform: translateY(0); }
.drawer__list { display: grid; gap: .2rem; }
.drawer__list > li > a, .drawer__sub-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: .95rem .2rem; font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em;
  border-bottom: 1px solid var(--line-2);
}
.drawer__sub { display: grid; gap: .1rem; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.drawer__sub.open { max-height: 520px; }
.drawer__sub a { display: block; padding: .55rem .2rem .55rem 1rem; color: var(--ink-2); font-weight: 600; font-size: .98rem; }
.drawer__sub a:hover { color: var(--brand); }
.drawer__sub-toggle svg { width: 16px; height: 16px; transition: transform var(--t); }
.drawer__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__foot { margin-top: 2rem; display: grid; gap: 1rem; }

.hero { position: relative; padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__animated-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
.gradient-blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5;
  animation: moveBlob 20s ease-in-out infinite alternate;
}
.gradient-blob--1 { width: 55vw; height: 55vw; max-width: 900px; max-height: 900px; background: color-mix(in oklab, var(--brand) 70%, transparent); top: -20%; left: -10%; animation-duration: 22s; }
.gradient-blob--2 { width: 45vw; height: 45vw; max-width: 800px; max-height: 800px; background: color-mix(in oklab, var(--brand-2) 60%, transparent); bottom: -30%; right: -15%; animation-duration: 26s; animation-direction: alternate-reverse; }
.gradient-blob--3 { width: 40vw; height: 40vw; max-width: 700px; max-height: 700px; background: color-mix(in oklab, var(--brand-3) 50%, transparent); top: 20%; left: 20%; animation-duration: 28s; }
[data-theme="dark"] .gradient-blob { opacity: 0.25; }
@keyframes moveBlob {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(6%, 8%) scale(1.05) rotate(3deg); }
  66% { transform: translate(-8%, 5%) scale(0.95) rotate(-2deg); }
  100% { transform: translate(4%, -10%) scale(1.02) rotate(1deg); }
}
.hero__in { position: relative; z-index: 2; display: grid; justify-items: center; text-align: center; gap: 1.6rem; }
.hero__title { font-size: var(--fs-display); font-weight: 800; letter-spacing: -.045em; line-height: .97; max-width: 16ch; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__lead { max-width: 58ch; font-size: clamp(1.02rem, 1.3vw, 1.16rem); color: var(--ink-2); }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; margin-top: .4rem; }

.hero__ellipse {
  position: absolute; top: 12%; left: 50%; translate: -50% 0;
  width: min(120vw, 1180px); aspect-ratio: 2/1; z-index: 1; pointer-events: none;
  border: 1px solid color-mix(in oklab, var(--brand) 42%, transparent);
  border-radius: 50%; rotate: -18deg; opacity: .6;
  animation: spin 46s linear infinite;
}
@keyframes spin { to { rotate: 342deg; } }

.trust {
  display: inline-flex; align-items: center; gap: .9rem; flex-wrap: wrap; justify-content: center;
  margin-top: .8rem; padding: .6rem 1.2rem .6rem .8rem;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.trust__badge {
  display: inline-flex; align-items: center; gap: .45rem; padding: .35rem .8rem;
  border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .02em;
  color: var(--brand-ink); background: linear-gradient(140deg, var(--brand), var(--brand-2));
}
.trust__text { font-size: var(--fs-sm); color: var(--ink-2); text-align: left; }
.trust__text b { color: var(--ink); font-weight: 700; }
.trust__sep { width: 1px; height: 20px; background: var(--line); }
.stars { display: inline-flex; gap: 2px; color: #F5A524; }
.stars svg { width: 14px; height: 14px; }

/* floating cards */
.hero__floating-cards { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.hero__floating-cards .float-card {
  position: absolute; pointer-events: auto; transform-origin: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
  animation: floatCard 6s ease-in-out infinite alternate;
  border-radius: 12px; margin: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero__floating-cards .float-card:hover { box-shadow: 0 20px 45px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15); }
.float-card--1 { top: 16%; left: 19%; rotate: -12deg; animation-delay: 0s; width: 140px; height: 90px; }
.float-card--2 { top: 55%; left: 20%; rotate: 18deg; animation-delay: -1.5s; width: 120px; height: 78px; }
.float-card--3 { top: 20%; right: 20%; rotate: 15deg; animation-delay: -3s; width: 135px; height: 87px; }
.float-card--4 { top: 58%; right: 22%; rotate: -10deg; animation-delay: -0.8s; width: 150px; height: 98px; }

@keyframes floatCard {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-25px) scale(1.02); }
}

@media (max-width: 900px) {
  .hero__floating-cards { display: none; }
}

/* hero client logo strip */
.clients { position: relative; z-index: 2; margin-top: clamp(2.6rem, 5vw, 4rem); display: grid; gap: 1.4rem; justify-items: center; }
.clients__label {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.logo-strip {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(.7rem, 1.4vw, 1.1rem);
  width: 100%;
}
.logo-tile {
  display: grid; place-items: center; padding: 1.15rem 1.1rem; min-height: 96px;
  border-radius: var(--r); border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--brand) 35%, transparent); }
.logo-tile img {
  max-width: 100%; max-height: 46px; width: auto; object-fit: contain;
}
[data-theme="dark"] .logo-tile { background: #f4f8f6; border-color: rgba(233,246,239,.12); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--surface); padding: clamp(1.3rem, 2.6vw, 2.1rem); display: grid; gap: .3rem; transition: background var(--t); }
.stat:hover { background: var(--mint); }
.stat__num { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -.045em; font-variant-numeric: tabular-nums; color: var(--ink); }
.stat__num .suffix { color: var(--brand); }
.stat__label { font-size: var(--fs-sm); color: var(--ink-2); font-weight: 600; }

/* ---------- 9. Marquee ---------- */
.marquee { position: relative; overflow: hidden; padding-block: clamp(1.6rem, 3vw, 2.4rem); border-block: 1px solid var(--line-2); background: var(--bg-2); }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; }
.marquee__item { display: inline-flex; align-items: center; gap: 2.6rem; font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; white-space: nowrap; color: var(--ink); }
.marquee__item:nth-child(even) { color: transparent; -webkit-text-stroke: 1px color-mix(in oklab, var(--ink) 40%, transparent); }
.marquee__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. Cards / services ---------- */
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 2.4vw, 2rem);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity var(--t);
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), color-mix(in oklab, var(--brand) 12%, transparent), transparent 45%);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--brand) 35%, transparent); }
.card:hover::before { opacity: 1; }

.svc { display: flex; flex-direction: column; gap: 1rem; min-height: 100%; }
.svc__ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; flex: none;
  background: var(--mint); color: var(--brand);
  transition: transform var(--t), background var(--t), color var(--t);
}
.svc:hover .svc__ico { background: var(--brand); color: var(--brand-ink); transform: rotate(-8deg) scale(1.06); }
.svc__ico svg { width: 26px; height: 26px; }
.svc h3 { font-size: var(--fs-h4); }
.svc p { font-size: var(--fs-sm); color: var(--ink-2); }
.svc__num { position: absolute; top: 1.2rem; right: 1.4rem; font-size: .8rem; font-weight: 800; color: var(--ink-3); letter-spacing: .1em; }
.svc__foot { margin-top: auto; padding-top: .6rem; }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(1rem, 1.6vw, 1.3rem); }
.bento > * { grid-column: span 2; }
.bento > .bento--wide { grid-column: span 3; }
.bento > .bento--full { grid-column: span 6; }

.feature-card {
  display: grid; gap: .7rem; padding: clamp(1.3rem, 2.2vw, 1.8rem);
  border-radius: var(--r); border: 1px solid var(--line); background: var(--surface);
  transition: all var(--t);
}
.feature-card:hover { border-color: color-mix(in oklab, var(--brand) 40%, transparent); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-card__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--mint); color: var(--brand); display: grid; place-items: center; }
.feature-card__ico svg { width: 21px; height: 21px; }
.feature-card h3 { font-size: 1.06rem; }
.feature-card p { font-size: var(--fs-sm); color: var(--ink-2); }

/* checklist */
.checks { display: grid; gap: .75rem; }
.checks li { display: flex; align-items: flex-start; gap: .7rem; font-size: var(--fs-sm); color: var(--ink-2); }
.checks li b, .checks li strong { color: var(--ink); font-weight: 700; }
.checks svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: 1px; }

/* ---------- 11. Work / portfolio ---------- */
/* Main tab toggle (AI Portfolio / Studio Showcase) */
.main-tabs {
  display: flex; gap: .5rem; justify-content: center; margin-bottom: 2.2rem;
  padding: .35rem; border-radius: var(--r-pill); background: var(--bg-2);
  border: 1px solid var(--line-2); width: fit-content; margin-inline: auto;
}
.main-tab {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.6rem; border-radius: var(--r-pill); font-size: .92rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--ink-2); background: transparent; border: 0; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.main-tab:hover { color: var(--ink); }
.main-tab.is-active { background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-sm); }
.main-tab__dot {
  width: 9px; height: 9px; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in oklab, currentColor 20%, transparent);
  flex: none; display: none;
}
.main-tab.is-active .main-tab__dot { display: inline-block; }
.main-tab__ico { width: 18px; height: 18px; flex: none; display: inline-flex; }
.main-tab__ico svg { width: 100%; height: 100%; }
/* Studio sub-filters */
.studio-filters { display: flex; gap: .45rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.filters { display: flex; gap: .45rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.filter[data-filter="ai"] {
  padding-left: 1.9rem; position: relative;
  border-color: color-mix(in oklab, var(--brand) 45%, transparent);
  color: var(--brand);
}
.filter[data-filter="ai"]::before {
  content: ""; position: absolute; left: 1.05rem; top: 50%; translate: 0 -50%;
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 18%, transparent);
}
.filter[data-filter="ai"].is-active { color: var(--brand-ink); border-color: var(--brand); }
.filter[data-filter="ai"].is-active::before { background: var(--brand-ink); box-shadow: 0 0 0 4px rgba(255,255,255,.25); }

/* AI portfolio — sections of thumbnail cards (same card as the work grid) */
#ai-view { display: grid; }
#ai-view[hidden], #work-view[hidden] { display: none; }
.ai-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.ai-head__text { display: grid; gap: .5rem; }
.ai-head__text .h3 { letter-spacing: -.03em; }
.ai-head__text .muted { max-width: 54ch; }
.ai-card__badge {
  justify-self: start; display: inline-flex; align-items: center;
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand); padding: .3rem .75rem; border-radius: var(--r-pill);
  background: var(--mint);
}
.ai-card .work__info { display: grid; gap: .55rem; }
.ai-card__top { display: flex; align-items: center; gap: .6rem; }
.ai-card__level { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--brand); }
.ai-card__desc { font-size: var(--fs-sm); color: var(--ink-2); }
/* AI sub-tabs — deliberately smaller & flatter than the main filter pills */
.ai-filters { display: inline-flex; gap: .3rem; flex-wrap: wrap; padding: .3rem; border-radius: var(--r-pill); background: var(--bg-2); border: 1px solid var(--line-2); }
.ai-filter {
  padding: .4rem .9rem; border-radius: var(--r-pill); font-size: .78rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--ink-2); background: transparent; border: 0; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.ai-filter:hover { color: var(--ink); }
.ai-filter.is-active { background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-sm); }
.ai-empty { text-align: center; color: var(--ink-2); font-weight: 600; padding: clamp(2.4rem, 6vw, 4.5rem) 1rem; }
.ai-empty[hidden] { display: none; }
.filter {
  padding: .6rem 1.15rem; border-radius: var(--r-pill); font-size: var(--fs-sm); font-weight: 700;
  border: 1px solid var(--line); color: var(--ink-2); background: var(--surface);
  transition: all var(--t-fast);
}
.filter:hover { color: var(--ink); border-color: color-mix(in oklab, var(--brand) 40%, transparent); }
.filter.is-active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.work {
  position: relative; display: flex; flex-direction: column; width: 100%; text-align: center;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), opacity .35s var(--ease), border-color var(--t);
}
.work:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--brand) 38%, transparent); }
.work__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--mint); }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work:hover .work__media img { transform: scale(1.06); }
.work__media::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity var(--t);
  background: linear-gradient(to top, rgba(4,16,11,.4), transparent 55%);
}
.work:hover .work__media::after { opacity: 1; }
.work__play {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; z-index: 1;
  background: rgba(255,255,255,.92); color: #07160F; box-shadow: var(--shadow-md);
  transition: transform var(--t), background var(--t), color var(--t);
}
.work__play svg { width: 22px; height: 22px; margin-left: 1px; }
.work:hover .work__play { transform: scale(1.12); background: var(--brand); color: var(--brand-ink); }
.work__info { padding: 1.15rem 1.2rem 1.35rem; display: grid; gap: .3rem; align-content: start; }
.work__title { font-size: 1.06rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); transition: color var(--t-fast); }
.work:hover .work__title { color: var(--brand); }
.work__cat { font-size: var(--fs-sm); font-weight: 600; color: var(--brand); }
.work.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.5rem;
  background: rgba(3,12,8,.9); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(94vw, 1000px); max-height: 86vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__stage { width: min(94vw, 1100px); display: grid; place-items: center; }
.lightbox__video { width: 100%; }
.lightbox__video:empty { display: none; }
.lightbox__video iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--r); box-shadow: var(--shadow-lg); background: #000; display: block; }
.lightbox__caption { position: absolute; bottom: 1.3rem; left: 0; right: 0; text-align: center; color: #fff; font-weight: 700; font-size: var(--fs-sm); letter-spacing: -.01em; }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2);
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--brand); transform: scale(1.06); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav.prev { left: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox__nav.next { right: 1.2rem; top: 50%; translate: 0 -50%; }
.lightbox svg { width: 19px; height: 19px; }

/* ---------- 12. Process ---------- */
.process { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding: clamp(1.4rem, 2.2vw, 1.9rem); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); transition: all var(--t); }
.step:hover { background: var(--mint); transform: translateY(-5px); }
.step__n {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -.05em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px color-mix(in oklab, var(--brand) 60%, transparent);
  margin-bottom: .8rem;
}
.step h3 { font-size: var(--fs-h4); margin-bottom: .4rem; }
.step p { font-size: var(--fs-sm); color: var(--ink-2); }

/* ---------- 13. Testimonials ---------- */
.tst-viewport { overflow: hidden; }
.tst-track { display: flex; transition: transform .6s var(--ease-io); }
.tst-slide { flex: 0 0 100%; padding-inline: .5rem; }
.tst {
  display: grid; gap: 1.3rem; padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm);
}
.tst__quote { font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.5; }
.tst__foot { display: flex; align-items: center; gap: .85rem; }
.tst__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: var(--brand-ink); background: linear-gradient(140deg, var(--brand), var(--brand-2)); flex: none; }
.tst__name { font-weight: 700; font-size: var(--fs-sm); }
.tst__role { font-size: var(--fs-xs); color: var(--ink-2); }
.slider-nav { display: flex; gap: .5rem; justify-content: center; margin-top: 1.6rem; align-items: center; }
.slider-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: all var(--t-fast); }
.slider-btn:hover { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
.slider-btn svg { width: 16px; height: 16px; }
.dots { display: flex; gap: .4rem; margin-inline: .6rem; }
.dot { width: 7px; height: 7px; border-radius: 99px; background: var(--line); transition: all var(--t); }
.dot.is-active { width: 22px; background: var(--brand); }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.acc { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.acc.open { border-color: color-mix(in oklab, var(--brand) 40%, transparent); box-shadow: var(--shadow-sm); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
  padding: 1.15rem clamp(1rem, 2vw, 1.5rem); text-align: left;
  font-weight: 700; font-size: clamp(1rem, 1.2vw, 1.08rem); letter-spacing: -.02em;
}
.acc__ico { width: 32px; height: 32px; border-radius: 50%; background: var(--mint); color: var(--brand); display: grid; place-items: center; flex: none; transition: all var(--t); }
.acc.open .acc__ico { background: var(--brand); color: var(--brand-ink); transform: rotate(45deg); }
.acc__ico svg { width: 15px; height: 15px; }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease-io); }
.acc__panel p { padding: 0 clamp(1rem, 2vw, 1.5rem) 1.3rem; color: var(--ink-2); font-size: var(--fs-sm); }

/* ---------- 15. Blog ---------- */
.post { display: grid; grid-template-rows: auto 1fr; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: all var(--t); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--brand) 35%, transparent); }
.post__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--mint); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__tag { position: absolute; top: .8rem; left: .8rem; padding: .35rem .75rem; border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: 700; background: var(--surface); color: var(--brand); border: 1px solid var(--line); }
.post__body { padding: clamp(1.1rem, 2vw, 1.5rem); display: grid; gap: .6rem; align-content: start; }
.post__meta { display: flex; gap: .8rem; font-size: var(--fs-xs); color: var(--ink-3); font-weight: 600; }
.post__title { font-size: 1.12rem; line-height: 1.28; }
.post:hover .post__title { color: var(--brand); }
.post p { font-size: var(--fs-sm); color: var(--ink-2); }

/* article */
.article { max-width: 74ch; margin-inline: auto; }
.article h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 2.4rem; margin-bottom: .8rem; }
.article h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); margin-top: 1.8rem; margin-bottom: .6rem; }
.article p { margin-bottom: 1.1rem; color: var(--ink-2); }
.article ul { display: grid; gap: .6rem; margin-bottom: 1.3rem; }
.article ul li { position: relative; padding-left: 1.35rem; color: var(--ink-2); }
.article ul li::before {
  content: ""; position: absolute; left: .2rem; top: .68em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.article strong { color: var(--ink); }
.article blockquote {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem; border-left: 3px solid var(--brand);
  background: var(--mint); border-radius: 0 var(--r) var(--r) 0; font-weight: 600; color: var(--ink);
}
.article .lead-p { font-size: 1.12rem; color: var(--ink); font-weight: 500; }

/* ---------- 16. Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); align-items: start; }
.price { position: relative; padding: clamp(1.5rem, 2.6vw, 2.2rem); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); display: grid; gap: 1.2rem; transition: all var(--t); }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price.is-featured { border-color: var(--brand); box-shadow: var(--shadow-md); background: linear-gradient(180deg, var(--mint), var(--surface) 42%); }
.price__badge { position: absolute; top: -13px; left: 50%; translate: -50% 0; padding: .35rem .9rem; border-radius: var(--r-pill); background: var(--brand); color: var(--brand-ink); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.price__name { font-size: var(--fs-h4); font-weight: 800; }
.price__amt { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.price__amt small { font-size: .95rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0; }
.price__desc { font-size: var(--fs-sm); color: var(--ink-2); }
.price hr { border: 0; border-top: 1px solid var(--line); }

/* ---------- 17. CTA + contact ---------- */
.cta-panel {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 4.2rem); text-align: center;
  background: linear-gradient(140deg, var(--brand) 0%, #0a5c41 55%, #063526 100%);
  color: #fff; display: grid; gap: 1.4rem; justify-items: center;
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .cta-panel { background: linear-gradient(140deg, #0c8a61 0%, #063d2c 55%, #04211a 100%); }
.cta-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { font-size: var(--fs-h2); max-width: 20ch; }
.cta-panel p { color: rgba(255,255,255,.82); max-width: 56ch; }
.cta-panel .btn { --btn-bg: #fff; --btn-fg: #07160F; box-shadow: 0 16px 40px -18px rgba(0,0,0,.6); }
.cta-panel .btn .btn__ico { background: var(--brand); color: #fff; }
.cta-panel .btn::after { background: var(--brand-3); }

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: var(--fs-sm); font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; padding: .95rem 1.05rem; border-radius: 14px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  font-size: var(--fs-sm);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 16%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field .err { font-size: var(--fs-xs); color: #E5484D; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #E5484D; }
.field.invalid .err { display: block; }
.form__note { font-size: var(--fs-xs); color: var(--ink-3); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { display: none; padding: .9rem 1.1rem; border-radius: 12px; font-size: var(--fs-sm); font-weight: 600; }
.form-status.ok { display: block; background: var(--mint); color: var(--brand); border: 1px solid color-mix(in oklab, var(--brand) 35%, transparent); }
.form-status.bad { display: block; background: rgba(229,72,77,.1); color: #E5484D; border: 1px solid rgba(229,72,77,.35); }

.contact-tile { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--surface); transition: all var(--t); }
.contact-tile:hover { border-color: color-mix(in oklab, var(--brand) 40%, transparent); transform: translateY(-3px); }
.contact-tile__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--mint); color: var(--brand); display: grid; place-items: center; flex: none; }
.contact-tile__ico svg { width: 20px; height: 20px; }
.contact-tile h3 { font-size: 1rem; margin-bottom: .15rem; }
.contact-tile p, .contact-tile a { font-size: var(--fs-sm); color: var(--ink-2); }
.contact-tile a:hover { color: var(--brand); }

/* ---------- 18. Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero__in { position: relative; z-index: 2; display: grid; gap: 1.1rem; justify-items: start; }
.page-hero.center .page-hero__in { justify-items: center; text-align: center; }
.page-hero--banner { position: relative; color: #fff; border-bottom: none; margin-top: 1.5rem; border-radius: var(--r-2xl); }
.page-hero--banner + .section { padding-top: 1.5rem !important; }
.page-hero--banner .blob, .page-hero--banner .grid-lines { display: none !important; }
.page-hero--banner__bg { position: absolute; top: -50px; left: 0; width: 100%; height: calc(100% + 50px); background: url('/assets/img/Shaan-Nexus-Studio-4-5copy.jpg') center bottom/cover no-repeat; z-index: 1; }
.page-hero--banner .page-hero__in { justify-items: start !important; text-align: left !important; }
.page-hero--banner .crumbs, .page-hero--banner .crumbs span { color: rgba(255,255,255,0.7); }
.page-hero--banner .crumbs a { color: #fff; }
.page-hero--banner .eyebrow { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
.page-hero--banner .h1, .page-hero--banner h1 { color: #fff; }
.page-hero--banner .lead { color: rgba(255,255,255,0.8); max-width: 50ch; margin: 0; }
.crumbs { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); font-weight: 600; color: var(--ink-3); }
.crumbs a:hover { color: var(--brand); }
.crumbs svg { width: 12px; height: 12px; }

/* ---------- 19. Footer ---------- */
.site-footer { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.6rem, 3vw, 3rem); padding-block: clamp(2.8rem, 5vw, 4.2rem); position: relative; z-index: 1; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: var(--fs-sm); color: var(--ink-2); max-width: 34ch; }
.footer-col h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; font-weight: 800; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { font-size: var(--fs-sm); color: var(--ink-2); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-col a:hover { color: var(--brand); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.3rem; border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--ink-3); position: relative; z-index: 1; }
.footer-bottom a:hover { color: var(--brand); }
.footer-word {
  position: absolute; bottom: -2.6vw; left: 50%; translate: -50% 0; z-index: 0;
  font-size: clamp(4rem, 14vw, 13rem); font-weight: 800; letter-spacing: -.05em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px var(--line); opacity: .55; pointer-events: none;
}

.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--t);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }

.whatsapp-fab {
  position: fixed; right: 1.2rem; bottom: 4.6rem; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: var(--shadow-md);
  transition: transform var(--t);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 22px; height: 22px; }

/* ---------- 20. Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: .04s; }
[data-stagger].in > *:nth-child(2) { transition-delay: .10s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .16s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .22s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .28s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .34s; }
[data-stagger].in > *:nth-child(7) { transition-delay: .40s; }
[data-stagger].in > *:nth-child(8) { transition-delay: .46s; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .bento > * { grid-column: span 3; }
  .bento > .bento--wide { grid-column: span 3; }
}
@media (max-width: 980px) {
  .nav__menu { display: none; }
  .nav { grid-template-columns: auto 1fr; }
  .burger { display: grid; }
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .section-head--split { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
  .topbar__badge span.hide-sm { display: none; }
}
@media (max-width: 640px) {
  :root { --sect: 2.2rem; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .bento > *, .bento > .bento--wide, .bento > .bento--full { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .logo-tile { min-height: 84px; padding: .9rem; }
  .topbar__right .sep, .topbar__right .call, .topbar__right .socials { display: none; }
  .topbar__in { justify-content: center; }
  .topbar__badge { font-size: .72rem; white-space: nowrap; }
  .nav-cta { display: none; }
  .nav { padding: .5rem; gap: .5rem; }
  .brand { margin-left: .4rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
  .brand img { height: 34px; }
}

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

@media print {
  .site-header, .topbar, .site-footer, .to-top, .whatsapp-fab, .progress, .noise::before { display: none !important; }
  body { background: #fff; color: #000; }
}

/* Hero V2 Styles (We're Creative Graphics Studio) */
.hero__in--v2 { display: flex; flex-direction: column; width: 100%; max-width: 930px; margin: 0 auto; padding-block: 105px 75px; align-items: center; }
.hero__row { display: flex; align-items: center; width: 100%; }
.hero__row--1 { justify-content: center; }
.hero__row--2 { justify-content: center; margin-top: -20px; }
.hero__row--3 { justify-content: center; margin-top: -15px; align-items: center; }

.hero__giant { font-size: 80px; font-weight: 700; letter-spacing: -2.25px; line-height: 1.125; color: var(--ink); white-space: nowrap; transition: color 0.3s; }
.rotating-text { display: inline-block; min-width: 320px; transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; }
.rotating-text.out { opacity: 0; transform: translateY(-15px); }
.rotating-text.in { opacity: 0; transform: translateY(15px); }

.hero__inline-video { position: relative; width: 125px; height: 81px; border-radius: 10px; overflow: hidden; border: none; padding: 0; cursor: pointer; transition: transform 0.3s; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); margin: 0 12px 0 17px; }
.hero__inline-video:hover { transform: translateY(-2px); }
.hero__inline-video img { width: 100%; height: 100%; object-fit: cover; }
.hero__inline-video .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.15); }
.hero__inline-video .play-btn svg { width: 30px; height: 30px; color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); transition: transform 0.2s; }
.hero__inline-video:hover .play-btn svg { transform: scale(1.1); }

.hero__v2-lead { font-size: 18px; font-weight: 500; color: var(--ink-2); max-width: 500px; text-align: left; margin: 0 0 -15px 30px; line-height: 1.556; flex-shrink: 1; transition: color 0.3s; }

.hero__trusted { display: flex; align-items: center; margin-top: 10px; margin-right: 20px; transform: translateY(-10px); }
.hero__avatars { display: flex; align-items: center; }
.hero__avatars img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--bg); object-fit: cover; margin-left: -15px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: border-color 0.3s; }
.hero__avatars img:first-child { margin-left: 0; }
.hero__trusted-text { font-size: 14px; color: var(--ink-3); line-height: 1.2; margin-left: 10px; transition: color 0.3s; }
.hero__trusted-text b { color: var(--ink); font-weight: 700; }
.hero__counter { color: #00B981; font-weight: 700; font-size: 14px; }

.hero__studio-heading { margin: 8px 18px 0px 33px; }

.hero__portfolio-btn { padding: 0 20px 0 24px; font-size: 18px; border-radius: 30px; background: #00B981; color: #fff; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; white-space: nowrap; transition: background 0.2s; line-height: 57px; margin-top: 10px; margin-left: 15px; }
.hero__portfolio-btn:hover { background: #009668; color: #fff; }
.hero__portfolio-btn .btn__ico svg { width: 22px; height: 22px; }

/* AI Videos Nav Highlight */
.nav-highlight {
  background: linear-gradient(90deg, #00B981, #0b69ff, #00B981);
  background-size: 200% auto;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  animation: shine 3s linear infinite;
  font-weight: 700 !important;
}
.nav-highlight:hover {
  background: var(--mint) !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}
.nav-highlight .sparkle {
  display: inline-block;
  margin-left: 6px;
  color: #0b69ff;
  -webkit-text-fill-color: #0b69ff;
  animation: pulse 1.5s ease-in-out infinite alternate;
}
@keyframes shine {
  to { background-position: 200% center; }
}
@keyframes pulse {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.1); opacity: 1; }
}
