:root {
  --bg: #07131d;
  --bg-soft: #0d2230;
  --panel: rgba(9, 26, 38, 0.72);
  --panel-strong: rgba(11, 30, 44, 0.92);
  --line: rgba(173, 219, 255, 0.14);
  --text: #edf6fb;
  --muted: #a9bcc9;
  --accent: #ff8552;
  --accent-soft: #ffb38d;
  --secondary: #56e0c5;
  --secondary-soft: #9cf4e4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 133, 82, 0.22), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(86, 224, 197, 0.18), transparent 24%),
    linear-gradient(180deg, #041018 0%, #07131d 34%, #0a1822 100%);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.ambient,
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -3;
}

.ambient-one {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 133, 82, 0.2) 0%, transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(86, 224, 197, 0.2) 0%, transparent 18%);
  filter: blur(24px);
  animation: driftOne 18s ease-in-out infinite alternate;
}

.ambient-two {
  background:
    radial-gradient(circle at 70% 72%, rgba(255, 179, 141, 0.12) 0%, transparent 16%),
    radial-gradient(circle at 18% 82%, rgba(156, 244, 228, 0.1) 0%, transparent 16%);
  filter: blur(36px);
  animation: driftTwo 24s ease-in-out infinite alternate;
}

.noise {
  z-index: -2;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 18px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 18, 27, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6e91 100%);
  color: #081018;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: 0 14px 30px rgba(255, 133, 82, 0.28);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.section {
  padding: 42px 0;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding-top: 48px;
}

.eyebrow,
.card-tag,
.panel-label,
.product-badge,
.product-status,
.solution-index {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 179, 141, 0.2);
  background: rgba(255, 133, 82, 0.08);
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.floating-card h2,
.product-card h3,
.solution-card h3,
.timeline-item h3,
.cta-panel h2 {
  font-family: "Sora", sans-serif;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  line-height: 1.03;
  max-width: 12ch;
}

.hero-text,
.info-panel p,
.solution-card p,
.product-card p,
.timeline-item p,
.quote-card p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

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

.button-primary {
  color: #09121a;
  background: linear-gradient(135deg, var(--accent) 0%, #ffc367 100%);
  box-shadow: 0 16px 30px rgba(255, 133, 82, 0.28);
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(173, 219, 255, 0.18);
  color: var(--text);
}

.button-secondary:hover,
.button-tertiary:hover,
.button-secondary:focus-visible,
.button-tertiary:focus-visible {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  border-color: rgba(173, 219, 255, 0.32);
}

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

.metric,
.info-panel,
.solution-card,
.product-card,
.timeline-card,
.quote-card,
.cta-panel,
.floating-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 33, 46, 0.78), rgba(7, 21, 31, 0.88));
  box-shadow: var(--shadow);
}

.metric {
  padding: 22px 18px;
  border-radius: var(--radius-md);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.metric span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.stage-halo {
  position: absolute;
  inset: 8% 12% 10% 8%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 133, 82, 0.34), transparent 0 34%),
    radial-gradient(circle at 72% 18%, rgba(86, 224, 197, 0.24), transparent 0 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  filter: blur(0.4px);
}

.stage-grid {
  position: absolute;
  inset: 16% 8% 14% 12%;
  border-radius: 38px;
  border: 1px solid rgba(173, 219, 255, 0.1);
  background-image:
    linear-gradient(rgba(173, 219, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 219, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.floating-card {
  position: absolute;
  width: min(330px, 82%);
  padding: 28px 24px;
  border-radius: 24px;
  backdrop-filter: blur(18px);
}

.floating-card::after,
.metric::after,
.solution-card::after,
.product-card::after,
.info-panel::after,
.timeline-card::after,
.quote-card::after,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -38% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 68%);
}

.card-one {
  top: 8%;
  left: 4%;
  animation: float 10s ease-in-out infinite;
}

.card-two {
  top: 34%;
  right: 6%;
  animation: float 12s ease-in-out infinite reverse;
}

.card-three {
  bottom: 10%;
  left: 16%;
  animation: float 11s ease-in-out infinite 1.2s;
}

.card-tag,
.panel-label,
.product-badge,
.product-status,
.solution-index {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--secondary-soft);
}

.floating-card h2,
.product-card h3,
.solution-card h3,
.timeline-item h3 {
  margin: 14px 0 12px;
  font-size: 1.42rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.08;
}

.credibility-grid,
.solutions-grid,
.products-grid {
  display: grid;
  gap: 18px;
}

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

.info-panel,
.solution-card,
.product-card,
.timeline-card,
.quote-card,
.cta-panel {
  border-radius: var(--radius-lg);
}

.info-panel,
.solution-card,
.product-card,
.cta-panel {
  padding: 28px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--accent-soft);
}

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

.solution-card {
  min-height: 250px;
}

.solution-index {
  color: var(--accent-soft);
}

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

.product-card {
  min-height: 280px;
}

.product-highlight {
  background:
    linear-gradient(180deg, rgba(23, 46, 61, 0.82), rgba(9, 24, 35, 0.96)),
    linear-gradient(135deg, rgba(255, 133, 82, 0.08), rgba(86, 224, 197, 0.06));
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-status {
  color: var(--muted);
}

.confidential-card {
  background:
    linear-gradient(180deg, rgba(14, 29, 41, 0.86), rgba(8, 20, 30, 0.96)),
    linear-gradient(135deg, rgba(255, 179, 141, 0.05), rgba(156, 244, 228, 0.05));
}

.confidential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.confidential-list span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(173, 219, 255, 0.14);
  color: var(--secondary-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.structure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
}

.timeline-card,
.quote-card {
  padding: 30px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
}

.timeline-item + .timeline-item {
  margin-top: 18px;
}

.timeline-dot {
  position: relative;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(8, 24, 36, 0.92), rgba(9, 19, 27, 0.96)),
    radial-gradient(circle at top left, rgba(255, 133, 82, 0.1), transparent 30%);
}

.quote-card p {
  margin: 0;
  font-size: 1.18rem;
}

.quote-card span {
  margin-top: 20px;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta-panel {
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(16, 36, 50, 0.92), rgba(8, 18, 28, 0.96)),
    radial-gradient(circle at 15% 10%, rgba(255, 133, 82, 0.18), transparent 24%);
}

.cta-panel h2 {
  max-width: 15ch;
  margin: 16px 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.06;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 48px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(173, 219, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 141, 0.32);
  background: rgba(255, 133, 82, 0.08);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
}

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

.js .reveal {
  transform: translateY(28px);
  filter: blur(10px);
  transition: transform 700ms ease, filter 700ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  filter: blur(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes driftOne {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
}

@keyframes driftTwo {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2%, 2%, 0) scale(1.06);
  }
}

@media (max-width: 1080px) {
  .hero,
  .structure-layout,
  .credibility-grid,
  .solutions-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-stage {
    min-height: 540px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(calc(100% - 28px), var(--content-width));
    border-radius: 24px;
    flex-direction: column;
    gap: 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .section,
  .site-footer {
    width: min(calc(100% - 28px), var(--content-width));
  }

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

  .hero-stage {
    min-height: 620px;
  }

  .floating-card {
    position: relative;
    width: 100%;
  }

  .card-one,
  .card-two,
  .card-three {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-bottom: 14px;
  }

  .stage-grid,
  .stage-halo {
    inset: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    margin-top: 12px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .cta-panel,
  .timeline-card,
  .quote-card,
  .info-panel,
  .solution-card,
  .product-card,
  .metric {
    padding: 22px;
  }

  .hero-stage {
    min-height: 0;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    transform: none;
    filter: none;
  }
}
