@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f3f5ff;
  --panel: #ffffff;
  --ink: #232323;
  --muted: #6c7570;
  --line: #e6e8f3;
  --primary: #5d0dfc;
  --primary-2: #8f00ff;
  --secondary: #ffe24b;
  --accent: #b0c7ff;
  --primary-light: #e9deff;
  --soft: #f3f6fb;
  --success: #96cb39;
  --shadow: 0 24px 70px rgba(93, 13, 252, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 226, 75, 0.22) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 44%, #f9f9f9 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(93, 13, 252, 0.1);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(93, 13, 252, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 58px;
  align-items: center;
  padding: 62px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(255, 226, 75, 0.25);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.store-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 34px rgba(93, 13, 252, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(93, 13, 252, 0.28);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(93, 13, 252, 0.12);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

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

.screenshot-stage {
  position: relative;
  width: min(500px, 100%);
  min-height: 655px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(93, 13, 252, 0.1), rgba(255, 226, 75, 0.16)),
    #ffffff;
  border: 1px solid rgba(93, 13, 252, 0.1);
  box-shadow: 0 28px 80px rgba(35, 35, 35, 0.08);
  overflow: hidden;
}

.screenshot-stage::before,
.screenshot-stage::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  opacity: 0.1;
  transform: rotate(18deg);
}

.screenshot-stage::before {
  top: -120px;
  right: -110px;
}

.screenshot-stage::after {
  bottom: -130px;
  left: -130px;
  background: var(--secondary);
  opacity: 0.22;
}

.app-screenshot {
  position: relative;
  z-index: 2;
  display: block;
  width: min(405px, 86%);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 82px rgba(93, 13, 252, 0.24);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(93, 13, 252, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.1);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  font-size: 14px;
}

.floating-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.note-top {
  top: 76px;
  left: 18px;
}

.note-bottom {
  right: 18px;
  bottom: 92px;
}

.signal-strip {
  padding: 0 0 28px;
}

.signal-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(93, 13, 252, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(35, 35, 35, 0.05);
}

.signal-inner div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: center;
  gap: 6px;
}

.signal-inner div:last-child {
  border-right: 0;
}

.signal-inner strong {
  font-size: 18px;
}

.signal-inner span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.section {
  padding: 94px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-head h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.legal-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  min-height: 256px;
  padding: 26px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid rgba(93, 13, 252, 0.1);
  box-shadow: 0 18px 40px rgba(35, 35, 35, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 13, 252, 0.26);
  box-shadow: 0 24px 58px rgba(93, 13, 252, 0.1);
}

.feature .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
}

.feature h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.platform-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 226, 75, 0.16) 0 24%, transparent 24% 100%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
}

.platform-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.platform-band .section-head {
  max-width: 860px;
}

.platform-band .eyebrow {
  color: #ffffff;
}

.platform-band .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 18px;
}

.audience-panel {
  min-height: 330px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.audience-panel.highlight {
  background: #ffffff;
  color: var(--ink);
}

.audience-panel span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-panel.highlight span {
  color: var(--primary);
}

.audience-panel h3 {
  max-width: 620px;
  margin: 22px 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.audience-panel p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.audience-panel.highlight p {
  color: var(--muted);
}

.journey-section {
  background: #ffffff;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.journey-list {
  display: grid;
  gap: 14px;
}

.journey-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  row-gap: 6px;
  padding: 22px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid rgba(93, 13, 252, 0.1);
}

.journey-list span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--secondary);
  font-weight: 800;
}

.journey-list strong {
  font-size: 18px;
}

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

.download-band {
  background:
    linear-gradient(135deg, rgba(93, 13, 252, 0.36), transparent 44%),
    var(--ink);
  color: #ffffff;
}

.download-band .store-button {
  color: var(--ink);
  background: var(--secondary);
  box-shadow: none;
}

.download-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.download-layout p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.download-layout h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-link {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(93, 13, 252, 0.1);
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(35, 35, 35, 0.04);
}

.legal-link span {
  color: var(--primary);
  font-weight: 800;
}

.legal-link h3 {
  margin: 14px 0 8px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-main {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 86px;
}

.legal-hero {
  margin-bottom: 32px;
}

.legal-card {
  border: 1px solid rgba(93, 13, 252, 0.1);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 5vw, 44px);
  box-shadow: 0 18px 44px rgba(35, 35, 35, 0.04);
}

.legal-card h2 {
  margin: 36px 0 10px;
  font-size: 24px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #4f4f4f;
  line-height: 1.75;
  font-size: 16px;
}

.legal-card ol,
.legal-card ul {
  padding-left: 22px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: var(--primary-light);
  border-radius: 8px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 840px) {
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero,
  .download-layout,
  .journey-layout,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
    gap: 28px;
  }

  .hero-visual {
    min-height: auto;
  }

  .screenshot-stage {
    min-height: auto;
    padding: 22px 0;
  }

  .app-screenshot {
    width: min(100%, 390px);
  }

  .floating-note {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    width: calc(100% - 32px);
    margin-top: 12px;
  }

  .screenshot-stage {
    align-content: center;
  }

  .signal-inner {
    grid-template-columns: 1fr 1fr;
  }

  .signal-inner div:nth-child(2) {
    border-right: 0;
  }

  .signal-inner div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 44px;
  }

  .hero-copy,
  .section-head p,
  .legal-hero p {
    font-size: 16px;
  }

  .store-button {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .signal-inner {
    grid-template-columns: 1fr;
  }

  .signal-inner div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-inner div:last-child {
    border-bottom: 0;
  }

  .audience-panel {
    min-height: 0;
    padding: 24px;
  }

  .journey-list div {
    grid-template-columns: 1fr;
  }

  .journey-list span {
    grid-row: auto;
  }
}
