/* ==========================================================================
   XORA SOLUTION
   Brand guide: #2ECC71 · #00034E · #CDD3E2
   Type: Surgena (display) + Pogonia (body/UI)
   ========================================================================== */

:root {
  --green: #2ecc71;
  --green-deep: #22b85d;
  --blue: #1a6cff;
  --cyan: #2ec4ff;
  --navy: #00034e;
  --mist: #cdd3e2;
  --mist-2: #e8ecf5;
  --white: #f8fafc;
  --surface: #ffffff;
  --text: #00034e;
  --text-soft: rgba(0, 3, 78, 0.7);
  --line: rgba(0, 3, 78, 0.12);
  --font-display: "Surgena", "Pogonia", system-ui, sans-serif;
  --font-body: "Pogonia", system-ui, sans-serif;
  --container: min(1160px, calc(100% - 2.5rem));
  --header-h: 4.75rem;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(0, 3, 78, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.nav-open {
  overflow: hidden;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 380px at 0% -5%, rgba(46, 204, 113, 0.14), transparent 55%),
    radial-gradient(800px 360px at 100% 0%, rgba(46, 196, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--mist-2) 0%, var(--white) 35%, var(--mist) 100%);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: var(--navy); padding: 0.75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.container { width: var(--container); margin-inline: auto; }

/* Brand — official Color logo.svg from brand pack */
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand__logo {
  height: 46px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.custom-logo-link img { max-height: 46px; width: auto; }
.contact-location {
  display: grid;
  gap: 0.15rem;
  margin: 0.35rem 0 1rem;
  color: var(--text-soft);
  line-height: 1.45;
  font-weight: 600;
}
.contact-location strong {
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.contact-location span { display: block; }

/* Header — overlay / overflow on hero */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-nav-open {
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 3, 78, 0.06);
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.site-header__inner {
  width: var(--container); margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list {
  display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -0.35rem;
  width: 100%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-list a:hover,
.nav-list .current-menu-item > a { color: var(--navy); }
.nav-list a:hover::after,
.nav-list .current-menu-item > a::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 3, 78, 0.14);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.site-header.is-scrolled .nav-toggle,
.site-header.is-nav-open .nav-toggle {
  background: var(--surface);
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
}
.nav-toggle__bars span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0.75rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--green); background: linear-gradient(135deg, var(--green), #7dff9a);
  color: var(--navy); font-weight: 700; letter-spacing: 0.04em;
  font-family: var(--font-body); text-transform: uppercase; font-size: 0.86rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 12px 28px rgba(46, 204, 113, 0.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(46, 204, 113, 0.36); }
.btn--ghost {
  background: transparent; color: var(--navy);
  border-color: rgba(0, 3, 78, 0.18); box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--green); background: rgba(46, 204, 113, 0.1); box-shadow: none;
}
.btn--small { min-height: 2.45rem; padding: 0.45rem 1.05rem; font-size: 0.78rem; }

/* Hero — full banner, text left / image right */
.hero--split {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 18%, rgba(46, 204, 113, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(46, 196, 255, 0.12), transparent 50%),
    linear-gradient(165deg, #f8fafc 0%, #eef2f8 48%, #e6ebf4 100%);
  border-bottom: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding:
    calc(var(--header-h) + clamp(2rem, 5vh, 3.25rem))
    0
    clamp(2.25rem, 5vh, 3.5rem);
  width: var(--container);
}
.hero__content { max-width: 32rem; }
.hero__kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 600;
  max-width: 13ch;
}
.hero__text {
  margin: 1.35rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 38ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero__points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}
.hero__points li {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  padding-left: 1.1rem;
  position: relative;
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}
.hero__visual {
  position: relative;
  width: 100%;
}
.hero__photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #e8eef6;
  box-shadow: 0 30px 64px rgba(0, 3, 78, 0.16);
  position: relative;
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 3, 78, 0.06), transparent 42%);
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  /* Keep hero crisp — avoid scale transforms that soften photos */
  transform: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Static platform bar — text only, no icons / no slider */
.platform-bar {
  border-block: 1px solid rgba(0, 3, 78, 0.08);
  background: rgba(255, 255, 255, 0.78);
}
.platform-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1.15rem 0;
}
.platform-bar__inner span {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

/* Page hero */
.page-hero {
  padding:
    calc(var(--header-h) + clamp(2.4rem, 6vw, 4rem))
    0
    clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(46, 204, 113, 0.16), transparent 60%),
    radial-gradient(500px 220px at 100% 0%, rgba(46, 196, 255, 0.12), transparent 55%),
    var(--mist-2);
}
.page-hero--compact {
  padding:
    calc(var(--header-h) + clamp(1.6rem, 4vw, 2.5rem))
    0
    1.75rem;
}
.page-hero__title {
  margin: 0.35rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 600;
}
.page-hero__text { margin: 0; max-width: 40rem; color: var(--text-soft); }

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
}

