:root {
  --bg: #fbf8f3;
  --bg-soft: #f4eef8;
  --card: #ffffff;
  --text: #1f1b24;
  --muted: #685d70;
  --muted-soft: #8c7f95;
  --primary: #7c2bd9;
  --primary-dark: #4f168f;
  --primary-soft: #efe0ff;
  --accent: #b784ff;
  --border: rgba(79, 22, 143, 0.14);
  --shadow: 0 24px 70px rgba(79, 22, 143, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(124, 43, 217, 0.12), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(183, 132, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, #f5edf9 46%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 243, 0.88);
  border-bottom: 1px solid rgba(79, 22, 143, 0.12);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: var(--text);
  cursor: pointer;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #d9bbff 28%, #8c38e8 64%, #6b16c7 100%);
  box-shadow:
    0 0 0 8px rgba(124, 43, 217, 0.08),
    0 12px 32px rgba(124, 43, 217, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  background:
    radial-gradient(circle at 20% 18%, rgba(124, 43, 217, 0.18), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(183, 132, 255, 0.22), transparent 32%),
    radial-gradient(circle at 68% 88%, rgba(124, 43, 217, 0.10), transparent 36%),
    linear-gradient(135deg, #fbf8f3 0%, #f3e8fb 48%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: rgba(124, 43, 217, 0.10);
  filter: blur(48px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  max-width: 760px;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.085em;
  color: var(--text);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--text);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--text);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 16px;
  letter-spacing: -0.02em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #7c2bd9 0%, #9b31ef 100%);
  box-shadow:
    0 20px 48px rgba(124, 43, 217, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  color: var(--primary-dark);
  border: 1px solid rgba(79, 22, 143, 0.18);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 40px rgba(79, 22, 143, 0.08);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-line span {
  padding: 10px 16px;
  border: 1px solid rgba(79, 22, 143, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.signal-box {
  width: min(500px, 100%);
  padding: 32px;
  border: 1px solid rgba(79, 22, 143, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 255, 0.84));
  backdrop-filter: blur(18px);
  box-shadow:
    0 34px 90px rgba(79, 22, 143, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.scan-visual {
  position: relative;
  min-height: 300px;
  margin-bottom: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(124, 43, 217, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(124, 43, 217, 0.065), rgba(255, 255, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -26px 64px rgba(79, 22, 143, 0.08);
}

.scan-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-ring {
  position: absolute;
  border: 1px solid rgba(124, 43, 217, 0.16);
  border-radius: 999px;
  animation: pulseRing 7s ease-in-out infinite;
}

.ring-one {
  width: 190px;
  height: 190px;
}

.ring-two {
  width: 138px;
  height: 138px;
  animation-delay: 1s;
}

.ring-three {
  width: 88px;
  height: 88px;
  animation-delay: 2s;
}

.scan-center {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #e5ccff 42%, #7c2bd9 100%);
  box-shadow:
    0 0 30px rgba(124, 43, 217, 0.38),
    0 0 70px rgba(183, 132, 255, 0.24);
}

.metric-chip {
  position: absolute;
  min-width: 140px;
  padding: 15px 16px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(79, 22, 143, 0.12);
  box-shadow: 0 20px 46px rgba(79, 22, 143, 0.12);
}

.metric-chip small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
}

.metric-chip strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.chip-one {
  top: 30px;
  left: 26px;
}

.chip-two {
  top: 58px;
  right: 22px;
}

.profile-bars {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(79, 22, 143, 0.10);
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(124, 43, 217, 0.42), #8d22dd, #d8b6ff);
}

.fill-one {
  width: 78%;
}

.fill-three {
  width: 88%;
}

.profile-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(124, 43, 217, 0.11), rgba(183, 132, 255, 0.13));
  border: 1px solid rgba(79, 22, 143, 0.12);
}

.profile-result small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.profile-result strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.profile-result span {
  color: var(--primary);
  font-weight: 850;
  font-size: 18px;
}

.section {
  padding: 106px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(251, 248, 243, 0.84));
}

.section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}

.section-heading p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 21px;
}

.cards {
  display: grid;
  gap: 22px;
}

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

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid rgba(79, 22, 143, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 46px rgba(79, 22, 143, 0.09);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(124, 43, 217, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6eefb 100%);
}

.accent-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 43, 217, 0.10), transparent 34%),
    linear-gradient(180deg, #f6eefb 0%, #fbf8f3 100%);
}

.vision-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 43, 217, 0.10), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4edf8 100%);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.text-block {
  color: var(--muted);
  font-size: 21px;
}

