:root {
  --bg: #001e30;
  --bg-2: #002e42;
  --bg-3: #003a54;
  --cyan: #009BC6;
  --cyan-soft: rgba(0, 155, 198, 0.14);
  --red: #f94144;
  --white: #ffffff;
  --text: #d6e6ee;
  --muted: #8fb0c0;
  --border: rgba(0, 155, 198, 0.18);
  --radius: 18px;
  --font: "Quicksand", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--cyan); }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(80px, 12vh, 140px) 0; position: relative; }

::selection { background: var(--cyan); color: var(--bg); }

.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo {
  width: clamp(180px, 30vw, 280px); margin: 0 auto 28px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}
.preloader__bar {
  width: 180px; height: 3px; margin: 0 auto; border-radius: 99px;
  background: rgba(255,255,255,0.1); overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 40%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  animation: loadbar 1.1s var(--ease) infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(480%); }
}

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--cyan);
}
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(0, 155, 198, 0.55);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              border-color 0.25s, background 0.25s;
}
.cursor-ring.is-hover {
  width: 62px; height: 62px;
  background: rgba(0, 155, 198, 0.08);
  border-color: var(--red);
}
.cursor-ring.is-drag {
  width: 84px; height: 84px;
  background: rgba(0, 155, 198, 0.12);
}
.cursor-ring.is-drag::after {
  content: "← drag →"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--white); letter-spacing: 0.04em;
}
@media (hover: none), (max-width: 820px) {
  .cursor-dot, .cursor-ring { display: none; }
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  z-index: 200;
}

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(0, 30, 48, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative; font-weight: 600; font-size: 15px; color: var(--muted);
  transition: color 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.burger { display: none; background: none; border: 0; cursor: pointer; z-index: 110; }
.burger span {
  display: block; width: 26px; height: 2px; background: var(--white);
  margin: 6px 0; border-radius: 2px; transition: 0.35s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 99px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  border: 0; cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--lg { padding: 18px 44px; font-size: 17px; }
.btn--full { width: 100%; justify-content: center; }
.btn--accent {
  background: var(--red); color: var(--white);
  box-shadow: 0 10px 30px rgba(249, 65, 68, 0.35);
}
.btn--accent:hover { box-shadow: 0 14px 40px rgba(249, 65, 68, 0.5); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--cyan); background: var(--cyan-soft); }
.btn--light { background: var(--white); color: var(--bg-2); }
.btn--light:hover { box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3); }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
  transform: translateX(-120%);
}
.btn:hover::before { animation: shine 0.8s var(--ease); }
@keyframes shine { to { transform: translateX(120%); } }

.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(120% 110% at 75% 15%, var(--bg-2) 0%, var(--bg) 62%);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,155,198,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,155,198,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 20%, transparent 100%);
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero__orb--1 { width: 480px; height: 480px; background: var(--cyan); top: -140px; right: -100px; }
.hero__orb--2 { width: 340px; height: 340px; background: var(--red); bottom: -120px; left: -80px; opacity: 0.28; animation-delay: -5s; }
.hero__orb--3 { width: 220px; height: 220px; background: var(--bg-3); top: 45%; left: 55%; opacity: 0.6; animation-delay: -9s; }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 50px) scale(1.15); }
}

.hero__content { position: relative; z-index: 2; padding-top: 80px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 26px;
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 99px;
  background: rgba(0, 155, 198, 0.06);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 65, 68, 0.6); }
  60% { box-shadow: 0 0 0 10px rgba(249, 65, 68, 0); }
}

