:root {
  --ink: #111C26;
  --muted: #4A5865;
  --line: rgba(17, 28, 38, 0.12);
  --paper: #FAFCFE;
  --blue: #DCEEFF;
  --blue-deep: #1F7AE0;
  --pink: #D62878;
  --teal: #2A9D8F;
  --yellow: #E9C46A;
  --green: #6A994E;
  --shadow: 0 24px 70px rgba(15, 35, 52, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.site-header.compact {
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 8px 12px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 28, 38, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 91px);
  margin: 0 auto;
  padding: 38px 24px 88px;
}

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

.eyebrow {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 790px;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  max-width: 650px;
}

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

.platform-row span {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(17, 28, 38, 0.07);
  font-weight: 800;
  padding: 12px 16px;
}

.phone-scene {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone {
  width: min(360px, 82vw);
  aspect-ratio: 0.52;
  background: #111C26;
  border: 11px solid #111C26;
  border-radius: 48px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.phone-bar {
  background: #0B1118;
  border-radius: 0 0 18px 18px;
  height: 26px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 118px;
  z-index: 3;
}

.camera-view {
  background:
    linear-gradient(180deg, rgba(220, 238, 255, 0.62), rgba(255, 255, 255, 0.88)),
    linear-gradient(125deg, #DCEEFF 0%, #FDF7E5 52%, #E9F7F5 100%);
  height: 100%;
  overflow: hidden;
  position: relative;
}

.camera-view::before {
  background:
    linear-gradient(90deg, rgba(17, 28, 38, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 28, 38, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.crosshair {
  border: 2px solid rgba(17, 28, 38, 0.28);
  border-radius: 50%;
  height: 78px;
  left: 50%;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 78px;
}

.crosshair::before,
.crosshair::after {
  background: rgba(17, 28, 38, 0.28);
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.crosshair::before {
  height: 2px;
  width: 116px;
}

.crosshair::after {
  height: 116px;
  width: 2px;
}

.sticky-cluster {
  position: absolute;
  width: 132px;
}

.sticky {
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17, 28, 38, 0.16);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  min-height: 128px;
  overflow: hidden;
  padding: 14px;
  position: relative;
  width: 128px;
}

.sticky-category {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(17, 28, 38, 0.1);
  color: rgba(17, 28, 38, 0.78);
  display: inline-flex;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 7px 4px;
  padding: 5px 7px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.sticky strong {
  font-family: "Marker Felt", "Noteworthy", "Bradley Hand", ui-rounded, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.sticky-cluster-pink {
  left: 34px;
  top: 76px;
  transform: rotate(-8deg);
}

.sticky-pink {
  background: var(--pink);
}

.sticky-pink strong {
  font-size: 0.86rem;
  line-height: 1.02;
}

.sticky-heart {
  align-self: center;
  display: block;
  fill: none;
  height: 26px;
  margin-left: 34px;
  margin-top: -6px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.8;
  transform: rotate(-7deg);
  width: 34px;
}

.sticky-heart path:last-child {
  opacity: 0.58;
  stroke-width: 2.2;
}

.sticky-cluster-teal {
  right: 26px;
  top: 238px;
  transform: rotate(7deg);
}

.sticky-teal {
  background: var(--teal);
}

.sticky-teal strong {
  font-size: 0.9rem;
  line-height: 1.32;
}

.sticky-cluster-yellow {
  bottom: 108px;
  left: 52px;
  transform: rotate(-3deg);
}

.sticky-yellow {
  background: var(--yellow);
  color: #3E2D08;
}

.sticky-cluster-yellow .sticky-category {
  color: #5C430D;
}

.sticky-yellow strong {
  line-height: 1.32;
}

.preview-stack {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  bottom: 28px;
  box-shadow: 0 18px 36px rgba(17, 28, 38, 0.16);
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  position: absolute;
  right: 22px;
}

.search-icon {
  background: rgba(31, 122, 224, 0.1);
  border-radius: 14px;
  display: block;
  flex: 0 0 auto;
  height: 44px;
  stroke: var(--blue-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4;
  width: 44px;
}

.search-icon circle,
.search-icon path {
  fill: none;
}

.preview-stack strong {
  font-size: 0.9rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.section-heading {
  max-width: 780px;
}

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

.feature-grid article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 28, 38, 0.06);
  min-height: 218px;
  padding: 26px;
}

.feature-grid p,
.text-list p,
.legal-intro,
.legal-section p,
.legal-section li {
  color: var(--muted);
}

.dot {
  border-radius: 999px;
  display: block;
  height: 14px;
  margin-bottom: 24px;
  width: 14px;
}

.dot-pink {
  background: var(--pink);
}

.dot-teal {
  background: var(--teal);
}

.dot-yellow {
  background: var(--yellow);
}

.split-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}

.text-list {
  align-self: end;
  font-size: 1.12rem;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin: 44px auto 0;
  max-width: 1180px;
  padding: 28px 24px 42px;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 24px 110px;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 26px;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-section h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--blue-deep);
  font-weight: 800;
}

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

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

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 36px;
  }

  .phone-scene {
    min-height: 520px;
  }

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

@media (max-width: 520px) {
  .site-header {
    padding: 18px;
  }

  .site-nav a {
    padding: 7px 9px;
  }

  .hero,
  .section,
  .legal-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .platform-row span {
    width: 100%;
  }
}
