:root {
  --bg-1: #f3f8ff;
  --bg-2: #d9e9ff;
  --text: #122336;
  --muted: #4d647d;
  --line: rgba(255, 255, 255, 0.55);
  --glass: rgba(255, 255, 255, 0.32);
  --shadow: 0 16px 45px rgba(15, 37, 61, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --accent: #1a9aa1;
  --accent-warm: #ff8b65;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, #ffffff 0%, transparent 34%),
    radial-gradient(circle at 86% 12%, #ffe9dc 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, #daf4ff 0%, transparent 35%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}

.orb-a {
  width: 260px;
  height: 260px;
  left: -60px;
  top: 140px;
  background: radial-gradient(circle at 32% 34%, #ffffff, #7edee0);
}

.orb-b {
  width: 190px;
  height: 190px;
  right: 10%;
  top: 70px;
  background: radial-gradient(circle at 40% 40%, #ffffff, #ffd3bf);
  animation-duration: 16s;
}

.orb-c {
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: 8%;
  background: radial-gradient(circle at 44% 34%, #ffffff, #9cc9ff);
  animation-duration: 20s;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.site-footer,
.section-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand small {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  opacity: 0.8;
  font-size: 0.95rem;
}

.section-wrap {
  margin-top: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.feature-card,
.flow-copy,
.flow-step,
.cta-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin-top: 0.65rem;
  margin-bottom: 0.8rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h1 span {
  background: linear-gradient(120deg, var(--accent), #3fbae1);
  -webkit-background-clip: text;
  color: transparent;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(14, 37, 65, 0.12);
}

.btn.solid {
  background: linear-gradient(130deg, rgba(24, 154, 161, 0.92), rgba(58, 189, 225, 0.9));
  color: #fff;
  border-color: transparent;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.flow-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.flow-step h4 {
  margin-top: 0.2rem;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.site-footer {
  margin: 1.4rem auto 1.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer p {
  font-size: 0.88rem;
}

.image-slot {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.2));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.6rem;
  overflow: hidden;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slot {
  min-height: 280px;
}

.feature-slot {
  min-height: 176px;
}

.step-slot {
  min-height: 122px;
}

.mini-slot {
  width: min(280px, 100%);
  min-height: 180px;
}

.status-row {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.status-pill {
  font-size: 0.74rem;
  color: var(--text);
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.44);
}

.glass {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 0.75s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.22s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-18px) translateX(8px);
  }
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero,
  .features,
  .flow-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-slot {
    min-height: 230px;
  }

  .feature-slot {
    min-height: 190px;
  }

  .step-slot {
    min-height: 150px;
  }

  .mini-slot {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 18px;
    flex-wrap: wrap;
  }

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

  .site-header .btn {
    width: 100%;
  }

  .hero-copy,
  .hero-visual,
  .feature-card,
  .flow-copy,
  .flow-step,
  .cta-card,
  .site-footer {
    border-radius: 18px;
  }
}