/* Sections */
.section { padding: clamp(3.2rem, 7vw, 5.8rem) 0; }
.section__title {
  margin: 0.45rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
  font-weight: 600;
}
.section__lead { margin: 0; color: var(--text-soft); max-width: 36rem; }
.section__head { margin-bottom: 2.2rem; max-width: 40rem; }
.section__cta { margin-top: 2.2rem; }

.platform-grid,
.work-grid,
.package-grid,
.value-grid { display: grid; gap: 1.15rem; }
.platform-grid,
.work-grid { grid-template-columns: repeat(2, 1fr); }
.package-grid,
.value-grid { grid-template-columns: repeat(3, 1fr); }

.platform-card,
.work-item,
.package,
.value,
.contact-form,
.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.platform-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.work-item__media { aspect-ratio: 16 / 11; overflow: hidden; }
.platform-card__media img,
.work-item__media img,
.service-row__media img,
.about-media img,
.support-band__media img,
.contact-aside > img,
.showcase__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.platform-card:hover img,
.work-item:hover img { transform: scale(1.045); }

.platform-card__body,
.work-item__meta,
.package { padding: 1.25rem 1.3rem 1.45rem; }
.platform-card h3,
.work-item h2,
.work-item h3,
.package__name,
.service-row__body h2,
.about-copy h2,
.value h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
}
.platform-card p,
.work-item p,
.package__desc,
.service-row__body > p,
.about-copy p,
.value p { margin: 0; color: var(--text-soft); }
.work-item__tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 700;
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(46, 204, 113, 0.14), transparent 60%),
    radial-gradient(420px 200px at 100% 100%, rgba(46, 196, 255, 0.1), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}

/* Support band — image flush to card edge (no white gaps) */
.support-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(46, 204, 113, 0.14), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
}
.support-band__copy {
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.support-band__copy .section__title {
  margin-top: 0.55rem;
  max-width: 14ch;
}
.support-band__copy .section__lead {
  margin-top: 1.15rem;
  max-width: 34ch;
  line-height: 1.75;
}
.support-band__copy .btn {
  margin-top: 1.65rem;
  align-self: flex-start;
}
.support-band__media {
  margin: 0;
  border-radius: 0;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: none;
  background: #0b1220;
}
.support-band__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CTA band — compact professional strip */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(46, 204, 113, 0.14), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
}
.cta-band__copy {
  flex: 1 1 18rem;
  max-width: 40rem;
}
.cta-band .eyebrow {
  margin: 0 0 0.45rem;
}
.cta-band .section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  max-width: 22ch;
}
.cta-band .section__lead {
  margin: 0;
  max-width: 46ch;
  line-height: 1.65;
}
.cta-band .btn {
  margin: 0;
  flex: 0 0 auto;
  width: auto;
  min-width: 12.5rem;
}

.showcase__media {
  display: grid;
  gap: 0.85rem;
}
.showcase__media img {
  border-radius: 12px;
  min-height: 160px;
  box-shadow: var(--shadow);
}
.section--showcase { padding-top: 0; }

