:root {
  --red: #c41e3a;
  --red-dark: #97142c;
  --red-soft: rgba(196, 30, 58, 0.14);
  --navy: #0d2137;
  --navy-2: #122c47;
  --navy-3: #183a5d;
  --green: #2d6a4f;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --line: rgba(13, 33, 55, 0.08);
  --text: #162030;
  --muted: #5d6779;
  --shadow-sm: 0 10px 30px rgba(13, 33, 55, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 33, 55, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --font: 'Poppins', sans-serif;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100%;
  background: #ffffff;
}

body {
  font-family: var(--font);
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

.site-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: transparent;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero,
section.hero {
  position: relative;
  padding: 48px 0 24px;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.hero--coming-soon {
  min-height: auto;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__grid--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero__content--single {
  width: 100%;
  max-width: 760px;
  text-align: center;
  overflow: hidden;
}

.hero__brand {
  margin: 0 auto 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.hero__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(196, 30, 58, 0.18);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero__eyebrow,
.section-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--red);
}

.hero__title {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.03;
  color: var(--navy);
}

.hero__title span {
  color: var(--red);
}

.hero__slider {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  color: var(--navy);
}

.hero__slider-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.hero__slider-window {
  position: relative;
  height: 34px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}

.hero__slider-track {
  position: relative;
  height: 34px;
}

.hero__slider-track span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0 8px;
  opacity: 0;
  animation: heroWordFade 16s ease-in-out infinite;
}

.hero__slider-track span:nth-child(1) { animation-delay: 0s; }
.hero__slider-track span:nth-child(2) { animation-delay: 4s; }
.hero__slider-track span:nth-child(3) { animation-delay: 8s; }
.hero__slider-track span:nth-child(4) { animation-delay: 12s; }

.hero__desc,
.section-subtitle,
.about__text,
.story-panel p,
.solution-card p,
.cta__box p,
.footer p {
  color: var(--muted);
  line-height: 1.8;
}

.hero__desc {
  margin-top: 22px;
  max-width: 620px;
  font-size: 1.05rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__contact {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--navy);
}

.hero__contact a {
  font-weight: 600;
  color: var(--red);
}

.hero__contact a:hover {
  text-decoration: underline;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 0;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: none;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(196, 30, 58, 0.22);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--outline,
.btn--ghost {
  border-color: rgba(13, 33, 55, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero__metrics article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero__metrics strong {
  display: block;
  font-size: 1.4rem;
  color: var(--navy);
}

.hero__metrics span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 44, 71, 0.96), rgba(10, 26, 42, 1));
  box-shadow: var(--shadow-lg);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card--main {
  padding: 24px;
  height: 100%;
}

.hero-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.hero-card__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.8);
}

.hero-card__body {
  display: grid;
  place-items: center;
  min-height: 470px;
}

.hero-orbit {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-orbit__center {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #ffffff 0%, #f0f4f9 100%);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.05);
  z-index: 3;
}

.hero-orbit__ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
}

.hero-orbit__ring--one {
  width: 220px;
  height: 220px;
  animation: spinSlow 18s linear infinite;
}

.hero-orbit__ring--two {
  width: 310px;
  height: 310px;
  animation: spinSlow 24s linear infinite reverse;
}

.hero-orbit__node {
  position: absolute;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.hero-orbit__node--one {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-orbit__node--two {
  left: 16px;
  bottom: 82px;
}

.hero-orbit__node--three {
  right: 16px;
  bottom: 82px;
}

.hero-floating {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-floating--one {
  top: 90px;
  left: -20px;
  animation: floatY 6s ease-in-out infinite;
}

.hero-floating--two {
  right: -10px;
  top: 210px;
  animation: floatY 7s ease-in-out infinite 1s;
}

.hero-floating--three {
  left: 30px;
  bottom: 38px;
  animation: floatY 5.5s ease-in-out infinite 0.6s;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.ticker__track {
  display: flex;
  gap: 32px;
  padding: 16px 0;
  width: max-content;
  animation: tickerMove 25s linear infinite;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.ticker__track span::before {
  content: "?";
  color: var(--red);
  margin-right: 12px;
}

section {
  padding: 110px 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
}

.section-title--left {
  text-align: left;
}

.expertises {
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(247,248,251,0.96));
}

.expertises__grid,
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.expertise-card,
.solution-card,
.story-panel,
.about__panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.expertise-card {
  padding: 28px;
  min-height: 280px;
}

.expertise-card::before,
.solution-card::before,
.about__panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  opacity: 0.08;
}

.expertise-card--red::before { background: var(--red); }
.expertise-card--navy::before { background: var(--navy); }
.expertise-card--green::before { background: var(--green); }

.expertise-card__number {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.expertise-card--red .expertise-card__number { color: var(--red); }
.expertise-card--navy .expertise-card__number { color: var(--navy); }
.expertise-card--green .expertise-card__number { color: var(--green); }

.expertise-card h3,
.solution-card h3,
.about__panel h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.story {
  padding-top: 20px;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.story-panel {
  padding: 34px;
}

.story-panel--accent {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
}

.story-panel--accent .section-tag,
.story-panel--accent p,
.story-panel--accent blockquote {
  color: var(--white);
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.72);
}

.story-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.story-list li {
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.08), rgba(13, 33, 55, 0.02));
  color: var(--navy);
  font-weight: 600;
  border: 1px solid rgba(13, 33, 55, 0.06);
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.story-list li:hover {
  transform: translateX(6px);
}

.story-panel blockquote {
  margin: 18px 0 18px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
}

.solution-card {
  padding: 26px;
  min-height: 220px;
}

.solution-card::before {
  background: var(--red);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.about__facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about__facts div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.about__facts span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.about__facts strong {
  color: var(--navy);
  font-size: 1rem;
}

.about__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 252, 1));
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__panel::before {
  background: var(--navy);
}

.about__panel-line {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  margin-bottom: 22px;
}

.cta {
  padding-top: 10px;
}

.cta__box {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta__box h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.15;
}

.cta__box p {
  color: rgba(255, 255, 255, 0.72);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer {
  padding-top: 90px;
  background: #0a1a2a;
  color: rgba(255, 255, 255, 0.76);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 34px;
}

.footer__grid img {
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer__grid h4 {
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.footer__tagline {
  max-width: 320px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.reveal--delay { transition-delay: 0.14s; }
.reveal--delay-2 { transition-delay: 0.28s; }

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(196, 30, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0); }
}

@keyframes heroWordFade {
  0%, 20% { opacity: 1; }
  25%, 100% { opacity: 0; }
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 20px, 0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .hero__grid,
  .story__grid,
  .about__grid,
  .cta__box {
    grid-template-columns: 1fr;
  }

  .expertises__grid,
  .solutions__grid,
  .about__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: 500px;
  }

  .cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .hero.hero--coming-soon,
  section.hero {
    min-height: auto;
    padding: 32px 0 16px;
  }

  .hero__content--single {
    max-width: 100%;
  }

  .hero__brand {
    width: 140px;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
    line-height: 1.12;
  }

  .hero__desc {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero__slider {
    flex-direction: column;
    gap: 6px;
    min-height: auto;
  }

  .hero__slider-label {
    font-size: 0.82rem;
  }

  .hero__slider-window {
    width: 100%;
    height: 30px;
  }

  .hero__slider-track span {
    height: 30px;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .hero__contact {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}
