:root {
  --text: #1a4fb6;
  --muted: #5c78b3;
  --text-soft: #2f67ca;
  --line: rgba(0, 0, 0, 0.1);
  --accent: #2859c8;
  --accent-2: #ff6b78;
  --accent-3: #ff6b78;
  --accent-soft: #eef4ff;
  --accent-warm-soft: #fff2f4;
  --surface: rgba(255, 255, 255, 0.96);
  --shadow: 0 8px 24px rgba(30, 63, 133, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 100%;
  --page-padding: clamp(1.25rem, 3vw, 2.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

body::before {
  content: none;
}

.page-aura {
  display: none;
}

.site-shell {
  width: 80%;
  max-width: 1280px;
  padding-inline: 0;
  margin: 0 auto;
}

.nav {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0 0.65rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brand-logo {
  display: block;
  width: 127px;
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(40, 89, 200, 0.07);
  box-shadow: none;
}

.nav-links a.is-active {
  position: relative;
  background: rgba(40, 89, 200, 0.07);
  border: none;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero,
.page-hero {
  padding: 0.15rem 0 2.25rem;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  margin-top: 0.2rem;
  padding: 0.6rem 1rem;
  border-top: 1px solid rgba(40, 89, 200, 0.14);
  border-bottom: 1px solid rgba(255, 107, 120, 0.14);
  background: linear-gradient(90deg, rgba(238, 244, 255, 0.95), rgba(255, 242, 244, 0.96));
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.announcement-bar span {
  max-width: 72ch;
}

.hero-grid,
.page-hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-grid {
  min-height: clamp(32rem, 72vh, 44rem);
  padding: 0.15rem 0 0.35rem;
}

.page-hero {
  padding-top: 2.25rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.chip-pulse {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(255, 107, 120, 0.4);
  animation: pulse 2.3s infinite;
}

.eyebrow,
.feature-topline,
.page-link-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.page-title {
  max-width: 12ch;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
}

.section-title-sm {
  font-size: clamp(1.35rem, 2.35vw, 2rem);
}

h3 {
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
}

.hero-text,
.section-heading p,
.feature-card p,
.detail-card p,
.stack-panel p,
.media-story-copy p,
.cta-copy p,
.footer p,
.form-note,
label,
.page-link-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 60ch;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 40px rgba(40, 89, 200, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(40, 89, 200, 0.14);
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(20, 32, 51, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 244, 255, 0.88));
}

.hero-band strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.band-label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.98));
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-visual,
.page-hero-visual {
  position: relative;
}

.visual-card,
.page-hero-visual,
.media-story,
.detail-card,
.feature-card,
.page-link-card,
.contact-card,
.stack-panel {
  border-radius: var(--radius-xl);
}

.visual-card,
.page-hero-visual {
  padding: 0.95rem;
}

.visual-card,
.page-hero-visual,
.media-story,
.split-media figure {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visual-card::before,
.page-hero-visual::before,
.media-story::before,
.split-media figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(40, 89, 200, 0.24), transparent 0 28%),
    radial-gradient(circle at 82% 14%, rgba(255, 107, 120, 0.18), transparent 0 24%),
    linear-gradient(180deg, rgba(8, 13, 20, 0.02), rgba(8, 13, 20, 0.4));
  z-index: 1;
  pointer-events: none;
}

.visual-card::after,
.page-hero-visual::after,
.media-story::after,
.split-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 16%, rgba(255, 255, 255, 0.12) 50%, transparent 82%);
  mix-blend-mode: screen;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.visual-card > img,
.page-hero-visual > img,
.media-story > img,
.split-media figure > img {
  position: relative;
  z-index: 0;
}

.visual-card img,
.page-hero-visual img,
.media-story img,
.split-media figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px);
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.14) contrast(1.08) brightness(0.92);
  transition: transform 400ms ease, filter 400ms ease;
}

.visual-card img,
.page-hero-visual img {
  aspect-ratio: 16 / 8.2;
}

.media-story img,
.split-media figure img {
  aspect-ratio: 16 / 10;
}

