:root {
  --accent: #ffdd2d;
  --text-primary: #333333;
  --text-secondary: #9299a2;
  --text-tertiary: rgba(0, 16, 36, 0.22);
  --neutral-1: rgba(0, 16, 36, 0.03);
  --neutral-1-opaque: #f6f7f8;
  --neutral-3: rgba(0, 16, 36, 0.12);
  --action: #428bf9;
  --footer-bg: #292929;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-width: 375px;
  --gutter: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: var(--page-width);
  min-width: var(--page-width);
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--text-primary);
  font-family: var(--font-text);
  letter-spacing: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
}

.page {
  width: var(--page-width);
  min-height: 5109px;
  overflow: hidden;
  background: #ffffff;
}

.motion-entrance {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-entrance.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .motion-entrance {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: -0.24px;
  text-align: center;
  white-space: nowrap;
}

.button--yellow {
  background: var(--accent);
}

.button--black {
  background: #000000;
  color: #ffffff;
}

.hero-section {
  position: relative;
  width: 375px;
  height: 648px;
}

.hero-banner {
  position: relative;
  width: 375px;
  height: 476px;
  overflow: hidden;
  background: linear-gradient(90deg, #040404 0%, #040404 15.28%, #121212 32.82%, #171717 51.92%, #1a1a1a 68.83%, #090909 83.03%, #060606 100%);
}

.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.16) 35%, rgba(255,255,255,0.68) 76%, #ffffff 100%);
}

.hero-art {
  position: absolute;
  left: 50%;
  top: 0;
  width: 599px;
  height: 216px;
  overflow: hidden;
  transform: translateX(-50%);
}

.hero-art img {
  position: absolute;
  left: -31px;
  top: -10px;
  width: 662px;
  height: 407px;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 228px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  width: 343px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.36px;
}

.hero-copy p {
  margin: 8px 0 0;
  width: 343px;
  color: #ffffff;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.24px;
}

.hero-button {
  width: 155px;
  height: 44px;
  margin-top: 20px;
  padding: 10px 18px;
}

.hero-benefits {
  position: absolute;
  left: 0;
  top: 412px;
  width: 375px;
  height: 236px;
  padding: 10px 16px;
}

.benefits-card {
  width: 343px;
  height: 216px;
  padding: 12px 4px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 6px 34px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  width: 335px;
  min-height: 64px;
  padding: 8px 16px;
}

.round-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  border-radius: 50%;
  background: rgba(36, 74, 127, 0.09);
}

.round-icon img {
  width: 24px;
  height: 24px;
}

.round-icon--shield img {
  transform: translateY(2px);
}

.round-icon--full-asset {
  background: transparent;
}

.round-icon--full-asset img {
  width: 40px;
  height: 40px;
}

.benefit-row strong {
  display: block;
  padding-top: 2px;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.41px;
}

.benefit-row small {
  display: block;
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: -0.08px;
}

.image-slider-section {
  width: 375px;
  overflow: hidden;
}

.image-slider-section--large {
  height: 470px;
  padding: 10px 0 0 16px;
}

.image-slider-section--compact {
  height: 320px;
  padding: 10px 0 10px 16px;
}

.image-slider {
  display: flex;
  gap: 12px;
  width: 359px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-right: 16px;
}

.image-slider::-webkit-scrollbar {
  display: none;
}

.image-slider--large {
  height: 400px;
}

.image-slider--compact {
  height: 300px;
}

.image-card {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--neutral-1-opaque);
  scroll-snap-align: start;
}

.image-card--large {
  height: 400px;
}

.image-card--compact {
  height: 300px;
}

.image-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card__copy {
  position: relative;
  z-index: 1;
  padding: 16px 20px;
}

.image-card__copy h2 {
  margin: 0;
  width: 220px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.38px;
}

.image-card__copy p {
  margin: 8px 0 0;
  width: 220px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: -0.24px;
}

.slider-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 343px;
  height: 26px;
  margin-top: 24px;
  backdrop-filter: blur(4px);
}

.slider-progress button {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 6px;
  background: var(--neutral-3);
  transition: width 120ms ease, background 120ms ease;
}

.slider-progress button:nth-child(4) {
  width: 4px;
  height: 4px;
}

.slider-progress button:nth-child(5) {
  width: 2px;
  height: 2px;
}