.hero__title {
  font-size: clamp(52px, 9.5vw, 118px);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 30px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > * , .hero__title .word { display: inline-block; }
.hero__title .accent-dot { color: var(--red); }

.hero__sub {
  max-width: 560px; font-size: clamp(16px, 2vw, 19px);
  color: var(--muted); margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero__scroll-track {
  width: 26px; height: 42px; border: 1.5px solid var(--border); border-radius: 99px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scroll-thumb {
  width: 4px; height: 8px; border-radius: 99px; background: var(--cyan);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero__scroll-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.hero__title .line span.slide-up {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1s var(--ease) forwards;
}
@keyframes slideUp { to { transform: translateY(0); } }
.reveal-line { opacity: 0; transform: translateY(26px); }
body.is-loaded .reveal-line {
  animation: fadeUp 0.9s var(--ease) forwards;
}
body.is-loaded .hero__kicker { animation-delay: 0.15s; }
body.is-loaded .hero__sub { animation-delay: 0.75s; }
body.is-loaded .hero__actions { animation-delay: 0.9s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.clients { padding: 64px 0; border-block: 1px solid var(--border); background: rgba(0, 46, 66, 0.35); }
.clients__label {
  text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 34px;
}
.marquee { overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 46px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-size: clamp(20px, 3vw, 30px); font-weight: 700; white-space: nowrap;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}
.marquee__track span:hover { color: var(--cyan); }
.marquee__track i { color: var(--red); font-style: normal; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section__head { margin-bottom: 64px; }
.section__head--split {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.section__kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section__kicker::before { content: "— "; color: var(--cyan); }
.section__title {
  font-size: clamp(32px, 5vw, 54px); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.015em; color: var(--white);
}

.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.services { background: var(--bg); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  position: relative; padding: 38px 30px 34px;
  background: linear-gradient(160deg, rgba(0, 46, 66, 0.75), rgba(0, 30, 48, 0.9));
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(0, 155, 198, 0.16), transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(0, 155, 198, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.service-card__icon {
  font-size: 30px; margin-bottom: 20px;
  width: 62px; height: 62px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan-soft); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__icon { transform: translateY(-4px) scale(1.06) rotate(-4deg); }
.service-card h3 { color: var(--white); font-size: 21px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }
.service-card__num {
  position: absolute; top: 24px; right: 26px;
  font-size: 15px; font-weight: 700; color: rgba(0, 155, 198, 0.5);
}
.service-card--wide { grid-column: span 3;
  display: grid; grid-template-columns: 62px 1fr; column-gap: 24px; align-items: center;
}
.service-card--wide .service-card__icon { margin-bottom: 0; }
.service-card--wide h3 { grid-column: 2; }
.service-card--wide p { grid-column: 2; max-width: 640px; }

.stats {
  position: relative; padding: 90px 0; overflow: hidden;
  background: linear-gradient(120deg, var(--bg-2), var(--bg));
  border-block: 1px solid var(--border);
}
.stats__glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,155,198,0.18), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowPulse 5s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: 0.5; } to { opacity: 1; } }
.stats__grid {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.stat__num {
  display: block; font-size: clamp(44px, 6vw, 68px); font-weight: 700;
  color: var(--white); line-height: 1;
  background: linear-gradient(120deg, var(--white), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat__label {
  display: block; margin-top: 10px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}

.work { background: var(--bg); }
.work__nav { display: flex; gap: 12px; }
.work__arrow {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--white); font-size: 20px; cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.work__arrow:hover { background: var(--cyan); border-color: var(--cyan); color: var(--bg); }

.work__viewport {
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; padding: 10px 0 30px;
}
.work__viewport::-webkit-scrollbar { display: none; }
.work__viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.work__track {
  display: flex; gap: 26px; width: max-content;
  padding-inline: max(calc((100vw - 1180px) / 2), 4vw);
}
.work-card {
  width: clamp(280px, 32vw, 400px); flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.4s;
}
.work-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 155, 198, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.work-card__media {
  height: clamp(200px, 24vw, 280px);
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 130% at 20% 15%, color-mix(in srgb, var(--hue1) 45%, transparent), transparent 60%),
    radial-gradient(120% 130% at 85% 90%, color-mix(in srgb, var(--hue1) 25%, transparent), transparent 55%),
    var(--hue2);
  position: relative; overflow: hidden;
}
.work-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}
.work-card:hover .work-card__media::after { transform: translateX(120%); }
.work-card__media span {
  font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
  transition: transform 0.5s var(--ease);
}
.work-card:hover .work-card__media span { transform: scale(1.08); }
.work-card__body { padding: 22px 24px 26px; }
.work-card__body h3 { color: var(--white); font-size: 19px; margin-bottom: 4px; }
.work-card__body p { color: var(--muted); font-size: 14px; }

.process { background: linear-gradient(180deg, var(--bg), var(--bg-2) 130%); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  counter-reset: step;
}
.step {
  position: relative; padding: 34px 26px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(0, 46, 66, 0.4);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.step:hover { transform: translateY(-8px); border-color: rgba(249, 65, 68, 0.55); background: rgba(0, 46, 66, 0.7); }
.step__num {
  display: inline-block; font-size: 15px; font-weight: 700; color: var(--red);
  margin-bottom: 16px; padding: 6px 14px; border-radius: 99px;
  border: 1px solid rgba(249, 65, 68, 0.4);
}
.step h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }

.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: 110px 0;
  background: linear-gradient(120deg, var(--red) 0%, #c22e31 55%, var(--bg-2) 140%);
}
.cta-band__marquee {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  opacity: 0.1; pointer-events: none; overflow: hidden;
}
.cta-band__track {
  display: flex; width: max-content; white-space: nowrap;
  font-size: 110px; font-weight: 700; color: var(--white);
  animation: marquee 22s linear infinite;
}
.cta-band__inner { position: relative; }
.cta-band__inner h2 {
  color: var(--white); font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 34px;
  letter-spacing: -0.01em;
}

.contact { background: var(--bg); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact__list { list-style: none; margin-top: 40px; display: grid; gap: 26px; }
.contact__list li { display: flex; gap: 18px; align-items: flex-start; }
.contact__icon {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--cyan-soft); border: 1px solid var(--border);
}
.contact__list strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 2px; }
.contact__list a, .contact__list span:not(.contact__icon) { color: var(--muted); font-size: 15px; transition: color 0.3s; }
.contact__list a:hover { color: var(--cyan); }

.contact__form {
  padding: 40px 36px;
  background: linear-gradient(160deg, rgba(0, 46, 66, 0.8), rgba(0, 30, 48, 0.95));
  border: 1px solid var(--border); border-radius: 22px;
  display: grid; gap: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 18px 18px 8px; border-radius: 12px;
  background: rgba(0, 30, 48, 0.7); border: 1.5px solid var(--border);
  color: var(--white); font-family: var(--font); font-size: 15px; font-weight: 500;
  outline: none; resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 155, 198, 0.15);
}
.field label {
  position: absolute; left: 18px; top: 14px; color: var(--muted); font-size: 15px;
  pointer-events: none; transition: 0.25s var(--ease);
}
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label {
  top: 5px; font-size: 11px; color: var(--cyan); letter-spacing: 0.06em;
}

.footer { border-top: 1px solid var(--border); padding: 50px 0; background: var(--bg); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo { height: 30px; width: auto; opacity: 0.9; }
.footer__nav { display: flex; gap: 26px; }
.footer__nav a { color: var(--muted); font-size: 14px; font-weight: 600; transition: color 0.3s; }
.footer__nav a:hover { color: var(--cyan); }
.footer__copy { color: rgba(143, 176, 192, 0.6); font-size: 13px; }

@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 34px;
    background: rgba(0, 30, 48, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav__link { font-size: 26px; }
  .burger { display: block; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; grid-template-columns: 1fr; row-gap: 14px; }
  .service-card--wide h3, .service-card--wide p { grid-column: 1; }
  .process__steps { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__inner { flex-direction: column; text-align: center; }
}

body { transition: opacity 0.32s ease; }
body.page-leave { opacity: 0; }

.hero__typed {
  font-size: clamp(15px, 1.8vw, 18px); font-weight: 600;
  color: var(--muted); margin: -22px 0 38px;
}
.hero__typed #typedWord { color: var(--cyan); }
.typed-caret {
  display: inline-block; width: 2px; height: 1.05em;
  background: var(--red); margin-left: 3px; vertical-align: -0.15em;
  animation: caretBlink 0.85s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
body.is-loaded .hero__typed { animation-delay: 0.85s; }
body.is-loaded .hero__actions { animation-delay: 1s; }

.split-chars .word, .split-words .word { display: inline-block; }
.split-chars .char, .split-words .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.65em) rotate(5deg);
  transition: opacity 0.55s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--ci) * 24ms);
}
.split-words .char { transition-delay: calc(var(--ci) * 70ms); }
.split-chars.is-split-visible .char,
.split-words.is-split-visible .char { opacity: 1; transform: translateY(0) rotate(0); }

.hero__title em, .split-words em .char {
  background: linear-gradient(100deg, var(--cyan) 20%, #8fdcf2 40%, var(--cyan) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: -220% 0; } }

.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(150px, 22vh, 210px) 0 clamp(70px, 10vh, 110px);
  background: radial-gradient(120% 130% at 75% 0%, var(--bg-2) 0%, var(--bg) 65%);
}
.page-hero .hero__orb--1 { width: 380px; height: 380px; opacity: 0.35; }
.page-hero .hero__orb--2 { width: 280px; height: 280px; opacity: 0.2; }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title {
  font-size: clamp(38px, 6.4vw, 76px); font-weight: 700;
  color: var(--white); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 900px; margin: 16px 0 22px;
}
.page-hero__sub { max-width: 620px; color: var(--muted); font-size: clamp(16px, 2vw, 18px); }

.about-split {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-story p:not(.section__kicker) { color: var(--muted); margin-top: 18px; font-size: 16px; }
.about-story .section__title { margin-bottom: 10px; }
.about-visual {
  position: relative; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.about-visual__ring {
  position: absolute; inset: 6%;
  border: 1.5px dashed rgba(0, 155, 198, 0.35); border-radius: 50%;
  animation: spinSlow 26s linear infinite;
}
.about-visual__ring--2 {
  inset: 16%;
  border-color: rgba(249, 65, 68, 0.25);
  animation-direction: reverse; animation-duration: 34s;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.about-visual__card {
  position: relative; width: 62%; padding: 44px 34px;
  border-radius: 22px; text-align: center;
  background: linear-gradient(160deg, rgba(0, 58, 84, 0.9), rgba(0, 30, 48, 0.95));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: floatCard 6s ease-in-out infinite alternate;
}
@keyframes floatCard { from { transform: translateY(-8px); } to { transform: translateY(8px); } }
.about-visual__card img { width: 80%; margin: 0 auto 18px; }
.about-visual__card span {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 46px; }
.chip {
  padding: 11px 24px; border-radius: 99px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--muted); font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.chip:hover { border-color: var(--cyan); color: var(--white); transform: translateY(-2px); }
.chip.is-active { background: var(--cyan); border-color: var(--cyan); color: var(--bg); }

.blog-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--border);
  margin-bottom: 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s, opacity 0.3s;
}
.blog-featured:hover {
  transform: translateY(-6px); border-color: rgba(0, 155, 198, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.blog-featured .blog-card__media { height: 100%; min-height: 280px; }
.blog-featured__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.blog-featured__body h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); line-height: 1.2; }
.blog-featured__body > p { color: var(--muted); font-size: 15.5px; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), border-color 0.4s, box-shadow 0.45s,
              opacity 0.9s var(--ease);
}
.blog-card:hover {
  transform: translateY(-8px); border-color: rgba(0, 155, 198, 0.5);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}
.blog-card__media {
  height: 170px; display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 130% at 20% 15%, color-mix(in srgb, var(--hue1) 40%, transparent), transparent 60%),
    radial-gradient(120% 130% at 85% 90%, color-mix(in srgb, var(--hue1) 22%, transparent), transparent 55%),
    var(--hue2);
}
.blog-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.9s var(--ease);
}
.blog-card:hover .blog-card__media::after,
.blog-featured:hover .blog-card__media::after { transform: translateX(120%); }
.blog-card__media span { transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card__media span,
.blog-featured:hover .blog-card__media span { transform: scale(1.15) rotate(-5deg); }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; align-items: flex-start; }
.blog-card__body h3 { color: var(--white); font-size: 18.5px; line-height: 1.3; }
.blog-card__body > p { color: var(--muted); font-size: 14.5px; flex: 1; }
.blog-card__meta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.blog-tag { color: var(--cyan); }
.blog-card__link { color: var(--red); font-weight: 700; font-size: 14px; }
.blog-card__link i { font-style: normal; display: inline-block; transition: transform 0.3s var(--ease); }
.blog-card:hover .blog-card__link i,
.blog-featured:hover .blog-card__link i { transform: translateX(6px); }
.blog-card.is-fading, .blog-featured.is-fading {
  opacity: 0; transform: translateY(14px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.blog-card.is-hidden, .blog-featured.is-hidden { display: none; }

.contact-cards { padding-bottom: 0; }
.contact-cards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.contact-card {
  display: block; padding: 32px 26px;
  background: linear-gradient(160deg, rgba(0, 46, 66, 0.75), rgba(0, 30, 48, 0.9));
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.contact-card:hover { border-color: rgba(0, 155, 198, 0.5); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.contact-card h3 { color: var(--white); font-size: 18px; margin: 18px 0 4px; }
.contact-card p { color: var(--cyan); font-size: 15px; font-weight: 600; }
.contact-card__hint { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }
.contact__blurb { color: var(--muted); margin-top: 18px; max-width: 460px; }

.faq { max-width: 820px; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 16px;
  background: rgba(0, 46, 66, 0.45); overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq-item.is-open { border-color: rgba(0, 155, 198, 0.55); background: rgba(0, 46, 66, 0.75); }
.faq-item > button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  color: var(--white); font-family: var(--font); font-size: 16.5px; font-weight: 700;
}
.faq-item__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border); color: var(--cyan); font-size: 18px; font-weight: 500;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: var(--white); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item__body p { padding: 0 26px 22px; color: var(--muted); font-size: 15px; }

@media (max-width: 980px) {
  .about-split { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .blog-card__media { min-height: 200px; }
  .contact-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .contact-cards__grid { grid-template-columns: 1fr; }
}

.services__grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .services__grid--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid--four { grid-template-columns: 1fr; } }

.marquee--logos .marquee__track { gap: 26px; animation-duration: 55s; }
.logo-chip {
  flex-shrink: 0; height: 74px; padding: 15px 28px;
  background: rgba(255, 255, 255, 0.94); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.logo-chip:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35); }
.logo-chip img {
  height: 42px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1); opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-chip:hover img { filter: none; opacity: 1; }

.products { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 160%); }
.products__stack { display: grid; gap: 36px; }
.product-card {
  --pc: var(--cyan);
  position: sticky; top: calc(92px + var(--i) * 26px);
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #013049, #001724);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.product-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 85% 10%, color-mix(in srgb, var(--pc) 20%, transparent), transparent 65%);
}
.product-card__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pc); padding: 8px 16px; border-radius: 99px;
  border: 1px solid color-mix(in srgb, var(--pc) 45%, transparent);
  margin-bottom: 22px;
}
.product-card__new {
  font-style: normal; font-size: 11px; letter-spacing: 0.1em;
  background: var(--red); color: var(--white);
  padding: 3px 10px; border-radius: 99px;
  animation: newPulse 1.6s ease-in-out infinite;
}
@keyframes newPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 65, 68, 0.55); }
  60% { box-shadow: 0 0 0 9px rgba(249, 65, 68, 0); }
}
.product-card h3 {
  font-size: clamp(30px, 3.6vw, 46px); font-weight: 700;
  color: var(--white); letter-spacing: -0.015em; line-height: 1.05;
}
.product-card__tag { color: var(--pc); font-weight: 700; font-size: 17px; margin: 8px 0 16px; }
.product-card__desc { color: var(--muted); font-size: 15.5px; max-width: 480px; margin-bottom: 22px; }
.product-card__feats {
  list-style: none; display: grid; grid-template-columns: repeat(2, auto);
  gap: 10px 18px; margin-bottom: 30px; max-width: 440px;
}
.product-card__feats li {
  position: relative; padding-left: 26px;
  color: var(--text); font-size: 14.5px; font-weight: 600;
}
.product-card__feats li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  background: color-mix(in srgb, var(--pc) 22%, transparent); color: var(--pc);
}
.product-card__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 320px; border-radius: 18px; padding: 26px;
  background:
    radial-gradient(120% 130% at 25% 20%, color-mix(in srgb, var(--pc) 22%, transparent), transparent 60%),
    rgba(0, 30, 48, 0.55);
  border: 1px solid color-mix(in srgb, var(--pc) 22%, transparent);
}
.product-card__visual > img {
  max-width: 100%; max-height: 360px; object-fit: contain;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.mock-dash {
  width: min(380px, 100%); background: #fff; border-radius: 16px;
  padding: 18px 18px 22px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  animation: floatCard 7s ease-in-out infinite alternate;
}
.mock-dash__head { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-dash__head i { width: 10px; height: 10px; border-radius: 50%; }
.mock-dash__head i:nth-child(1) { background: #f94144; }
.mock-dash__head i:nth-child(2) { background: #ffd166; }
.mock-dash__head i:nth-child(3) { background: #2ec4a6; }
.mock-dash__kpis { display: flex; gap: 8px; }
.mock-kpi {
  flex: 1; border-radius: 10px; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 10.5px; font-weight: 600; color: #56707e;
}
.mock-kpi b { font-size: 17px; font-weight: 700; }
.mock-kpi--cyan { background: rgba(0, 155, 198, 0.12); } .mock-kpi--cyan b { color: #007ba0; }
.mock-kpi--red { background: rgba(249, 65, 68, 0.1); } .mock-kpi--red b { color: #d92b2e; }
.mock-kpi--navy { background: rgba(0, 46, 66, 0.08); } .mock-kpi--navy b { color: #002e42; }
.mock-dash__bars { display: flex; gap: 9px; align-items: flex-end; height: 110px; margin-top: 16px; }
.mock-dash__bars i {
  flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #009BC6, #00688a);
  transform: scaleY(0); transform-origin: bottom;
}
.product-card.is-visible .mock-dash__bars i {
  animation: barGrow 0.9s var(--ease) forwards;
  animation-delay: calc(0.3s + var(--bi) * 0.1s);
}
@keyframes barGrow { to { transform: scaleY(1); } }

.mock-brand {
  width: min(400px, 100%); background: #fff; border-radius: 16px;
  padding: 30px 26px; display: grid; gap: 20px; justify-items: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  animation: floatCard 7s ease-in-out infinite alternate;
}
.mock-brand > img { width: 100%; max-width: 320px; }
.mock-brand__swatches { display: flex; gap: 12px; }
.mock-brand__swatches i {
  width: 34px; height: 34px; border-radius: 50%;
  animation: swatchBreathe 2.4s ease-in-out infinite;
  animation-delay: calc(var(--si) * 0.2s);
}
@keyframes swatchBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}
.mock-brand__pill {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: #002e42; background: rgba(0, 46, 66, 0.07);
  padding: 8px 18px; border-radius: 99px;
}

.mock-hr { width: min(380px, 100%); display: grid; gap: 12px; }
.mock-hr__row, .mock-hr__ring {
  background: #fff; border-radius: 14px; padding: 13px 16px;
  display: flex; align-items: center; gap: 13px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  animation: hrFloat 5s ease-in-out infinite alternate;
  animation-delay: calc(var(--ri) * -1.2s);
}
@keyframes hrFloat { from { transform: translateY(-4px); } to { transform: translateY(4px); } }
.mock-hr__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; background: rgba(46, 196, 166, 0.14);
}
.mock-hr__bar { flex: 1; display: grid; gap: 6px; }
.mock-hr__bar b { height: 9px; width: 70%; border-radius: 99px; background: #cfdce3; }
.mock-hr__bar i { height: 7px; width: 45%; border-radius: 99px; background: #e6eef2; }
.mock-hr__status {
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 99px; flex-shrink: 0;
}
.mock-hr__status--in { background: rgba(46, 196, 166, 0.16); color: #148f75; }
.mock-hr__status--out { background: rgba(255, 209, 102, 0.25); color: #a97e0c; }
.mock-hr__donut {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(#2ec4a6 0 98%, #e6eef2 98% 100%);
  -webkit-mask: radial-gradient(circle at center, transparent 55%, #000 56%);
  mask: radial-gradient(circle at center, transparent 55%, #000 56%);
  animation: spinSlow 14s linear infinite;
}
.mock-hr__ringlabel { display: grid; gap: 2px; font-size: 12px; font-weight: 600; color: #56707e; }
.mock-hr__ringlabel b { font-size: 20px; font-weight: 700; color: #002e42; }

.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 96;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float svg { width: 34px; height: 34px; fill: #fff; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: waPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.85); opacity: 0; }
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 16px 44px rgba(37, 211, 102, 0.55); }
.wa-float__tip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px);
  white-space: nowrap; font-size: 13px; font-weight: 700; color: var(--white);
  background: rgba(0, 30, 48, 0.95); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.wa-float:hover .wa-float__tip { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 980px) {
  .product-card { grid-template-columns: 1fr; top: calc(80px + var(--i) * 16px); }
  .product-card__visual { min-height: 260px; }
}
@media (max-width: 640px) {
  .product-card__feats { grid-template-columns: 1fr; }
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .wa-float svg { width: 30px; height: 30px; }
  .wa-float__tip { display: none; }
  .logo-chip { height: 62px; padding: 12px 20px; }
  .logo-chip img { height: 34px; max-width: 130px; }
}

.page-hero .hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.fill-text {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700; line-height: 1.45; letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.14);
  max-width: 900px;
}
.fill-text .fword { transition: color 0.3s ease, text-shadow 0.3s ease; }
.fill-text .fword.lit { color: var(--white); }
.fill-text em .fword.lit, .fill-text .fword.lit em { color: var(--cyan); text-shadow: 0 0 24px rgba(0, 155, 198, 0.45); }
.quote-section { padding-block: clamp(50px, 8vh, 90px); }

.blog-grid .blog-card.reveal:nth-child(3n + 1):not(.is-visible) { transform: translate(-46px, 28px) rotate(-1.5deg); }
.blog-grid .blog-card.reveal:nth-child(3n + 2):not(.is-visible) { transform: translateY(64px) scale(0.93); }
.blog-grid .blog-card.reveal:nth-child(3n):not(.is-visible) { transform: translate(46px, 28px) rotate(1.5deg); }
.blog-featured.reveal:not(.is-visible) { transform: translateY(50px) scale(0.97); }
.values__grid .service-card.reveal:nth-child(odd):not(.is-visible) { transform: translate(-48px, 22px); }
.values__grid .service-card.reveal:nth-child(even):not(.is-visible) { transform: translate(48px, 22px); }
.contact-cards__grid .contact-card.reveal:not(.is-visible) { transform: translateY(44px) scale(0.9); }
.faq .faq-item.reveal:nth-child(odd):not(.is-visible) { transform: translateX(-40px); }
.faq .faq-item.reveal:nth-child(even):not(.is-visible) { transform: translateX(40px); }

.chip.pop { animation: chipPop 0.35s var(--ease); }
@keyframes chipPop { 50% { transform: scale(1.14); } }

.blog-card__media > span { animation: emojiBob 3.6s ease-in-out infinite alternate; }
@keyframes emojiBob { from { translate: 0 -6px; } to { translate: 0 6px; } }

.blog-featured { position: relative; }
.blog-ribbon {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  padding: 8px 16px; border-radius: 99px;
  box-shadow: 0 10px 26px rgba(249, 65, 68, 0.45);
  animation: ribbonFloat 2.8s ease-in-out infinite alternate;
}
@keyframes ribbonFloat { from { translate: 0 0; } to { translate: 0 -6px; } }

.about-visual__ring::after {
  content: ""; position: absolute; top: -7px; left: calc(50% - 7px);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 16px var(--cyan);
}
.about-visual__ring--2::after {
  width: 11px; height: 11px; top: -6px;
  background: var(--red); box-shadow: 0 0 16px var(--red);
}

.contact-card:hover .service-card__icon { animation: wiggle 0.5s var(--ease); }
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg) scale(1.06); }
  55% { transform: rotate(8deg) scale(1.06); }
  80% { transform: rotate(-3deg); }
}

.contact-card .service-card__icon { position: relative; }
.contact-cards__grid .contact-card:nth-child(3) .service-card__icon::after,
.contact-cards__grid .contact-card:nth-child(4) .service-card__icon::after {
  content: ""; position: absolute; inset: 0; border-radius: 16px;
  border: 2px solid rgba(249, 65, 68, 0.55);
  animation: radarPing 2.2s ease-out infinite;
}
.contact-cards__grid .contact-card:nth-child(4) .service-card__icon::after { animation-delay: 1.1s; }
@keyframes radarPing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.75); opacity: 0; }
}

.post-hero { padding-bottom: 30px; }
.post-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-weight: 700; font-size: 14px;
  margin-bottom: 26px; transition: color 0.3s;
}
.post-back i { font-style: normal; transition: transform 0.3s var(--ease); }
.post-back:hover { color: var(--cyan); }
.post-back:hover i { transform: translateX(-5px); }
.post-hero__meta { margin-bottom: 6px; }
.post-hero__title { max-width: 980px; }
.post-author {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 14.5px; margin-top: 26px;
}
.post-author b { color: var(--white); }
.post-author__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.post-author__avatar img { width: 70%; }

.post-cover { position: relative; z-index: 2; }
.post-cover__media {
  height: clamp(220px, 36vw, 420px); border-radius: 24px;
  font-size: clamp(64px, 10vw, 120px);
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.post-body-wrap { padding-top: clamp(50px, 7vh, 80px); }
.post-layout {
  display: grid; grid-template-columns: minmax(0, 760px) auto;
  gap: clamp(30px, 5vw, 80px); justify-content: start;
}
.post-body { font-size: 17px; line-height: 1.85; color: var(--text); }
.post-body > * + * { margin-top: 22px; }
.post-body h2 {
  color: var(--white); font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25; margin-top: 44px; position: relative; padding-left: 22px;
}
.post-body h2::before {
  content: ""; position: absolute; left: 0; top: 0.18em; bottom: 0.18em;
  width: 5px; border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--red));
}
.post-body p b, .post-body li b { color: var(--white); }
.post-body a { color: var(--cyan); font-weight: 700; border-bottom: 1.5px solid rgba(0, 155, 198, 0.4); transition: border-color 0.3s, color 0.3s; }
.post-body a:hover { color: var(--white); border-color: var(--red); }
.post-body ul { padding-left: 4px; display: grid; gap: 12px; list-style: none; }
.post-body ul li { position: relative; padding-left: 30px; }
.post-body ul li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--red); font-weight: 700;
}
.post-body blockquote.fill-text {
  margin: 44px 0; padding-left: 26px;
  border-left: 4px solid var(--cyan);
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.5;
}
.post-callout {
  margin-top: 40px; padding: 24px 26px; border-radius: 16px;
  background: rgba(0, 155, 198, 0.08);
  border: 1px solid var(--border);
  font-size: 15.5px;
}
.post-callout b { color: var(--white); }

.post-body > p:first-child::first-letter {
  font-size: 3.4em; font-weight: 700; float: left;
  line-height: 0.85; padding: 4px 12px 0 0;
  color: var(--cyan);
}

.post-share {
  position: sticky; top: 120px; align-self: start;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.post-share__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.share-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.share-btn svg { width: 20px; height: 20px; fill: var(--muted); transition: fill 0.3s; }
.share-btn:hover { background: var(--cyan); border-color: var(--cyan); }
.share-btn:hover svg { fill: var(--bg); }
.share-btn__done {
  position: absolute; inset: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #2ec4a6; color: #fff; font-weight: 700;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.share-btn.is-copied .share-btn__done { opacity: 1; transform: scale(1); }

@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-share {
    position: static; flex-direction: row; justify-content: center;
    padding-top: 34px; border-top: 1px solid var(--border);
  }
  .post-share__label { margin: 0 10px 0 0; }
}

.work-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}
.work-card:hover .work-card__media img { transform: scale(1.07); }
.work-card__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 23, 36, 0.55) 100%);
}
.work-card__media::after { z-index: 2; }
.work-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.work-card__tags span {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--cyan); padding: 5px 12px; border-radius: 99px;
  border: 1px solid var(--border); background: rgba(0, 155, 198, 0.07);
}
.work-card__visit {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--red);
  transition: color 0.3s;
}
.work-card__visit i { font-style: normal; display: inline-block; transition: transform 0.3s var(--ease); }
.work-card__visit:hover { color: var(--white); }
.work-card__visit:hover i { transform: translate(3px, -3px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-line { opacity: 1 !important; transform: none !important; }
  .split-chars .char, .split-words .char { opacity: 1 !important; transform: none !important; }
  .fill-text { color: var(--white); }
}
