:root {
  --pink: #fbd3f0;
  --aqua: #c4f7ff;
  --lav: #d9c7ff;
  --blue: #d3e8ff;

  --bg1: #ecf8ff;
  --bg2: #d8f0ff;
  --bg3: #cde7f7;
  --bg4: #bbe2fa;

  --ink: #07041b;
  --muted: rgba(7, 4, 27, 0.62);
  --glass: rgba(255, 255, 255, 0.34);
  --glass-border: rgba(7, 4, 27, 0.12);

  --animation-1-delay: 0.25s;
  --animation-2-delay: 1.65s;
  --animation-3-delay: 2.35s;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(
    circle at 50% 30%,
    var(--bg1) 0%,
    var(--bg2) 35%,
    var(--bg3) 65%,
    var(--bg4) 100%
  );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 211, 240, 0.45), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(196, 247, 255, 0.55), transparent 34%);
  z-index: 0;
}

.home-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: clamp(10px, 1.8vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-2-delay);
  pointer-events: none;
}

.site-header.is-visible {
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.brand span {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4vw, 52px);
}

.nav-links a,
.header-actions a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-links a::after,
.login-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.nav-links a:hover::after,
.login-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-link {
  color: var(--ink);
}

.signup-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg1) !important;
  box-shadow: 0 16px 34px rgba(7, 4, 27, 0.18);
  letter-spacing: 0.02em !important;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.signup-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(7, 4, 27, 0.24);
}

.menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  margin: 0 auto;
}

.menu-btn span::before {
  transform: translateY(-7px);
}

.menu-btn span::after {
  transform: translateY(5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 25% 20%, rgba(251, 211, 240, 0.62), transparent 36%),
    radial-gradient(circle at 80% 18%, rgba(196, 247, 255, 0.7), transparent 38%),
    radial-gradient(
      circle at 50% 30%,
      rgba(236, 248, 255, 0.92) 0%,
      rgba(216, 240, 255, 0.94) 38%,
      rgba(205, 231, 247, 0.96) 70%,
      rgba(187, 226, 250, 0.98) 100%
    );
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-content {
  position: relative;
  width: min(420px, 100%);
  min-height: min(560px, calc(100svh - 56px));
  border-radius: 32px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(7, 4, 27, 0.12);
  backdrop-filter: blur(18px);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.96);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open .mobile-menu-content {
  transform: scale(1);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu-brand img {
  width: 32px;
  height: 32px;
  display: block;
}

.menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
  transition: transform 0.28s ease, background 0.28s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.72);
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-links {
  display: grid;
  gap: 8px;
  margin: 46px 0;
  justify-items: center;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 4px;
  text-decoration: none;
  color: var(--ink);
  font-size: clamp(28px, 9vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(7, 4, 27, 0.1);
  opacity: 0;
  transform: translateY(14px);
  text-align: center;
}

.mobile-menu.is-open .mobile-menu-links a {
  animation: mobileLinkIn 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(5) { animation-delay: 0.32s; }

.mobile-menu-actions {
  display: grid;
  gap: 10px;
}

.mobile-menu-signup {
  min-height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bg1);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(7, 4, 27, 0.18);
}

.blob-stage {
  position: relative;
  width: min(100vw, 100svh);
  height: min(100vw, 100svh);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  animation: blobGrow 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards var(--animation-1-delay);
  pointer-events: none;
  transition: transform 2.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.blob-stage::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 199, 255, 0.42),
    rgba(196, 247, 255, 0.2),
    transparent 70%
  );
  filter: blur(42px);
  transform: scale(1.15);
  opacity: 0;
  animation: glowIn 1.8s ease forwards 0.55s;
  pointer-events: none;
}

.eyla-blob-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

#eyla-canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#eyla-canvas-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.blob-title {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.blob-title span {
  width: min(42%, 390px);
  color: var(--ink);
  font-family: "Quicksand", system-ui, sans-serif;
  font-size: clamp(24px, 2.75vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.blob-ui-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-3-delay);
  transition:
    opacity 0.9s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.connection-line {
  position: absolute;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(7, 4, 27, 0.22),
    rgba(196, 247, 255, 0.8),
    transparent
  );
  opacity: 0.54;
  transform-origin: center;
  filter: blur(0.1px);
}