.slider-progress button.is-active {
  width: 16px;
  height: 6px;
  background: var(--text-primary);
}

.section-title {
  display: flex;
  align-items: flex-start;
  width: 375px;
  height: 106px;
  padding: 56px 16px 14px;
}

.section-title--tall {
  height: 142px;
}

.section-title h2 {
  margin: 0;
  width: 100%;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.36px;
}

.section-title--center h2 {
  text-align: center;
}

.section-title--left h2 {
  text-align: left;
}

.steps-section {
  width: 375px;
  height: 300px;
  padding: 10px 16px;
}

.steps-card {
  width: 343px;
  height: 280px;
  padding: 12px 4px;
  border-radius: 24px;
  background: var(--neutral-1-opaque);
  overflow: hidden;
}

.step-row {
  position: relative;
  display: flex;
  width: 335px;
  min-height: 84px;
  padding: 16px;
}

.step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 60px;
  width: 1px;
  height: 36px;
  background: var(--neutral-3);
}

.step-row:nth-child(2)::after {
  height: 36px;
}

.step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-right: 16px;
  border-radius: 50%;
  background: #2c2c2e;
  color: #ffffff;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: -0.24px;
}

.step-row p {
  margin: 0;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.41px;
}

.card-design-section {
  width: 375px;
  height: 490px;
  padding: 10px 16px;
}

.design-form {
  width: 343px;
  height: 470px;
  border-radius: 24px;
  filter: drop-shadow(0 6px 17px rgba(0, 0, 0, 0.12));
  overflow: hidden;
}

.design-form__cap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 343px;
  height: 60px;
  padding-top: 12px;
  background: var(--text-primary);
  color: #ffffff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: -0.08px;
  text-align: center;
}

.design-form__body {
  width: 343px;
  height: 434px;
  margin-top: -24px;
  padding: 17px 20px 20px;
  border-radius: 24px;
  background: #ffffff;
}

.design-form__body h2 {
  margin: 0 auto;
  width: 280px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.38px;
  text-align: center;
}

.design-carousel {
  width: 323px;
  height: 164px;
  margin: 26px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 22px;
  scroll-padding-right: 43px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.design-carousel::-webkit-scrollbar {
  display: none;
}

.design-carousel__track {
  display: flex;
  gap: 10px;
  width: max-content;
  height: 164px;
  padding: 0 43px 0 22px;
}

.design-slide {
  flex: 0 0 258px;
  width: 258px;
  height: 164px;
  overflow: hidden;
  border: 0.9px solid var(--neutral-3);
  border-radius: 12px;
  background: #000000;
  scroll-snap-align: start;
  transform: scale(0.856);
  transform-origin: left center;
  transition: transform 240ms ease, border-radius 240ms ease;
}

.design-slide.is-active {
  border-radius: 12px;
  transform: scale(1);
}

.design-slide:not(.is-active) {
  border-color: rgba(0, 16, 36, 0.07);
  border-radius: 6px;
}

.design-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: border-radius 240ms ease;
}

.design-slide:not(.is-active) img {
  border-radius: 6px;
}

.design-label {
  margin: 12px 0 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 14.34px;
  line-height: 17px;
  font-weight: 400;
  letter-spacing: -0.24px;
  text-align: center;
}

.design-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 303px;
  height: 48px;
  margin-top: 16px;
}

.design-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  overflow: visible;
}

.design-thumb img {
  width: 39.43px;
  height: 39.43px;
  object-fit: cover;
  border: 0.86px solid var(--neutral-3);
  border-radius: 50%;
}

.design-thumb.is-active {
  border: 2.57px solid var(--action);
}

.design-thumb.is-active img {
  border-color: transparent;
}

.design-thumb.is-active::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: var(--action) url("public/assets/icons/check.svg") center / 10px 10px no-repeat;
}

.design-submit {
  width: 303px;
  height: 44px;
  margin-top: 18px;
}

.app-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 375px;
  height: 712px;
  padding: 16px 0 32px;
  overflow: hidden;
  background: #ffffff;
}

.app-content {
  width: 375px;
  padding: 40px 16px 0;
  text-align: center;
}

.app-content h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: 0.36px;
}

.segmented {
  display: flex;
  gap: 4px;
  align-items: center;
  width: max-content;
  max-width: none;
  padding: 2px;
  border-radius: 10px;
  background: var(--neutral-1);
  overflow: hidden;
}

