/* =============================================================
   AKDENİZ AJANS — Design System
   Tasarım Dili: Akdeniz / Mediterranean
   Derin gece mavisi · Turkuaz · Azur · Gün batımı altın & mercan
   ============================================================= */

:root {
  /* Renk Paleti */
  --bg-900: #050814;
  --bg-800: #070b1d;
  --bg-700: #0b1228;
  --surface: #0e1633;
  --surface-2: #131d44;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #eaf0ff;
  --ink-soft: #aab4d4;
  --ink-mute: #6b769c;

  --teal: #14e0c8;
  --teal-2: #00b8d4;
  --azure: #2f7bff;
  --indigo: #5a4bff;
  --gold: #ffc24b;
  --coral: #ff6a5a;
  --sand: #ffd9a0;

  /* Gradients */
  --grad-sea: linear-gradient(120deg, #14e0c8 0%, #00b8d4 38%, #2f7bff 100%);
  --grad-sun: linear-gradient(120deg, #ffc24b 0%, #ff8a5a 55%, #ff6a5a 100%);
  --grad-aurora: linear-gradient(120deg, #14e0c8 0%, #2f7bff 45%, #5a4bff 75%, #ff6a5a 100%);
  --grad-ink: radial-gradient(120% 120% at 50% 0%, #0b1228 0%, #050814 60%);

  --shadow-soft: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 0 1px rgba(20, 224, 200, 0.18), 0 30px 90px -30px rgba(20, 224, 200, 0.35);

  --font-display: "Clash Display", "Sora", system-ui, sans-serif;
  --font-body: "Sora", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: auto; /* Lenis kontrol ediyor */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--bg-900);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: -0.01em;
  cursor: none;
}

@media (max-width: 1024px) {
  body { cursor: auto; }
}

::selection { background: var(--teal); color: #04101a; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}
@media (max-width: 640px) { .container { padding-inline: 20px; } }

/* ----------------------- Typografi ----------------------- */
.font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }

.display-xxl { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.025em;
  font-size: clamp(2.5rem, 5.6vw, 5rem); }
.display-xl { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.022em;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.display-l { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem); }
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--teal); font-weight: 600;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink-soft); line-height: 1.65; }