.line-1 {
  width: 24%;
  left: 3%;
  top: 50%;
  transform: rotate(4deg);
}

.line-2 {
  width: 24%;
  right: -1%;
  top: 28%;
  transform: rotate(-17deg);
}

.line-3 {
  width: 24%;
  left: 6%;
  bottom: 31%;
  transform: rotate(-15deg);
}

.line-4 {
  width: 24%;
  right: 3%;
  bottom: 28%;
  transform: rotate(18deg);
}

.line-5 {
  width: 24%;
  left: 10%;
  top: 28%;
  transform: rotate(20deg);
}

.signal-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(7, 4, 27, 0.1);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 42px rgba(7, 4, 27, 0.09);
  color: rgba(7, 4, 27, 0.78);
  font-size: clamp(10px, 0.86vw, 13px);
  font-weight: 600;
  white-space: nowrap;
  animation: floatSignal 5.6s ease-in-out infinite;
}

.signal-card::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--aqua));
  box-shadow: 0 0 14px rgba(196, 247, 255, 0.95);
}

.signal-1 {
  top: 48%;
  left: -20%;
  animation-delay: 0s;
}

.signal-2 {
  top: 26%;
  right: -20%;
  animation-delay: 0.5s;
}

.signal-3 {
  bottom: 24%;
  left: -14%;
  animation-delay: 0.9s;
}

.signal-4 {
  bottom: 22%;
  right: -10%;
  animation-delay: 1.3s;
}

.signal-5 {
  top: 22%;
  left: -6%;
  transform: none;
  animation-delay: 1.7s;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: min(42%, 390px);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-2-delay);
  transition:
    opacity 0.9s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(18px, 2vw, 28px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  background: rgba(255, 255, 255, 0.2);
  color: rgba(7, 4, 27, 0.7);
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--aqua));
  box-shadow: 0 0 12px rgba(196, 247, 255, 0.9);
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.75vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  margin: clamp(22px, 2.2vw, 32px) 0 0;
  color: rgba(7, 4, 27, 0.68);
  font-size: clamp(12px, 0.96vw, 15px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.dashboard-card {
  position: fixed;
  right: clamp(42px, 8vw, 150px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 16;
  width: min(230px, 22vw);
  padding: 15px;
  border-radius: 24px;
  background: rgba(7, 4, 27, 0.88);
  color: var(--bg1);
  box-shadow:
    0 22px 58px rgba(7, 4, 27, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-3-delay);
  pointer-events: none;
  transition:
    opacity 0.9s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(236, 248, 255, 0.78);
  letter-spacing: 0.03em;
}

.dashboard-card-title span:last-child {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 12px rgba(196, 247, 255, 0.95);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dashboard-metric {
  padding: 9px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-metric strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.dashboard-metric span {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  line-height: 1.15;
  color: rgba(236, 248, 255, 0.65);
  font-weight: 500;
}

.journey-section {
  position: fixed;
  top: calc(50% + clamp(28px, 4.5svh, 46px));
  left: 65%;
  right: auto;
  z-index: 12;
  width: min(760px, calc(58vw - 64px));
  transform: translate(-50%, calc(-50% + 46px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 1s ease;
}

.journey-main,
.journey-detail {
  width: 100%;
}

.journey-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  color: rgba(7, 4, 27, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--aqua));
  box-shadow: 0 0 12px rgba(196, 247, 255, 0.9);
}

.journey-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.journey-section p {
  margin: 18px 0 0;
  max-width: 640px;
  color: rgba(7, 4, 27, 0.64);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  font-weight: 500;
}

.journey-card-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.journey-card {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 38px rgba(7, 4, 27, 0.08);
  backdrop-filter: blur(18px);
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease;
}

.journey-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 4, 27, 0.22);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 22px 52px rgba(7, 4, 27, 0.12);
}

.journey-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(7, 4, 27, 0.42);
  font-size: 12px;
  font-weight: 700;
}

.journey-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.journey-card small {
  display: block;
  margin-top: 8px;
  color: rgba(7, 4, 27, 0.58);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.journey-detail {
  display: none;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(7, 4, 27, 0.12);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 64px rgba(7, 4, 27, 0.1);
  backdrop-filter: blur(22px);
}

.journey-back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 0 15px;
  border: 1px solid rgba(7, 4, 27, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.journey-back:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.28);
}

.journey-detail-number {
  margin-bottom: 12px;
  color: rgba(7, 4, 27, 0.42);
  font-size: 14px;
  font-weight: 700;
}

.journey-detail-points {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.journey-detail-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(7, 4, 27, 0.68);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.journey-detail-point::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--aqua));
  box-shadow: 0 0 12px rgba(196, 247, 255, 0.9);
}