.segmented button {
  min-width: 28px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: -0.08px;
  white-space: nowrap;
}

.segmented button.is-active {
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.app-tabs {
  margin: 28px auto 0;
}

.phone-stage {
  position: relative;
  width: 375px;
  height: 408px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 4.7%, #ffdd2d 46.4%, #d68007 100%);
}

.phone-video {
  position: absolute;
  left: 34px;
  top: 8px;
  width: 308px;
  height: 400px;
  overflow: hidden;
  border-radius: 64px 64px 0 0;
  background: #222222;
}

.video-preview {
  position: absolute;
  left: -54px;
  top: 16px;
  width: 482px;
  height: 479px;
  object-fit: cover;
}

.iphone-frame {
  position: absolute;
  left: 24px;
  top: 0;
  width: 329px;
  height: 673px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.play-button img {
  width: 24px;
  height: 24px;
}

.app-download {
  width: 343px;
  height: 56px;
  margin: -1px 16px 0;
  border-radius: 16px;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.41px;
}

.app-download img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.tabs-section {
  width: 374px;
  height: 68px;
  padding: 16px 0 20px 16px;
  overflow: hidden;
}

.useful-tabs {
  width: 390px;
}

.faq-section {
  width: 375px;
  height: 304px;
  padding: 10px 16px;
}

.faq-card {
  width: 343px;
  height: 284px;
  padding-top: 12px;
  border-radius: 24px;
  background: var(--neutral-1-opaque);
  overflow: hidden;
}

.faq-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 343px;
  padding: 8px 20px;
  background: transparent;
  color: var(--text-primary);
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.41px;
  text-align: left;
}

.faq-row:nth-child(1) {
  min-height: 76px;
}

.faq-row:nth-child(2),
.faq-row:nth-child(3) {
  min-height: 56px;
}

.faq-row img {
  width: 16px;
  height: 16px;
  margin-top: 12px;
  opacity: 0.35;
  transition: transform 140ms ease;
}

.faq-row.is-open img {
  transform: rotate(180deg);
}

.show-all {
  width: 303px;
  height: 44px;
  margin: 8px 20px 20px;
  border-radius: 12px;
  background: var(--neutral-1);
  color: var(--action);
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: -0.24px;
}

.help-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 375px;
  height: 140px;
  padding: 10px 16px;
}

.help-card {
  display: flex;
  justify-content: space-between;
  width: 343px;
  height: 120px;
  padding: 16px 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 6px 34px rgba(0, 0, 0, 0.12);
}

.help-card h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.38px;
}

.help-card p {
  margin: 8px 0;
  color: var(--text-primary);
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: -0.08px;
}

.help-card a {
  color: var(--action);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -0.08px;
  text-decoration: none;
}

.help-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--action);
}

.help-icon img {
  width: 24px;
  height: 24px;
}

.footer-section {
  width: 375px;
  height: 877px;
  padding-top: 24px;
}

.footer-inner {
  width: 375px;
  min-height: 853px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: var(--footer-bg);
  color: #ffffff;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 375px;
  padding: 24px 16px 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 30px;
  background: #000000;
  color: #ffffff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: -0.08px;
  text-decoration: none;
  white-space: nowrap;
}

.chip span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: -8px;
  border-radius: 50%;
  background: #ffffff;
}

.chip span + span {
  margin-left: -6px;
  margin-right: 4px;
  background: #00d635;
}

.chip img {
  width: 14px;
  height: 14px;
}

.chip--career span {
  margin-right: 4px;
  background: var(--action);
}

.chip--wide {
  width: 328px;
  overflow: hidden;
  justify-content: flex-start;
  background: #000000;
  mask-image: linear-gradient(to right, #000000 94%, transparent 100%);
}

.cookie {
  width: 360px;
  margin: 0;
  padding: 12px 16px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: -0.08px;
}

.cookie a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
  padding: 16px 16px 24px;
}

.footer-links a {
  color: #ffffff;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: -0.08px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-bottom {
  margin: 0 16px;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -0.08px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials img,
.masked {
  display: block;
  width: 20px;
  height: 20px;
}

.masked {
  background: #ffffff;
  mask: var(--mask) center / contain no-repeat;
}