/* Services */
.stack-lg { display: grid; gap: 2.5rem; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center;
}
.service-row--reverse .service-row__media { order: 2; }
.service-row__media {
  border-radius: var(--radius); min-height: 300px; overflow: hidden; box-shadow: var(--shadow);
}
.service-row__body ul,
.check-list {
  margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.45rem;
}
.service-row__body li,
.check-list li {
  position: relative; padding-left: 1.35rem; color: var(--text-soft);
}
.service-row__body li::before,
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.package { display: flex; flex-direction: column; gap: 0.7rem; min-height: 100%; }
.package__price { margin: 0; color: var(--green-deep); font-weight: 800; font-size: 1.15rem; }
.package ul { margin: 0.25rem 0 0.75rem; padding-left: 1.1rem; color: var(--text-soft); flex: 1; }
.package .btn { align-self: flex-start; }

/* About / contact */
.about-grid,
.contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start;
}
.about-media {
  display: grid; gap: 0.85rem;
}
.about-media img {
  border-radius: var(--radius); box-shadow: var(--shadow); min-height: 240px;
}
.about-media__secondary { min-height: 180px !important; }
.value { padding: 1.4rem; }
.value__dot {
  display: inline-block; width: 0.75rem; height: 0.75rem; border-radius: 50%;
  background: var(--navy); margin-bottom: 0.75rem;
}
.value__dot--green { background: linear-gradient(135deg, var(--cyan), var(--green)); }

