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


.sprite-defs {
  position: absolute;
}

.icon-svg {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 auto;
  color: currentColor;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

:root {
  --bg: #08111f;
  --bg-2: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.9);
  --line: rgba(255, 255, 255, 0.11);
  --text: #edf2ff;
  --muted: #b8c4e5;
  --soft: #92a3cf;
  --brand: #60a5fa;
  --brand-2: #f472b6;
  --accent: #22d3ee;
  --success: #8b5cf6;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.17), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(244, 114, 182, 0.16), transparent 28%),
    linear-gradient(180deg, #070d19 0%, #08111f 35%, #091321 100%);
  color: var(--text);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0));
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--brand), transparent);
  top: 12%;
  left: -6%;
  animation: drift 14s ease-in-out infinite;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, var(--brand-2), transparent);
  right: -8%;
  top: 42%;
  animation: drift 18s ease-in-out infinite reverse;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 19, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 30px rgba(96, 165, 250, 0.35);
}

.brand-text {
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.contact-stack a,
.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.contact-stack a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 22px 80px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 24px 0 30px;
}

.hero-copy,
.hero-visual,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent);
  margin: 0 0 14px;
  font-weight: 700;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 1.18rem;
  color: #d9e4ff;
  font-weight: 600;
}

.hero-summary {
  max-width: 730px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.pill:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.11);
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 32px rgba(114, 137, 255, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.11);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.photo-card {
  position: relative;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(9, 19, 33, 0.78));
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 22px;
  overflow: hidden;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(96,165,250,0.18), transparent 42%);
  animation: rotateGlow 18s linear infinite;
}

.photo-card img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
}

.status-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--text);
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

.section {
  padding: 48px 0 10px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.88), rgba(10, 18, 32, 0.82));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.8;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(28, 46, 84, 0.95), rgba(99, 47, 111, 0.92));
}

.feature-list,
.clean-list,
.tool-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.chip {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.94rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), rgba(255,255,255,0.1));
}

.timeline-item {
  position: relative;
  padding-left: 22px;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 26px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px rgba(96,165,250,0.12);
}

.timeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.timeline-card h3 {
  margin-bottom: 0;
}

.timeline-org {
  margin: 6px 0 12px;
  color: #ffffff;
  font-weight: 600;
}

.timeline-date {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 18px;
}

.qr-card {
  text-align: center;
}

.qr-image {
  width: min(100%, 260px);
  background: white;
  padding: 14px;
  border-radius: 22px;
  margin: 18px auto 20px;
  display: block;
}

.small-note {
  font-size: 0.92rem;
  color: var(--soft);
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--soft);
  padding: 0 20px 46px;
}

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

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

.floating {
  animation: floatCard 7s ease-in-out infinite;
}

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

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}

@media (max-width: 1080px) {
  .hero,
  .grid.three,
  .grid.two,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .topbar {
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .nav {
    gap: 12px;
  }

  .page-shell {
    padding: 24px 16px 70px;
  }

  .section {
    padding-top: 34px;
  }

  .card {
    padding: 20px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }
}

@media (max-width: 520px) {
  .brand-text {
    display: none;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .timeline-top {
    align-items: flex-start;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }

  .topbar,
  .bg-grid,
  .bg-orb {
    display: none !important;
  }

  .page-shell {
    padding: 0;
  }

  .card,
  .photo-card {
    box-shadow: none;
    border: 1px solid #d9d9d9;
    background: white;
  }

  .btn {
    display: none;
  }

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