:root {
  --bg: #071121;
  --bg-soft: #0f1f39;
  --bg-deep: #040812;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --surface-bright: rgba(255, 255, 255, 0.92);
  --text: #edf4ff;
  --text-muted: rgba(237, 244, 255, 0.76);
  --text-dark: #0f1b30;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --coral: #ff7b6d;
  --coral-soft: rgba(255, 123, 109, 0.2);
  --lime: #ccff74;
  --mint: #93fff0;
  --blue: #5c8dff;
  --shadow-xl: 0 38px 110px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.24);
  --radius-xxl: 40px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 123, 109, 0.24), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(147, 255, 240, 0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(92, 141, 255, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 35%, #10213e 100%);
}

body::before {
  content: "";
  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: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 75%);
  pointer-events: none;
}

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

.site-shell,
.legal-shell {
  width: min(1220px, calc(100vw - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 16, 31, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-text {
  font-size: 1.12rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-muted);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--coral), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

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

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

.button-primary {
  color: #10172b;
  background:
    linear-gradient(135deg, var(--coral) 0%, #ff9b7d 45%, var(--lime) 100%);
  box-shadow: 0 18px 34px rgba(255, 123, 109, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 42px;
  align-items: center;
  padding: 44px 0 22px;
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(237, 244, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.announcement-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--lime));
  box-shadow: 0 0 18px rgba(204, 255, 116, 0.56);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  line-height: 0.92;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 4.5vw, 3.8rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.42rem;
  line-height: 1.05;
}

.hero-text,
.section-heading p,
.feature-card p,
.step-card p,
.trust-copy p,
.legal-main p,
.legal-main li,
.footer p,
.showcase-card p,
.domain-node p,
.proof-chip span {
  color: var(--text-muted);
  line-height: 1.62;
  font-size: 1.05rem;
}

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

.hero-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-notes li::before {
  content: "•";
  color: var(--lime);
  margin-right: 10px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.proof-chip {
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.proof-chip strong {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.85;
}

.glow-coral {
  width: 290px;
  height: 290px;
  top: 72px;
  right: 6px;
  background: radial-gradient(circle, rgba(255, 123, 109, 0.54), transparent 70%);
}

.glow-lime {
  width: 260px;
  height: 260px;
  left: 0;
  bottom: 78px;
  background: radial-gradient(circle, rgba(204, 255, 116, 0.26), transparent 70%);
}

.float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(10, 19, 36, 0.68);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.float-card-top {
  top: 112px;
  left: -8px;
  animation: floaty 5.4s ease-in-out infinite;
}

.float-card-bottom {
  right: -6px;
  bottom: 118px;
  animation: floaty 6.1s ease-in-out infinite reverse;
}

.float-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.float-card strong {
  font-size: 1.04rem;
}

.device-frame {
  position: relative;
  width: min(100%, 408px);
  padding: 14px;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(7, 13, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-xl);
}

.device-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 28px;
  border-radius: 999px;
  background: #02050b;
  z-index: 2;
}

.device-screen {
  position: relative;
  min-height: 706px;
  overflow: hidden;
  border-radius: 31px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #e7f0f7 0%, #dce7ef 16%, #ffffff 16.2%, #ffffff 100%);
}

.device-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.orb-one {
  width: 240px;
  height: 240px;
  top: 170px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 123, 109, 0.34), transparent 70%);
}

.orb-two {
  width: 220px;
  height: 220px;
  left: -50px;
  bottom: 96px;
  background: radial-gradient(circle, rgba(92, 141, 255, 0.28), transparent 70%);
}

.mock-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px 1fr 112px;
  align-items: start;
  padding: 72px 18px 18px;
  background: linear-gradient(180deg, #eef7fd 0%, #eef7fd 72%, #f7fbff 100%);
  color: var(--text-dark);
  border-bottom: 1px solid rgba(15, 27, 48, 0.08);
}

.mock-header-side {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 88px;
}

.mock-header-left {
  justify-content: flex-start;
}

.mock-header-right {
  justify-content: flex-end;
}

.mock-back {
  color: #2d6cf6;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-2px);
}

.mock-pill {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: white;
  background: #397df8;
  font-weight: 700;
}

.mock-contact {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 88px;
}

.mock-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, #aeb4bf, #9399a5);
  color: white;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 8px 18px rgba(27, 41, 65, 0.12);
}

.mock-contact-text {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.mock-contact-text strong {
  font-size: 1.08rem;
}

.mock-contact-text span {
  color: rgba(19, 32, 57, 0.54);
  font-size: 0.88rem;
}

.mock-action-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #4a85ff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.56);
}

.mock-action-dot-soft {
  opacity: 0.44;
}

.mock-chat {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  padding: 16px 18px 148px;
  background: white;
}

.bubble {
  max-width: 78%;
  padding: 15px 18px;
  border-radius: 24px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(10, 17, 30, 0.06);
}

.bubble-left {
  color: #121212;
  background: #e9edf3;
}

.bubble-right {
  margin-left: auto;
  color: white;
  background: #34c759;
}

.mock-footer {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(9, 16, 31, 0.56);
  backdrop-filter: blur(16px);
}

.ticker {
  overflow: hidden;
  margin: 16px 0 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  color: rgba(237, 244, 255, 0.82);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

.ticker-track span::before {
  content: "✦";
  color: var(--lime);
  margin-right: 14px;
}

.stats-strip,
.feature-card,
.step-card,
.trust-link,
.legal-main,
.footer,
.showcase-card,
.domain-card,
.cta-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 26px;
  border-radius: var(--radius-xl);
}

.stats-strip div {
  display: grid;
  gap: 6px;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
}

.stat-label {
  color: var(--text-muted);
}

.section {
  padding: 94px 0 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.feature-grid,
.steps-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
}

.showcase-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

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

.feature-card,
.step-card,
.trust-link,
.showcase-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.showcase-card-primary {
  background:
    radial-gradient(circle at top right, rgba(147, 255, 240, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 123, 109, 0.16), rgba(15, 31, 57, 0.9));
}

.showcase-tag,
.domain-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card-dark {
  background:
    linear-gradient(135deg, rgba(255, 123, 109, 0.16), rgba(17, 28, 52, 0.9)),
    rgba(255, 255, 255, 0.05);
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(204, 255, 116, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.05);
}

.domain-card {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xxl);
}