.journey-detail-result {
  margin-top: 26px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(7, 4, 27, 0.88);
  color: var(--bg1);
}

.journey-detail-result span {
  display: block;
  margin-bottom: 8px;
  color: rgba(236, 248, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journey-detail-result p {
  margin: 0;
  color: rgba(236, 248, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.hero-bottom {
  position: fixed;
  left: 50%;
  bottom: clamp(8px, 1.8vw, 24px);
  transform: translateX(-50%);
  z-index: 18;
  width: min(760px, calc(100% - 36px));
  display: grid;
  justify-items: center;
  gap: clamp(14px, 1.5vw, 20px);
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-2-delay);
  pointer-events: none;
  transition:
    opacity 0.9s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(58px, 8vw, 126px);
  pointer-events: auto;
}

.hero-signup,
.hero-how {
  width: 184px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease,
    background 0.45s ease;
}

.hero-signup {
  background: var(--ink);
  color: var(--bg1);
  border: 1px solid var(--ink);
  box-shadow: 0 18px 38px rgba(7, 4, 27, 0.2);
}

.hero-how {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(7, 4, 27, 0.22);
  box-shadow: 0 14px 30px rgba(7, 4, 27, 0.11);
}

.hero-signup:hover,
.hero-how:hover {
  transform: translateY(-3px);
}

.hero-signup:hover {
  box-shadow: 0 24px 52px rgba(7, 4, 27, 0.26);
}

.hero-how:hover {
  border-color: rgba(7, 4, 27, 0.36);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 44px rgba(7, 4, 27, 0.16);
}

.hero-note {
  margin: 0;
  text-align: center;
  color: rgba(7, 4, 27, 0.62);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 500;
  pointer-events: none;
}

.scroll-hint {
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(20px, 3vw, 38px);
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(7, 4, 27, 0.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeInSoft 0.75s ease forwards var(--animation-2-delay);
  pointer-events: none;
}

.scroll-hint-line {
  width: 1px;
  height: 42px;
  border-radius: 999px;
  background: rgba(7, 4, 27, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

body.intro-complete .blob-stage {
  animation: none;
  opacity: 1;
  transform: scale(1);
}

body.intro-complete .hero-copy,
body.intro-complete .hero-bottom,
body.intro-complete .blob-ui-layer,
body.intro-complete .dashboard-card {
  animation: none;
  opacity: 1;
}

body.intro-complete.hero-exiting .hero-copy {
  opacity: 0;
}

body.intro-complete.hero-exiting .hero-bottom {
  opacity: 0;
  pointer-events: none;
}

body.intro-complete.hero-exiting .hero-actions,
body.intro-complete.hero-exiting .hero-signup,
body.intro-complete.hero-exiting .hero-how,
body.journey-visible .hero-actions,
body.journey-visible .hero-signup,
body.journey-visible .hero-how {
  pointer-events: none;
}

body.intro-complete.hero-exiting .blob-ui-layer,
body.intro-complete.hero-exiting .dashboard-card {
  opacity: 0;
}

body.intro-complete.blob-positioned .blob-stage {
  transform: translateX(-26vw) scale(0.78);
}

body.journey-visible .blob-title {
  opacity: 1;
  transform: translateY(0);
}

body.journey-visible .journey-section {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

body.journey-detail-open .blob-stage {
  transform: translateX(-29vw) translateY(3vh) scale(0.72);
}

body.journey-detail-open .journey-main {
  display: none;
}

body.journey-detail-open .journey-detail {
  display: block;
}

@keyframes mobileLinkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blobGrow {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes floatSignal {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    transform: translateY(62px);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .dashboard-card {
    right: clamp(28px, 4vw, 56px);
    width: 210px;
  }

  .signal-1 {
    left: 2%;
  }

  .signal-2 {
    right: 2%;
  }

  .signal-3 {
    left: 3%;
  }

  .signal-4 {
    right: 3%;
  }

  .signal-5 {
    left: 5%;
  }

  .line-1 {
    width: 16%;
    left: 22%;
  }

  .line-2 {
    width: 16%;
    right: 22%;
  }

  .line-3 {
    width: 16%;
    left: 23%;
  }

  .line-4 {
    width: 16%;
    right: 23%;
  }

  .line-5 {
    width: 16%;
    left: 25%;
  }

  .journey-section {
    right: auto;
    width: min(700px, 56vw);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 14px;
    width: min(100%, calc(100% - 32px));
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-btn {
    justify-self: end;
    display: block;
  }

  .hero-copy {
    width: min(48%, 330px);
  }

  .hero-copy h1 {
    font-size: clamp(21px, 4vw, 32px);
    line-height: 1.08;
  }

  .hero-copy p {
    margin-top: clamp(18px, 2.4vw, 24px);
    font-size: clamp(11px, 1.5vw, 13px);
    line-height: 1.5;
  }

  .blob-title span {
    width: min(48%, 330px);
    font-size: clamp(21px, 4vw, 32px);
    line-height: 1.08;
  }

  .hero-chip {
    margin-bottom: clamp(15px, 2vw, 22px);
  }

  .signal-card {
    font-size: 10px;
    padding: 7px 10px;
    max-width: 220px;
  }

  .signal-1 {
    top: 39%;
    left: 2%;
  }

  .signal-2 {
    top: 29%;
    right: 2%;
  }

  .signal-3 {
    bottom: 28%;
    left: 2%;
  }

  .signal-4 {
    bottom: 24%;
    right: 2%;
  }

  .signal-5 {
    top: 19%;
    left: 6%;
  }

  .line-1 {
    width: 14%;
    left: 22%;
    top: 43%;
    transform: rotate(10deg);
  }

  .line-2 {
    width: 14%;
    right: 22%;
    top: 34%;
    transform: rotate(-18deg);
  }

  .line-3 {
    width: 14%;
    left: 23%;
    bottom: 33%;
    transform: rotate(-14deg);
  }

  .line-4 {
    width: 14%;
    right: 23%;
    bottom: 30%;
    transform: rotate(16deg);
  }

  .line-5 {
    width: 14%;
    left: 26%;
    top: 26%;
    transform: rotate(18deg);
  }

  .dashboard-card {
    display: block;
    top: clamp(68px, 11svh, 108px);
    right: clamp(12px, 4vw, 30px);
    transform: none;
    z-index: 17;
    width: clamp(138px, 28vw, 178px);
    padding: 10px;
    border-radius: 20px;
  }

  .dashboard-card-title {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .dashboard-card-title span:last-child {
    width: 6px;
    height: 6px;
  }

  .dashboard-grid {
    gap: 6px;
  }

  .dashboard-metric {
    padding: 7px;
    border-radius: 12px;
  }

  .dashboard-metric strong {
    font-size: 15px;
  }

  .dashboard-metric span {
    margin-top: 4px;
    font-size: 7.5px;
  }

  .journey-section {
    right: auto;
    width: min(430px, 48vw);
  }

  .journey-section h2 {
    font-size: clamp(28px, 5vw, 44px);
  }

  .journey-card-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .journey-card {
    min-height: 104px;
    padding: 13px;
    border-radius: 18px;
  }

  body.intro-complete.blob-positioned .blob-stage {
    transform: translateX(-23vw) scale(0.7);
  }

  body.journey-detail-open .blob-stage {
    transform: translateX(-25vw) translateY(2vh) scale(0.66);
  }

  .scroll-hint {
    display: inline-flex;
    right: 12px;
    bottom: 166px;
    gap: 7px;
    font-size: 10px;
    z-index: 19;
    transition:
      bottom 2.35s cubic-bezier(0.65, 0, 0.35, 1),
      opacity 0.75s ease;
  }

  body.blob-positioned .scroll-hint {
    bottom: clamp(12px, 2.8svh, 28px);
  }

  .scroll-hint-line {
    height: 34px;
  }
}

@media (max-width: 700px) {
  .blob-stage {
    width: min(100vw, 76svh);
    height: min(100vw, 76svh);
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .signal-card {
    font-size: 9px;
    min-height: 29px;
    padding: 6px 8px;
    max-width: 44vw;
    white-space: normal;
    line-height: 1.1;
  }

  .signal-card::before {
    width: 6px;
    height: 6px;
  }

  .signal-5 {
    top: 8%;
    left: 4%;
    transform: none;
  }

  .signal-1 {
    top: 62%;
    left: 2%;
  }

  .signal-2 {
    top: 18%;
    right: 7%;
  }

  .signal-4 {
    bottom: 13%;
    right: 7%;
  }

  .signal-3 {
    bottom: -4%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 54vw;
  }

  .line-5 {
    width: 12%;
    left: 27%;
    top: 18%;
    transform: rotate(41deg);
  }

  .line-1 {
    width: 12%;
    left: 26%;
    top: 60%;
    transform: rotate(-18deg);
  }

  .line-2 {
    width: 12%;
    right: 30%;
    top: 26%;
    transform: rotate(-28deg);
  }

  .line-4 {
    width: 12%;
    right: 31%;
    bottom: 22%;
    transform: rotate(25deg);
  }

  .line-3 {
    width: 11%;
    left: 44.5%;
    bottom: 7%;
    transform: rotate(90deg);
  }

  .dashboard-card {
    top: clamp(62px, 10.5svh, 96px);
    right: 10px;
    width: clamp(122px, 32vw, 150px);
    padding: 9px;
  }

  .journey-section {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 92px;
    width: min(470px, calc(100% - 32px));
    transform: translate(-50%, 46px);
  }

  body.journey-visible .journey-section {
    transform: translate(-50%, 0);
  }

  body.intro-complete.blob-positioned .blob-stage {
    transform:
      translate(
        calc(-30vw - 44px),
        calc(32px + 56vw - 50svh)
      )
      scale(1.14);
  }

  body.journey-detail-open .blob-stage {
    transform:
      translate(
        calc(-32vw - 44px),
        calc(32px + 54vw - 50svh)
      )
      scale(1.06);
  }

  .blob-title span {
    width: min(48%, 330px);
    font-size: clamp(21px, 4vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 700;
  }

  .journey-section h2 {
    font-size: clamp(25px, 7vw, 36px);
  }

  .journey-section p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .journey-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .journey-card-list {
    margin-top: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .journey-card {
    min-height: 88px;
    padding: 10px;
    border-radius: 16px;
  }

  .journey-card span {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .journey-card strong {
    font-size: 12px;
  }

  .journey-card small {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.25;
  }

  .journey-detail {
    padding: 18px;
    border-radius: 22px;
  }

  .journey-back {
    margin-bottom: 18px;
  }

  .journey-detail-points {
    margin-top: 16px;
  }

  .journey-detail-point {
    font-size: 12px;
  }

  .journey-detail-result {
    margin-top: 18px;
    padding: 13px;
  }

  .journey-detail-result p {
    font-size: 12px;
  }

  .scroll-hint {
    right: 10px;
    bottom: 160px;
  }

  body.blob-positioned .scroll-hint {
    bottom: clamp(10px, 2.2svh, 24px);
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 12px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand span {
    font-size: 15px;
  }

  .mobile-menu {
    padding: 16px;
  }

  .mobile-menu-content {
    min-height: calc(100svh - 32px);
    border-radius: 28px;
    padding: 22px;
  }

  .mobile-menu-links {
    margin: 40px 0;
  }

  .blob-stage {
    width: min(100vw, 70svh);
    height: min(100vw, 70svh);
  }

  .blob-stage::before {
    inset: 8%;
    filter: blur(34px);
  }

  .hero-copy {
    width: min(58%, 260px);
  }

  .hero-chip {
    margin-bottom: 12px;
    padding: 5px 8px;
    font-size: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(17px, 5.4vw, 25px);
    line-height: 1.05;
  }

  .blob-title span {
    width: min(58%, 260px);
    font-size: clamp(17px, 5.4vw, 25px);
    line-height: 1.05;
  }

  .hero-copy p {
    margin-top: 14px;
    font-size: 10.5px;
    line-height: 1.45;
  }

  .signal-card {
    font-size: 8px;
    min-height: 26px;
    padding: 5px 7px;
    max-width: 41vw;
  }

  .signal-5 {
    top: 8%;
    left: 3%;
  }

  .signal-1 {
    top: 63%;
    left: 1%;
  }

  .signal-2 {
    top: 19%;
    right: 6%;
  }

  .signal-4 {
    bottom: 13%;
    right: 6%;
  }

  .signal-3 {
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 52vw;
  }

  .connection-line {
    opacity: 0.28;
  }

  .line-5 {
    width: 11%;
    left: 27%;
    top: 18%;
    transform: rotate(43deg);
  }

  .line-1 {
    width: 11%;
    left: 26%;
    top: 61%;
    transform: rotate(-18deg);
  }

  .line-2 {
    width: 11%;
    right: 30%;
    top: 27%;
    transform: rotate(-30deg);
  }

  .line-4 {
    width: 11%;
    right: 31%;
    bottom: 23%;
    transform: rotate(27deg);
  }

  .line-3 {
    width: 10%;
    left: 45%;
    bottom: 7%;
    transform: rotate(90deg);
  }

  .dashboard-card {
    top: 64px;
    right: 9px;
    width: 118px;
    padding: 8px;
    border-radius: 17px;
  }

  .dashboard-card-title {
    font-size: 8px;
    margin-bottom: 6px;
  }

  .dashboard-grid {
    gap: 5px;
  }

  .dashboard-metric {
    padding: 6px;
    border-radius: 10px;
  }

  .dashboard-metric strong {
    font-size: 13px;
  }

  .dashboard-metric span {
    font-size: 6.5px;
  }

  .hero-bottom {
    bottom: 12px;
    width: calc(100% - 28px);
    gap: 12px;
  }

  .hero-actions {
    width: 100%;
    gap: 22px;
  }

  .hero-signup,
  .hero-how {
    flex: 1;
    width: auto;
    min-height: 54px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-note {
    max-width: 320px;
    font-size: 12px;
  }

  .journey-section {
    bottom: 88px;
  }

  body.intro-complete.blob-positioned .blob-stage {
    transform:
      translate(
        calc(-31vw - 34px),
        calc(30px + 58vw - 50svh)
      )
      scale(1.18);
  }

  body.journey-detail-open .blob-stage {
    transform:
      translate(
        calc(-33vw - 34px),
        calc(30px + 56vw - 50svh)
      )
      scale(1.08);
  }

  .scroll-hint {
    right: 9px;
    bottom: 150px;
    font-size: 9px;
    gap: 6px;
  }

  body.blob-positioned .scroll-hint {
    bottom: clamp(8px, 2svh, 18px);
  }

  .scroll-hint-line {
    height: 30px;
  }
}

@media (max-width: 380px) {
  .signal-card {
    font-size: 7.5px;
    padding: 5px 6px;
    max-width: 40vw;
  }

  .signal-5 {
    left: 2%;
  }

  .signal-1 {
    left: 1%;
  }

  .signal-2 {
    right: 1%;
  }

  .signal-4 {
    right: 1%;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-signup,
  .hero-how {
    min-height: 50px;
    font-size: 13px;
  }

  .line-1 {
    width: 10%;
    left: 26%;
    top: 61%;
  }

  .line-2 {
    width: 10%;
    right: 29%;
    top: 27%;
  }

  .line-4 {
    width: 10%;
    right: 30%;
    bottom: 23%;
  }

  .line-3 {
    width: 9%;
    left: 45.5%;
    bottom: 7%;
  }

  .line-5 {
    width: 10%;
    left: 27%;
    top: 18%;
  }

  .dashboard-card {
    top: 58px;
    right: 7px;
    width: 106px;
    padding: 7px;
    border-radius: 15px;
  }

  .dashboard-card-title {
    font-size: 7px;
  }

  .dashboard-metric strong {
    font-size: 12px;
  }

  .dashboard-metric span {
    font-size: 6px;
  }

  .journey-card-list {
    gap: 6px;
  }

  .journey-card {
    min-height: 82px;
    padding: 9px;
  }

  .scroll-hint {
    bottom: 140px;
    right: 7px;
    font-size: 8.5px;
  }

  body.blob-positioned .scroll-hint {
    bottom: 8px;
  }

  body.intro-complete.blob-positioned .blob-stage {
    transform:
      translate(
        calc(-32vw - 30px),
        calc(28px + 60vw - 50svh)
      )
      scale(1.22);
  }

  body.journey-detail-open .blob-stage {
    transform:
      translate(
        calc(-34vw - 30px),
        calc(28px + 58vw - 50svh)
      )
      scale(1.1);
  }
}

@media (max-height: 680px) {
  .hero-copy {
    width: min(40%, 320px);
  }

  .hero-copy h1 {
    font-size: clamp(19px, 2.8vw, 31px);
  }

  .blob-title span {
    width: min(40%, 320px);
    font-size: clamp(19px, 2.8vw, 31px);
  }

  .hero-chip {
    margin-bottom: 12px;
  }

  .hero-copy p {
    font-size: 11px;
    margin-top: 14px;
  }

  .dashboard-card {
    right: 12px;
  }

  .hero-bottom {
    bottom: 8px;
    gap: 10px;
  }

  .journey-card {
    min-height: 92px;
  }

  .scroll-hint {
    bottom: 134px;
  }

  body.blob-positioned .scroll-hint {
    bottom: 8px;
  }
}


@media (orientation: portrait) {
  .blob-stage {
    width: min(100vw, 76svh);
    height: min(100vw, 76svh);
  }

  .journey-section {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 92px;
    width: min(470px, calc(100% - 32px));
    transform: translate(-50%, 46px);
  }

  body.journey-visible .journey-section {
    transform: translate(-50%, 0);
  }

  body.intro-complete.blob-positioned .blob-stage {
    transform:
      translate(
        calc(-30vw - 44px),
        calc(32px + 56vw - 50svh)
      )
      scale(1.14);
  }

  body.journey-detail-open .blob-stage {
    transform:
      translate(
        calc(-32vw - 44px),
        calc(32px + 54vw - 50svh)
      )
      scale(1.06);
  }

  .journey-section h2 {
    font-size: clamp(25px, 7vw, 36px);
  }

  .journey-section p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .journey-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .journey-card-list {
    margin-top: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .journey-card {
    min-height: 88px;
    padding: 10px;
    border-radius: 16px;
  }

  .journey-card span {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .journey-card strong {
    font-size: 12px;
  }

  .journey-card small {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.25;
  }
}

@media (orientation: landscape) {
  .blob-stage {
    width: min(100vw, 100svh);
    height: min(100vw, 100svh);
  }

  .journey-section {
    top: calc(50% + clamp(28px, 4.5svh, 46px));
    left: 65%;
    right: auto;
    bottom: auto;
    width: min(760px, calc(58vw - 64px));
    transform: translate(-50%, calc(-50% + 46px));
  }

  body.journey-visible .journey-section {
    transform: translate(-50%, -50%);
  }

  body.intro-complete.blob-positioned .blob-stage {
    transform: translateX(-26vw) scale(0.78);
  }

  body.journey-detail-open .blob-stage {
    transform: translateX(-29vw) translateY(3vh) scale(0.72);
  }

  .journey-section h2 {
    font-size: clamp(32px, 4vw, 58px);
  }

  .journey-section p {
    margin-top: 18px;
    max-width: 640px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.6;
  }

  .journey-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .journey-card-list {
    margin-top: 28px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .journey-card {
    min-height: 118px;
    padding: 16px;
    border-radius: 22px;
  }

  .journey-card span {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .journey-card strong {
    font-size: 15px;
  }

  .journey-card small {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (orientation: portrait) and (min-width: 701px) {
  .journey-section {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(680px, calc(100% - 80px));
    transform: translate(-50%, calc(-50% + 46px));
    text-align: left;
  }

  body.journey-visible .journey-section {
    transform: translate(-50%, -50%);
  }

  .journey-main {
    width: 100%;
  }

  .journey-section p {
    max-width: 640px;
    margin-left: 0;
    margin-right: 0;
  }

  .journey-card-list {
    width: 100%;
  }

  .journey-card {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob-stage,
  .blob-stage::before,
  .site-header,
  .hero-copy,
  .hero-bottom,
  .scroll-hint,
  .blob-ui-layer,
  .dashboard-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .blob-stage {
    transform: scale(1);
  }

  .signal-card {
    animation: none;
  }

  .mobile-menu,
  .mobile-menu-content,
  .mobile-menu-links a,
  .journey-section,
  .blob-title {
    transition: none;
    animation: none !important;
  }

  .mobile-menu.is-open .mobile-menu-links a {
    opacity: 1;
    transform: none;
  }
}