.text-grad-sea { background: var(--grad-sea); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-grad-sun { background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-grad-aurora { background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ----------------------- Cursor ----------------------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.6);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.cursor-ring.is-active { width: 72px; height: 72px; background: rgba(255,255,255,0.12); border-color: transparent; }
.cursor-ring.is-hidden { opacity: 0; }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }

/* ----------------------- Preloader ----------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg-900);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.preloader__count {
  font-family: var(--font-display); font-size: clamp(4rem, 18vw, 14rem);
  line-height: 1; background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.preloader__label { margin-top: 1rem; letter-spacing: 0.4em; text-transform: uppercase; font-size: 0.7rem; color: var(--ink-mute); }
.preloader__bar { margin-top: 2rem; width: min(360px, 70vw); height: 2px; background: var(--line); overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 0%; background: var(--grad-sea); }

/* ----------------------- Header ----------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 970;
  padding: 22px 0; transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  padding: 12px 0; background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--grad-sea);
  display: grid; place-items: center; box-shadow: 0 8px 30px -10px rgba(20,224,200,0.6);
  position: relative; overflow: hidden;
}
.brand__mark::after { content:""; position:absolute; inset:0; background: var(--grad-sun); opacity:0; transition:.4s; }
.brand:hover .brand__mark::after { opacity:.85; }
.brand__mark svg { position: relative; z-index: 2; }

/* ============================================================
   PREMIUM CORPORATE LOGO  ·  AKDENİZ AJANS
   ============================================================ */
.brand--pro { gap: 13px; align-items: center; }
.brand--pro .brand__mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, #14e0c8 0%, #2f7bff 52%, #6a5cff 100%);
  background-size: 220% 220%; animation: brandGrad 7s ease infinite;
  box-shadow: 0 12px 32px -8px rgba(20,224,200,.55), inset 0 1px 0 rgba(255,255,255,.45), inset 0 -8px 18px -10px rgba(4,16,26,.6);
  display: grid; place-items: center; position: relative; overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.brand--pro .brand__mark svg { position: relative; z-index: 3; width: 25px; height: 25px; filter: drop-shadow(0 1px 1px rgba(255,255,255,.25)); }
/* soft top-light sheen */
.brand--pro .brand__mark::after {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 1;
  background: radial-gradient(circle at 72% 22%, rgba(255,255,255,.4), transparent 46%);
}
/* glossy diagonal shine sweep */
.brand--pro .brand__mark::before {
  content: ""; position: absolute; top: -20%; left: -130%; width: 55%; height: 140%; z-index: 2;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-22deg); animation: brandShine 5.5s ease-in-out infinite;
}
@keyframes brandGrad { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes brandShine { 0%, 58% { left: -130%; } 78%, 100% { left: 135%; } }
.brand--pro:hover .brand__mark { transform: rotate(-6deg) scale(1.06); box-shadow: 0 16px 40px -8px rgba(20,224,200,.8), inset 0 1px 0 rgba(255,255,255,.5); }
.brand--pro:hover .brand__mark::after { opacity: 1; }

.brand--pro .brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: .15em;
  background: linear-gradient(90deg, #eaf6ff 0%, #9fe9df 38%, #7fb6ff 64%, #eaf6ff 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: brandText 6.5s linear infinite;
}
@keyframes brandText { to { background-position: 220% center; } }
.brand__sub {
  display: flex; align-items: center; gap: 8px; margin-top: 6px; padding-left: 2px;
  font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: .44em;
  color: var(--ink-mute); text-transform: uppercase;
}
.brand__sub i { width: 16px; height: 1px; background: linear-gradient(90deg, var(--teal), transparent); display: inline-block; }
@media (max-width: 480px) { .brand__name { font-size: 1.08rem; letter-spacing: .12em; } .brand--pro .brand__mark { width: 42px; height: 42px; } }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; padding: 10px 16px; font-size: 0.92rem; color: var(--ink-soft);
  font-weight: 500; border-radius: 999px; transition: color .3s;
}
.nav__link::before {
  content:""; position:absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
  background: var(--grad-sea); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__link:hover::before, .nav__link.active::before { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.btn-burger { display: none; }

@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__cta .btn { display: none; }
  .btn-burger {
    position: relative; z-index: 2;
    display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px;
    background: var(--surface); border: 1px solid var(--line); gap: 5px; cursor: pointer;
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  }
  .btn-burger:hover { transform: translateY(-1px); border-color: var(--teal); }
  .btn-burger span { width: 20px; height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: .35s var(--ease); transform-origin: center; }
  .btn-burger.active { background: var(--grad-sea); border-color: transparent; }
  .btn-burger.active span { background: #04101a; }
  .btn-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .btn-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .btn-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(20,224,200,.10), transparent 52%),
    radial-gradient(120% 90% at 0% 100%, rgba(47,123,255,.12), transparent 55%),
    rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(26px) saturate(130%); -webkit-backdrop-filter: blur(26px) saturate(130%);
  display: flex; flex-direction: column; padding: 118px 28px 38px;
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.mobile-menu.open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .4s var(--ease), transform .55s var(--ease), visibility 0s;
}
.mobile-menu > a {
  position: relative;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 8vw, 2.5rem); line-height: 1.06; color: var(--ink);
  padding: 18px 4px; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), color .3s var(--ease), padding-left .35s var(--ease);
}
.mobile-menu > a:hover, .mobile-menu > a:active { color: var(--teal); padding-left: 12px; }
.mobile-menu > a small {
  display:block; margin-top: 6px; font-family: var(--font-body); font-weight: 500;
  font-size: .72rem; color: var(--ink-mute); letter-spacing:.22em; text-transform:uppercase;
}
.mobile-menu > div {
  margin-top: auto; padding-top: 26px;
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.mobile-menu .btn { width: 100%; justify-content: center; font-size: .95rem; }
.mobile-menu.open > a, .mobile-menu.open > div { opacity: 1; transform: translateY(0); }
.mobile-menu.open > a:nth-child(1) { transition-delay: .10s; }
.mobile-menu.open > a:nth-child(2) { transition-delay: .16s; }
.mobile-menu.open > a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.open > a:nth-child(4) { transition-delay: .28s; }
.mobile-menu.open > a:nth-child(5) { transition-delay: .34s; }
.mobile-menu.open > div { transition-delay: .42s; }

/* ----------------------- Buttons ----------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; overflow: hidden; transition: transform .35s var(--ease), color .35s;
  will-change: transform;
}
.btn span { position: relative; z-index: 2; }
.btn svg { position: relative; z-index: 2; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--grad-sea); color: #04101a; }
.btn-primary::after {
  content:""; position:absolute; inset:0; background: var(--grad-sun); z-index:1;
  transform: translateY(101%); transition: transform .45s var(--ease);
}
.btn-primary:hover::after { transform: translateY(0); }

.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost::after {
  content:""; position:absolute; inset:0; background: var(--ink); z-index:1;
  transform: scale(0); border-radius: 999px; transition: transform .5s var(--ease);
}
.btn-ghost:hover { color: var(--bg-900); }
.btn-ghost:hover::after { transform: scale(1.4); }

.btn-light { background: var(--ink); color: var(--bg-900); }

/* ----------------------- Sections ----------------------- */
section { position: relative; }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-sm { padding: clamp(56px, 8vw, 100px) 0; }

.section-head { max-width: 760px; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-head .eyebrow::before { content:""; width: 28px; height: 1px; background: var(--teal); display:inline-block; }

/* ----------------------- Cards / Surfaces ----------------------- */
.card {
  position: relative; background: linear-gradient(180deg, var(--surface) 0%, var(--bg-800) 100%);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.card-glow:hover { box-shadow: var(--shadow-glow); border-color: rgba(20,224,200,.4); }

.glass {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  backdrop-filter: blur(14px); border-radius: var(--radius);
}

.tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line); font-size: 0.82rem; color: var(--ink-soft);
}
.tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ----------------------- Service cards ----------------------- */
.service-card { padding: 38px 34px; min-height: 340px; display: flex; flex-direction: column; }
.service-card__num { font-family: var(--font-display); font-size: .9rem; color: var(--ink-mute); }
.service-card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; margin: 22px 0 28px;
  background: rgba(20,224,200,0.08); border: 1px solid rgba(20,224,200,0.2); color: var(--teal);
  transition: .5s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--grad-sea); color: #04101a; transform: translateY(-4px) rotate(-6deg); }