.service-showcase-media img,
.platform-showcase-media img {
  aspect-ratio: 16 / 9;
}

.floating-stat {
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.floating-stat span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-stat strong {
  font-size: 1.7rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.logo-strip,
.section,
.footer {
  padding: 2rem 0 2.75rem;
}

.logo-strip {
  border-top: 1px solid rgba(20, 32, 51, 0.08);
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.logo-strip p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.logo-row span {
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
}

.section-heading {
  max-width: 72rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.15rem;
}

.feature-card,
.detail-card,
.page-link-card {
  min-height: 13.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(20, 32, 51, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92));
}

.feature-card-large {
  min-height: auto;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 120, 0.12), transparent 0 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.92));
}

.feature-card h3,
.detail-card h3,
.page-link-card h3,
.media-story-copy h3 {
  margin-bottom: 0.85rem;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.feature-list li + li {
  margin-top: 0.35rem;
}

.media-story-grid,
.detail-grid,
.page-link-grid {
  display: grid;
  gap: 1rem;
}

.media-story-grid,
.page-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.page-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-story {
  overflow: hidden;
  padding: 0.85rem;
  min-height: 100%;
}

.service-showcase,
.platform-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
  padding: 0.85rem;
}

.service-showcase-copy,
.platform-showcase-copy {
  padding: 0.85rem 0.45rem 0.85rem 0.1rem;
}

.service-showcase-copy h2,
.platform-showcase-copy h2 {
  margin-bottom: 0.9rem;
}

.service-showcase-media,
.platform-showcase-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
}

.service-showcase-media img,
.platform-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.08) brightness(0.94);
}

.media-story-copy {
  padding: 0.85rem 0.3rem 0.15rem;
  position: relative;
  z-index: 2;
}

.visual-card:hover img,
.page-hero-visual:hover img,
.media-story:hover img,
.split-media figure:hover img {
  transform: scale(1.08);
  filter: saturate(1.18) contrast(1.1) brightness(0.95);
}

.image-badge {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(20, 32, 51, 0.1);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 242, 244, 0.98));
  backdrop-filter: blur(16px);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    0 16px 36px rgba(40, 89, 200, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.image-badge-top {
  top: 1.5rem;
  left: 1.5rem;
}

.image-badge-bottom {
  right: 1.5rem;
  bottom: 1.5rem;
}

.split-media,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.split-media-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-media figure {
  margin: 0;
  padding: 0.85rem;
}

.stack-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.1rem;
}

.stack-panel article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.stack-panel span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent-3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-address,
.footer-address {
  margin: 0;
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}

.contact-address {
  padding-top: 0.25rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #7c8ea5;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(40, 89, 200, 0.2);
  border-color: rgba(255, 107, 120, 0.42);
}

.form-note {
  margin: 0;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(20, 32, 51, 0.08);
  padding-top: 1.5rem;
}

.footer-meta {
  max-width: 34rem;
}

.footer-logo {
  display: block;
  width: 127px;
  height: 48px;
  margin-bottom: 0.85rem;
}

.footer-meta p {
  margin: 0 0 0.75rem;
}

.footer-legal {
  padding-top: 0.25rem;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 120, 0.38);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 107, 120, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(125, 249, 207, 0);
  }
}

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

  .chip-pulse,
  .reveal,
  .button {
    animation: none;
    transition: none;
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .page-hero,
  .overview-grid,
  .media-story-grid,
  .media-story-grid-wide,
  .detail-grid,
  .page-link-grid,
  .split-media,
  .contact-layout,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .stack-panel {
    grid-template-columns: 1fr;
  }

  .service-showcase,
  .platform-showcase {
    grid-template-columns: 1fr;
  }

  .floating-stat {
    position: static;
    margin-top: 0.85rem;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 2rem);
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
  }

  .nav-links a {
    width: auto;
    justify-content: flex-start;
    padding-left: 0.8rem;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 0.2rem;
  }

  .hero-band {
    grid-template-columns: 1fr;
  }

  .logo-strip,
  .section,
  .footer {
    padding: 1.6rem 0 2.1rem;
  }
}
