@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("/assets/fonts/switzer-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --ink: #0a0a0a;
  --muted: #222;
  --pale: #eef2ff;
  --soft-blue: #cbd8ff;
  --deep-blue: #123abf;
  --border: rgba(34, 34, 34, 0.1);
  --shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Satoshi", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 16px 20px;
  pointer-events: none;
}

.brand,
.download-button {
  pointer-events: auto;
}

.brand {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(103, 87, 244, 0.34);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  line-height: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.download-button img {
  width: 100%;
  height: auto;
}

.download-button:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.section {
  position: relative;
  background: var(--white);
}

.features {
  padding: 116px 40px 104px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 8px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}

.section-heading h1,
.section-heading h2,
.testimonials h2,
.cta h2,
.legal h1 {
  margin: 28px 0 0;
  font-family: "Switzer", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 24px 0 0;
  max-width: 640px;
  color: rgba(0, 0, 0, 0.86);
  font-size: 24px;
  line-height: 1.28;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 64px auto 0;
}

.feature-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-art {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 324px;
  overflow: hidden;
}

.feature-art img {
  width: min(78%, 420px);
  transform: translateY(34px);
}

.feature-card:nth-child(2) .feature-art img {
  width: min(84%, 420px);
  transform: translateY(42px);
}

.feature-card h3 {
  margin: 44px auto 16px;
  max-width: 440px;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
}

.feature-card p {
  max-width: 390px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.82);
  font-size: 18px;
  line-height: 1.42;
}

.appstore-media {
  scroll-margin-top: 84px;
  padding: 92px 40px 96px;
  overflow: hidden;
  background:
    radial-gradient(74% 58% at 15% 48%, rgba(189, 204, 255, 0.58), rgba(255, 255, 255, 0) 72%),
    radial-gradient(64% 54% at 84% 72%, rgba(210, 181, 255, 0.34), rgba(255, 255, 255, 0) 76%),
    #fff;
}

.media-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1200px;
  margin: 44px auto 0;
}

.preview-video {
  justify-self: center;
  width: min(100%, 340px);
  aspect-ratio: 600 / 1300;
  overflow: hidden;
  border: 1px solid rgba(13, 19, 62, 0.12);
  border-radius: 40px;
  background: #050505;
  box-shadow: 0 28px 60px rgba(13, 19, 62, 0.24);
}

.preview-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050505;
}

.screenshot-rail {
  display: flex;
  gap: 20px;
  min-width: 0;
  overflow-x: auto;
  padding: 14px 4px 22px;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshot-rail img {
  flex: 0 0 clamp(218px, 22vw, 270px);
  width: clamp(218px, 22vw, 270px);
  aspect-ratio: 600 / 1300;
  object-fit: cover;
  overflow: hidden;
  border: 1px solid rgba(13, 19, 62, 0.1);
  border-radius: 32px;
  background: #f4f6ff;
  box-shadow: 0 22px 44px rgba(13, 19, 62, 0.16);
  scroll-snap-align: start;
}

.screenshot-rail::-webkit-scrollbar {
  height: 8px;
}

.screenshot-rail::-webkit-scrollbar-track {
  background: rgba(13, 19, 62, 0.06);
  border-radius: 999px;
}

.screenshot-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(13, 19, 62, 0.22);
}

.testimonials {
  padding: 52px 40px 64px;
  overflow: hidden;
}

.testimonials h2 {
  margin: 0 auto 56px;
  text-align: center;
}

.testimonial-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1064px;
  height: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-wall::before,
.testimonial-wall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 110px;
  pointer-events: none;
}

.testimonial-wall::before {
  top: 0;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
}