.service-card h3 { font-family: var(--font-display); font-size: 1.55rem; margin-bottom: 14px; }
.service-card p { color: var(--ink-soft); font-size: .96rem; }
.service-card__link { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-weight: 600; font-size: .9rem; }

/* Premium service cards (homepage) */
.service-card--pro { min-height: 400px; padding: 34px 32px 30px; }
.service-card--pro::after {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 2px;
  background: var(--grad-sea); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease); z-index: 4;
}
.service-card--pro:hover::after { transform: scaleX(1); }
.sc-head { display: flex; align-items: center; justify-content: space-between; }
.sc-head .service-card__num { font-size: .82rem; letter-spacing: .22em; }
.sc-arrow {
  flex: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--ink-soft);
  transition: background .45s var(--ease), color .45s, border-color .45s, transform .45s var(--ease);
}
.service-card--pro:hover .sc-arrow { background: var(--grad-sea); border-color: transparent; color: #04101a; transform: translate(3px, -3px); }
.service-card--pro .service-card__icon { margin: 26px 0 22px; }
.service-card--pro h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card--pro p { font-size: .93rem; }
.sc-list { list-style: none; margin: auto 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; width: 100%; }
.sc-list li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: .86rem; }
.sc-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 12px; height: 1.5px; background: var(--teal); border-radius: 2px; transition: width .4s var(--ease); }
.service-card--pro:hover .sc-list li::before { width: 16px; }
/* Premium CTA card */
.service-card--cta { justify-content: space-between; }
.service-card--cta::after { display: none; }
.service-card--cta:hover .sc-arrow { background: #04101a; color: #eaf0ff; border-color: transparent; }

/* ----------------------- Marquee ----------------------- */
.marquee { overflow: hidden; white-space: nowrap; display: flex; }
.marquee__track { display: flex; gap: 56px; padding-right: 56px; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); color: transparent; -webkit-text-stroke: 1px var(--line-strong); display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after { content: "✦"; -webkit-text-stroke: 0; color: var(--teal); font-size: .5em; }

/* ----------------------- Stats ----------------------- */
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1; }
.stat__label { color: var(--ink-soft); font-size: .92rem; margin-top: 10px; }