.text-block p {
  margin-bottom: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(79, 22, 143, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(79, 22, 143, 0.09);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 18px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 116px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 43, 217, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4edf8 100%);
}

.contact-box {
  max-width: 860px;
  padding: 56px;
  border: 1px solid rgba(79, 22, 143, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-box p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 20px;
}

.contact-box small {
  display: block;
  margin-top: 22px;
  color: var(--muted-soft);
}
.contact-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 800;
}

.contact-legal-links a {
  color: var(--primary-dark);
  transition: color 0.2s ease;
}

.contact-legal-links a:hover {
  color: var(--primary);
}

.contact-legal-links span {
  color: var(--muted-soft);
}
.site-footer {
  border-top: 1px solid rgba(79, 22, 143, 0.12);
  padding: 30px 0;
  color: var(--muted);
  background: #fbf8f3;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-links,
.footer-inner a {
  color: var(--primary-dark);
  font-weight: 700;
}

.footer-inner a:hover {
  color: var(--primary);
}

.legal-section {
  padding: 86px 0 110px;
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 43, 217, 0.10), transparent 30%),
    linear-gradient(180deg, #fbf8f3 0%, #ffffff 100%);
}

.legal-container {
  max-width: 920px;
  padding: 42px;
  border: 1px solid rgba(79, 22, 143, 0.12);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.back-link {
  color: var(--primary-dark);
  font-weight: 800;
}

.close-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(79, 22, 143, 0.14);
  border-radius: 999px;
  color: var(--primary-dark);
  background: #fbf8ff;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.close-link:hover,
.back-link:hover {
  color: var(--primary);
}

.legal-title {
  margin-bottom: 8px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.legal-updated {
  color: var(--muted);
  margin-bottom: 34px;
}

.legal-content {
  color: var(--muted);
  font-size: 18px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 22px 22px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary-dark);
  font-weight: 800;
}

.legal-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f6eefb;
  color: var(--muted);
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 88px 0 76px;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .cards.three,
  .cards.four,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    gap: 16px;
    font-size: 14px;
  }
}

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

  .header-inner {
    min-height: 70px;
  }

  .nav {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .text-block,
  .contact-box p:not(.eyebrow) {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

  .cards.three,
  .cards.four,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .signal-box {
    padding: 22px;
    border-radius: 28px;
  }

  .scan-visual {
    min-height: 280px;
  }

  .metric-chip {
    min-width: 126px;
    padding: 13px 14px;
  }

  .chip-one {
    top: 26px;
    left: 18px;
  }

  .chip-two {
    top: 62px;
    right: 16px;
  }

  .bar-row {
    grid-template-columns: 92px 1fr;
  }

  .profile-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-box,
  .legal-container {
    padding: 30px 22px;
    border-radius: 26px;
  }

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

@media (max-width: 430px) {
  .logo {
    font-size: 15px;
  }

  .logo-mark {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding-top: 72px;
  }

  .trust-line span {
    width: 100%;
    text-align: center;
  }

  .signal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .scan-core {
    width: 160px;
    height: 160px;
  }

  .ring-one {
    width: 160px;
    height: 160px;
  }

  .ring-two {
    width: 118px;
    height: 118px;
  }

  .ring-three {
    width: 78px;
    height: 78px;
  }
}