.testimonial-wall::after {
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-column:nth-child(2) {
  transform: translateY(50px);
}

.testimonial-column:nth-child(3) {
  transform: translateY(-34px);
}

.testimonial-card {
  min-height: 180px;
  padding: 38px 40px 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-card > p {
  margin: 0 0 28px;
  color: rgba(0, 0, 0, 0.88);
  font-size: 17px;
  line-height: 1.42;
}

.person {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong,
.person span {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.person strong {
  font-weight: 500;
}

.person span {
  margin-top: 3px;
  color: rgba(0, 0, 0, 0.72);
}

.contact {
  padding: 108px 40px 112px;
  background:
    radial-gradient(72% 56% at 50% 100%, rgba(189, 204, 255, 0.52), rgba(255, 255, 255, 0) 78%),
    #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1050px;
  margin: 64px auto 0;
}

.contact-form,
.email-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  text-align: left;
}

.contact-form label {
  display: block;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.74);
  font-size: 15px;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 19, 62, 0.16);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  font-size: 17px;
  line-height: 1.35;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 156px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 58, 191, 0.54);
  box-shadow: 0 0 0 4px rgba(18, 58, 191, 0.1);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-submit,
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.contact-submit:hover,
.email-button:hover {
  transform: translateY(-1px);
}

.contact-submit:disabled {
  cursor: progress;
  opacity: 0.58;
  transform: none;
}

.contact-status {
  min-height: 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.contact-status[data-state="success"] {
  color: #0b7c34;
}

.contact-status[data-state="error"] {
  color: #b3261e;
}

.contact-status[data-state="pending"] {
  color: rgba(0, 0, 0, 0.68);
}

.email-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 42px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(110% 90% at 100% 100%, rgba(189, 204, 255, 0.72), rgba(255, 255, 255, 0) 72%),
    rgba(255, 255, 255, 0.94);
}

.cta {
  position: relative;
  min-height: 510px;
  padding: 130px 40px 96px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(84.6% 67.1% at 50% 100%, #bdccff 0%, #fff 100%),
    #fff;
}

.cta h2 {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.cta p {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin: 22px auto 36px;
  color: rgba(0, 0, 0, 0.86);
  font-size: 16px;
  line-height: 1.46;
}

.cta .download-button {
  position: relative;
  z-index: 2;
  width: 168px;
}

.cta-toy-left,
.cta-toy-right {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 24px 30px rgba(34, 64, 160, 0.24));
}

.cta-toy-left {
  left: -42px;
  top: 104px;
  width: min(30vw, 360px);
  transform: rotate(-18deg);
}

.cta-toy-right {
  right: 20px;
  top: 166px;
  width: min(31vw, 380px);
  transform: rotate(15deg);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 24px 82px;
  background: var(--black);
  color: var(--white);
}

.socials,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.socials a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 24px 108px;
  text-align: center;
}

.legal .eyebrow {
  min-height: 34px;
}

.legal h1 {
  margin-top: 44px;
}

.legal h2 {
  margin: 46px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.legal h3 {
  margin: 38px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.legal p {
  margin: 36px 0 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 16px;
  line-height: 1.45;
}

.legal p + p {
  margin-top: 16px;
}

.legal-footer .footer-links::before {
  content: "";
}

@media (max-width: 1199px) {
  .media-showcase {
    grid-template-columns: minmax(236px, 300px) minmax(0, 1fr);
  }

  .preview-video {
    width: min(100%, 300px);
    border-radius: 36px;
  }

  .screenshot-rail img {
    flex-basis: 220px;
    width: 220px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  }
}

@media (max-width: 809px) {
  .site-header {
    height: 72px;
    padding: 16px;
  }

  .download-button {
    width: 144px;
  }

  .features {
    padding: 72px 20px 78px;
  }

  .section-heading {
    max-width: 100%;
  }

  .section-heading h1,
  .section-heading h2,
  .testimonials h2,
  .cta h2,
  .legal h1 {
    font-size: clamp(40px, 10vw, 52px);
    line-height: 1.08;
  }

  .section-heading p {
    font-size: 18px;
    line-height: 1.32;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .feature-card {
    min-height: 528px;
  }

  .feature-art {
    height: 300px;
  }

  .feature-art img,
  .feature-card:nth-child(2) .feature-art img {
    width: 86%;
    transform: translateY(30px);
  }

  .feature-card h3 {
    margin-top: 36px;
    font-size: 18px;
  }

  .feature-card p {
    max-width: 285px;
    font-size: 18px;
    line-height: 1.34;
  }

  .appstore-media {
    padding: 84px 20px 72px;
  }

  .media-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 30px;
  }

  .preview-video {
    width: min(70vw, 300px);
  }

  .screenshot-rail {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    scroll-padding-left: 20px;
  }

  .screenshot-rail img {
    flex-basis: 210px;
    width: 210px;
    border-radius: 28px;
  }

  .testimonials {
    padding: 28px 20px 58px;
  }

  .testimonials h2 {
    margin-bottom: 44px;
  }

  .testimonial-wall {
    display: block;
    height: 790px;
    max-width: 100%;
  }

  .testimonial-column {
    gap: 20px;
  }

  .testimonial-column:nth-child(2),
  .testimonial-column:nth-child(3) {
    display: none;
  }

  .testimonial-card {
    min-height: 178px;
    padding: 36px 40px 32px;
  }

  .testimonial-card > p {
    font-size: 16px;
  }

  .contact {
    padding: 72px 20px 82px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .email-panel {
    padding: 36px 24px;
  }

  .cta {
    min-height: 650px;
    padding: 168px 24px 116px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta-toy-left {
    left: -116px;
    top: 48px;
    width: 290px;
  }

  .cta-toy-right {
    right: -106px;
    top: 386px;
    width: 300px;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    min-height: 150px;
    padding: 28px 20px;
  }

  .footer-links {
    gap: 20px;
  }

  .legal {
    padding-top: 136px;
  }
}

@media (max-width: 480px) {
  .preview-video {
    width: min(76vw, 280px);
    border-radius: 32px;
  }

  .screenshot-rail img {
    flex-basis: 180px;
    width: 180px;
    border-radius: 24px;
  }

  .contact-form input,
  .contact-submit,
  .email-button {
    min-height: 50px;
  }

  .contact-submit,
  .email-button {
    width: 100%;
  }
}