/* ----------------------- Reveal animations ----------------------- */
[data-reveal] { opacity: 0; transform: translateY(40px); }
[data-reveal="fade"] { transform: none; }
.reveal-line { overflow: hidden; display: block; }
.reveal-line > * { display: block; }

/* split text words */
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word > span { display: inline-block; will-change: transform; }

/* ----------------------- Portfolio ----------------------- */
.work-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.work-card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; transform: scale(1.04); }
.work-card:hover .work-card__media img { transform: scale(1.12); filter: saturate(1.2); }
.work-card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(5,8,20,0.85)); }
.work-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; z-index: 2; }
.work-card__cat { font-size: .8rem; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; }
.work-card__title { font-family: var(--font-display); font-size: 1.6rem; margin-top: 6px; }
.work-card__arrow {
  position: absolute; top: 24px; right: 24px; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); display: grid; place-items: center;
  transform: scale(0) rotate(-45deg); transition: .5s var(--ease); z-index: 2;
}
.work-card:hover .work-card__arrow { transform: scale(1) rotate(0); }

/* ----------------------- Process / steps ----------------------- */
.step { position: relative; padding: 34px 30px; }
.step__num { font-family: var(--font-display); font-size: 3rem; color: transparent; -webkit-text-stroke: 1px var(--line-strong); }
.step h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 14px 0 10px; }

/* ----------------------- Accordion ----------------------- */
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; }
.acc__head h3 { font-family: var(--font-display); font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
.acc__icon { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: .4s; }
.acc__item.open .acc__icon { background: var(--grad-sea); color: #04101a; transform: rotate(135deg); border-color: transparent; }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__body p { padding-bottom: 28px; color: var(--ink-soft); max-width: 760px; }

/* ----------------------- Testimonials ----------------------- */
.quote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.4rem); line-height: 1.3; letter-spacing: -0.02em; }

/* ----------------------- Team ----------------------- */
.team-card__media { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); position: relative; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: 1s var(--ease); transform: scale(1.05); }
.team-card:hover .team-card__media img { filter: grayscale(0); transform: scale(1.12); }

/* ----------------------- Forms ----------------------- */
.field { position: relative; margin-bottom: 6px; }
.field label { display: block; font-size: .82rem; color: var(--ink-mute); margin-bottom: 10px; letter-spacing: .04em; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background: rgba(20,224,200,0.04); }
.field textarea { resize: vertical; min-height: 140px; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.choice {
  padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  font-size: .9rem; color: var(--ink-soft); cursor: none; transition: .3s; user-select: none;
}
.choice.active { background: var(--grad-sea); color: #04101a; border-color: transparent; }

/* ----------------------- Footer ----------------------- */
.site-footer { background: var(--bg-800); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.footer-cta__title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.025em; }
.footer-links a { color: var(--ink-soft); display: inline-block; padding: 6px 0; transition: color .3s, transform .3s; }
.footer-links a:hover { color: var(--ink); transform: translateX(6px); }

/* ----------------------- Decorative ----------------------- */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; z-index: 0; }
.grain::before {
  content:""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }

/* Page hero canvas */
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 8%, transparent 40%, var(--bg-900) 100%); }

/* Hero stats card v2 */
.hero-stats {
  border-radius: calc(var(--radius) + 4px); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line); backdrop-filter: blur(14px);
  box-shadow: 0 36px 90px -48px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.hero-stats:hover { box-shadow: 0 44px 100px -44px rgba(20,224,200,.28), inset 0 1px 0 rgba(255,255,255,.1); }