.domain-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.domain-node {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.domain-node strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.domain-node-accent {
  background:
    radial-gradient(circle at top right, rgba(204, 255, 116, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.055);
}

.domain-arrow {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

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

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.trust-links {
  display: grid;
  gap: 16px;
}

.trust-link {
  display: grid;
  gap: 8px;
}

.trust-link span {
  color: var(--text-muted);
}

.trust-link strong {
  font-size: 1.12rem;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xxl);
  background:
    radial-gradient(circle at top right, rgba(255, 123, 109, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(92, 141, 255, 0.14), transparent 22%),
    rgba(255, 255, 255, 0.06);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  margin-top: 88px;
  padding: 24px 26px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
}

.legal-topbar {
  margin-bottom: 24px;
}

.legal-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.legal-hero h1,
.legal-main h1 {
  max-width: none;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  margin-bottom: 12px;
}

.legal-meta {
  margin: 0;
  color: rgba(237, 244, 255, 0.74);
  font-size: 0.95rem;
}

.legal-hero {
  padding: 6px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-intro {
  max-width: 60ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 28px;
  padding-top: 30px;
}

.legal-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.legal-aside-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.legal-aside-card h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.legal-aside-card p {
  margin: 0;
}

.legal-aside-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 123, 109, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.055);
}

.legal-aside-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-summary {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.legal-summary li + li {
  margin-top: 10px;
}

.legal-sections {
  display: grid;
  gap: 0;
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.legal-section {
  padding: 0 0 28px;
}

.legal-section h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 10px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33%);
  }
}

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

@media (max-width: 1120px) {
  .showcase-grid,
  .hero,
  .trust-section,
  .domain-card,
  .feature-grid,
  .steps-grid,
  .stats-strip,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .domain-map {
    grid-template-columns: 1fr;
  }

  .domain-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .topbar {
    position: static;
  }

  .hero {
    padding-top: 24px;
  }

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

  .device-frame {
    width: min(100%, 420px);
  }

  .float-card {
    position: static;
    margin-bottom: 14px;
    width: min(100%, 320px);
    justify-self: center;
  }

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

@media (max-width: 640px) {
  .site-shell,
  .legal-shell {
    width: min(100vw - 20px, 1220px);
  }

  .topbar {
    gap: 12px;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .device-screen {
    min-height: 620px;
  }

  .mock-header {
    grid-template-columns: 92px 1fr 92px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .mock-header-side {
    gap: 8px;
  }

  .mock-back {
    font-size: 1.9rem;
  }

  .mock-chat {
    padding-left: 14px;
    padding-right: 14px;
  }

  .bubble {
    max-width: 86%;
    font-size: 1rem;
  }

  .legal-main {
    padding: 24px;
  }

  .legal-aside-card {
    padding: 20px;
  }
}