.contact-aside__info { margin-top: 1.25rem; }
.contact-email {
  display: inline-block; margin: 0.4rem 0 1rem;
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy); font-weight: 700;
}
.contact-form { padding: 1.45rem; display: grid; gap: 0.95rem; }
.contact-form label { display: grid; gap: 0.35rem; }
.contact-form span {
  font-family: var(--font-display); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--text-soft);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 0.85rem 0.95rem; border: 1px solid var(--line);
  border-radius: 12px; background: var(--mist-2);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(46, 204, 113, 0.4);
  border-color: var(--green); background: var(--surface);
}
.form-success,
.form-error { padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.form-success { background: rgba(46, 204, 113, 0.15); border: 1px solid rgba(46, 204, 113, 0.4); color: var(--navy); }
.form-error { background: rgba(0, 3, 78, 0.06); border: 1px solid rgba(0, 3, 78, 0.18); }

.section--cta {
  padding-top: clamp(1.5rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section--packages { background: linear-gradient(180deg, transparent, rgba(205, 211, 226, 0.55)); }

/* Footer — IT services style */
.site-footer {
  border-top: none;
  padding: clamp(3.5rem, 7vw, 5rem) 0 1.5rem;
  background:
    radial-gradient(ellipse 55% 45% at 8% 0%, rgba(46, 204, 113, 0.14), transparent 55%),
    linear-gradient(180deg, #00034e 0%, #000230 100%);
  color: #fff;
}
.site-footer a { color: inherit; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.15fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 2.4rem;
  align-items: start;
}
.site-footer__brand .brand__logo {
  height: 42px;
  max-width: 170px;
  filter: none;
}
.site-footer__brand p {
  margin: 1.1rem 0 0;
  color: rgba(205, 211, 226, 0.88);
  max-width: 28rem;
  font-weight: 400;
  line-height: 1.7;
}
.footer-mail {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(46, 204, 113, 0.55);
}
.footer-mail:hover { color: var(--green); }
.site-footer__label {
  margin: 0.2rem 0 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(205, 211, 226, 0.9);
  font-weight: 400;
}
.footer-links a:hover { color: #fff; }
.footer-address {
  display: grid;
  gap: 0.15rem;
  color: rgba(205, 211, 226, 0.9);
  font-weight: 400;
  line-height: 1.45;
}
.footer-address span { display: block; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(205, 211, 226, 0.18);
  color: rgba(205, 211, 226, 0.7);
  font-size: 0.88rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom-note { color: rgba(205, 211, 226, 0.85); }

.prose { max-width: 44rem; }
.prose p { color: var(--text-soft); }
.stack { display: grid; gap: 1rem; }
.content-card { padding: 1.2rem; }
.content-card h2 { margin: 0 0 0.4rem; font-family: var(--font-display); }

/* Reveal only hides when JS is active — prevents blank/broken pages */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Soft professional motion */
.platform-card,
.work-item,
.package,
.support-band {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.platform-card:hover,
.work-item:hover,
.package:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 3, 78, 0.12);
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.hero__title {
  animation: none;
}
html.js .hero .reveal.is-in:nth-child(1) { transition-delay: 0.05s; }
html.js .hero .reveal.is-in:nth-child(2) { transition-delay: 0.12s; }
html.js .hero .reveal.is-in:nth-child(3) { transition-delay: 0.2s; }
html.js .hero .reveal.is-in:nth-child(4) { transition-delay: 0.28s; }
html.js .hero .reveal.is-in:nth-child(5) { transition-delay: 0.36s; }
html.js .platform-card.reveal.is-in:nth-child(1) { transition-delay: 0.05s; }
html.js .platform-card.reveal.is-in:nth-child(2) { transition-delay: 0.12s; }
html.js .platform-card.reveal.is-in:nth-child(3) { transition-delay: 0.19s; }
html.js .platform-card.reveal.is-in:nth-child(4) { transition-delay: 0.26s; }
html.js .work-item.reveal.is-in:nth-child(1) { transition-delay: 0.05s; }
html.js .work-item.reveal.is-in:nth-child(2) { transition-delay: 0.12s; }
html.js .work-item.reveal.is-in:nth-child(3) { transition-delay: 0.19s; }
html.js .work-item.reveal.is-in:nth-child(4) { transition-delay: 0.26s; }

html.js .support-band.reveal {
  transform: translateY(28px);
}
html.js .support-band.reveal.is-in {
  transform: none;
}
html.js .platform-bar {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .platform-bar.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  :root { --container: min(1160px, calc(100% - 1.5rem)); }
  .hero__grid,
  .platform-grid,
  .work-grid,
  .package-grid,
  .value-grid,
  .service-row,
  .showcase,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .support-band { grid-template-columns: 1fr; }
  .support-band__copy { padding: 1.6rem 1.25rem 1.4rem; }
  .support-band__media { min-height: 220px; order: -1; }
  .support-band__media img {
    min-height: 220px;
    max-height: 280px;
    object-position: center 30%;
  }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .service-row--reverse .service-row__media { order: 0; }
  .hero--split { min-height: auto; }
  .hero__grid {
    gap: 1.5rem;
    padding:
      calc(var(--header-h) + 1.5rem)
      0
      1.75rem;
  }
  .hero__photo {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }
  .hero__photo img { object-position: center 35%; }
  .hero__title {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }
  .hero__text { max-width: none; }
  .hero__actions { margin-top: 1.4rem; }
  .hero__actions .btn { width: 100%; }
  .platform-bar__inner {
    justify-content: center;
    text-align: center;
    gap: 0.7rem 1rem;
    padding: 1rem 0;
  }
  .platform-bar__inner span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
  .section { padding: clamp(2.4rem, 8vw, 4rem) 0; }
  .section__title { font-size: clamp(1.55rem, 6.5vw, 2.2rem); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(248, 250, 252, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .admin-bar .site-nav { top: calc(var(--header-h) + 32px); }
  .site-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; gap: 0.85rem; }
  .site-nav .btn { width: 100%; }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.35rem 1.2rem;
  }
  .cta-band .btn { width: 100%; }
  .site-footer__grid { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .platform-grid,
  .work-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .brand__logo { height: 40px; max-width: 150px; }
  .hero__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  html.js .reveal,
  html.js .platform-bar,
  html.js .hero__photo.is-in img,
  .hero__media img,
  .btn,
  .btn::after,
  .platform-card,
  .work-item,
  .package,
  .platform-card img,
  .work-item img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