.hero-stats__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.hero-stats__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.3s var(--ease); }
.hero-stats:hover .hero-stats__media img { transform: scale(1.13); }
.hero-stats__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,8,18,0) 30%, rgba(4,8,18,.55) 72%, rgba(4,8,18,.95) 100%);
}
.hero-stats__badge {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  display: flex; align-items: center; gap: 11px;
  padding: 10px 16px 10px 13px; border-radius: 999px;
  background: rgba(6,10,20,.5); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-stats__badge-txt { display: flex; flex-direction: column; line-height: 1.12;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: #fff; }
.hero-stats__badge-txt small { font-family: var(--font-body); font-weight: 500; font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 3px; }
.hero-stats__badge-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 4px rgba(20,224,200,.18); animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 4px rgba(20,224,200,.18); } 50% { box-shadow: 0 0 0 8px rgba(20,224,200,.05); } }
.hero-stats__chip {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 7px 14px; border-radius: 999px; font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: #04101a;
  background: var(--grad-sea); box-shadow: 0 8px 22px -8px rgba(20,224,200,.6);
}
.hero-stats__grid { display: grid; grid-template-columns: 1fr 1fr; }
.hero-stat { padding: 22px 24px; position: relative; }
.hero-stat:nth-child(odd) { border-right: 1px solid var(--line); }
.hero-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.hero-stat__num { font-family: var(--font-display); font-weight: 700; line-height: 1; font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.hero-stat__label { margin-top: 9px; font-size: .82rem; color: var(--ink-mute); letter-spacing: .01em; }
@media (max-width: 480px) {
  .hero-stat { padding: 18px 18px; }
  .hero-stats__media { aspect-ratio: 16 / 9; }
}

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-aurora); z-index: 999; }

/* Utility */
.muted { color: var(--ink-soft); }
.tiny { font-size: .82rem; }
.center { text-align: center; }
.grid { display: grid; }
.flex { display: flex; }
.hidden-mobile { }
@media (max-width: 768px) { .hidden-mobile { display: none !important; } }

/* ----------------------- Client logo strip ----------------------- */
.marquee__track.is-logos { gap: 16px; padding-right: 16px; align-items: center; }
.marquee__track.is-logos span { -webkit-text-stroke: 0; color: inherit; font-size: inherit; display: inline; align-items: initial; gap: 0; }
.marquee__track.is-logos span::after { content: none; }
.logo-chip {
  display: inline-flex; align-items: center; gap: 14px; padding: 15px 26px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03); white-space: nowrap;
  transition: transform .45s var(--ease), border-color .45s, background .45s;
}
.logo-chip__mark {
  flex: none; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px;
  background: rgba(255,255,255,0.05); color: var(--ink-soft); transition: .45s var(--ease);
}
.logo-chip__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink-soft); letter-spacing: -0.01em; transition: color .45s; }
.logo-chip:hover { transform: translateY(-3px); border-color: rgba(20,224,200,0.4); background: rgba(20,224,200,0.05); }
.logo-chip:hover .logo-chip__mark { background: var(--grad-sea); color: #04101a; transform: rotate(-6deg); }
.logo-chip:hover .logo-chip__name { color: var(--ink); }

/* ----------------------- Award-winning slider cards ----------------------- */
.work-card--xl { width: min(85vw, 500px); flex: none; display: flex; flex-direction: column; }
.work-card--xl .work-card__media { aspect-ratio: 4/3; border-radius: 0; }
.work-card--xl .work-card__media::after { background: linear-gradient(180deg, rgba(5,8,20,0.22) 0%, transparent 38%, transparent 100%); }
.work-card__index {
  position: absolute; top: 18px; left: 20px; z-index: 3; font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .12em; color: #fff; padding: 7px 13px; border-radius: 999px;
  background: rgba(5,8,20,0.42); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18);
}
.work-card__view {
  position: absolute; top: 16px; right: 16px; z-index: 3; width: 54px; height: 54px; border-radius: 50%;
  background: var(--grad-sea); color: #04101a; display: grid; place-items: center;
  transform: scale(0) rotate(-45deg); transition: transform .55s var(--ease);
}
.work-card--xl:hover .work-card__view { transform: scale(1) rotate(0); }
.work-card__panel { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.work-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.chip-ico {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px;
  font-size: .76rem; color: var(--ink-soft); background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.chip-ico svg { width: 14px; height: 14px; color: var(--teal); }
.work-card__panel .work-card__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.work-card__desc { color: var(--ink-soft); font-size: .93rem; line-height: 1.55; margin-bottom: 20px; }
.work-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-weight: 600; font-size: .9rem; }
.work-card__cta svg { transition: transform .4s var(--ease); }
.work-card--xl:hover .work-card__cta svg { transform: translateX(6px); }

/* Slider viewport (mobile native scroll, desktop GSAP pin) */
.hslider-viewport { overflow: hidden; }
@media (max-width: 768px) {
  .hslider-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .hslider-viewport::-webkit-scrollbar { display: none; }
  .hslider-viewport [data-hpanel] { scroll-snap-align: center; }
  .work-card--xl { width: 82vw; }
  .hslider-hint { display: none; }
}

/* Slider footer: progress + hint */
.hslider-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 18px; }
.hslider-hint { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-mute); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.hslider-hint svg { color: var(--teal); animation: nudge 1.6s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0);} 50% { transform: translateX(6px);} }
.hslider-progress { flex: 1; max-width: 300px; height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; }
.hslider-progress i { display: block; height: 100%; width: 100%; background: var(--grad-aurora); border-radius: 999px; transform: scaleX(0.08); transform-origin: left; }
.hslider-count { font-family: var(--font-display); font-size: .85rem; color: var(--ink-soft); letter-spacing: .1em; }
.hslider-count b { color: var(--ink); }

/* ============================================================
   PREMIUM VISUAL BLOCKS (bento / gallery / featured case)
   ============================================================ */

/* ---------- Bento showcase grid ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
.bento__cell { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-800); display: block; }
.bento__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bento__cell:hover img { transform: scale(1.07); }
.bento__cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,8,20,0) 28%, rgba(5,8,20,.55) 64%, rgba(5,8,20,.9) 100%); }
.bento__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 26px; }
.bento__label .k { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.bento__label .k svg { width: 15px; height: 15px; }
.bento__label h3 { font-family: var(--font-display); font-size: 1.35rem; color: #fff; line-height: 1.1; }
.bento__label p { color: rgba(255,255,255,.72); font-size: .88rem; margin-top: 8px; max-width: 42ch; opacity: 0; transform: translateY(8px); transition: .5s var(--ease); }
.bento__cell:hover .bento__label p { opacity: 1; transform: translateY(0); }
.bento__cell .bento__tag { position: absolute; top: 18px; right: 18px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(5,8,20,.45); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); color: #fff; transform: scale(0) rotate(-30deg); transition: transform .5s var(--ease); }
.bento__cell:hover .bento__tag { transform: scale(1) rotate(0); }
.bento--wide { grid-column: span 2; }
.bento--tall { grid-row: span 2; }
.bento--big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; } .bento--big, .bento--wide { grid-column: span 2; } .bento--big, .bento--tall { grid-row: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento--wide, .bento--big { grid-column: span 1; } }

/* ---------- Auto-scrolling image gallery ---------- */
.gallery-mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.gallery-strip { display: flex; gap: 18px; width: max-content; animation: galleryScroll 45s linear infinite; }
.gallery-strip:hover { animation-play-state: paused; }
.gallery-strip figure { position: relative; flex: none; width: 340px; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 0; }
.gallery-strip figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-strip figure:hover img { transform: scale(1.06); }
.gallery-strip figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,8,20,.55)); }
.gallery-strip figure figcaption { position: absolute; left: 14px; bottom: 13px; z-index: 2; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(5,8,20,.5); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.16); padding: 6px 13px; border-radius: 999px; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }
@media (max-width: 600px) { .gallery-strip figure { width: 250px; } }

/* ---------- Featured case study ---------- */
.case { display: grid; grid-template-columns: 1.12fr .88fr; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); overflow: hidden; background: var(--bg-800); }
.case__media { position: relative; min-height: 440px; overflow: hidden; }
.case__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.case:hover .case__media img { transform: scale(1.06); }
.case__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,8,20,.35), transparent 55%); }
.pill-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(5,8,20,.5); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); padding: 8px 15px; border-radius: 999px; }
.case__media .pill-badge { position: absolute; top: 22px; left: 22px; z-index: 2; }
.case__body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.case__metrics { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.case__metrics .stat__num { font-size: 2rem; }
@media (max-width: 880px) { .case { grid-template-columns: 1fr; } .case__media { min-height: 300px; } }

/* ---------- Tools / tech chip band ---------- */
.tool-chip { display: inline-flex; align-items: center; gap: 11px; padding: 13px 22px; border-radius: 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.025); transition: transform .4s var(--ease), border-color .4s, background .4s; }
.tool-chip svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
.tool-chip span { font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--ink-soft); }
.tool-chip:hover { transform: translateY(-3px); border-color: rgba(20,224,200,0.35); background: rgba(20,224,200,0.05); }
.tool-chip:hover span { color: var(--ink); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
