:root {
  --bg: #fffafc;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #1f1637;
  --text-soft: #706786;
  --line: rgba(255, 145, 0, 0.14);
  --brand-violet: #d79a00;
  --brand-pink: #ff7a00;
  --brand-blue: #ffd24a;
  --brand-gold: #ffb100;
  --shadow-soft: 0 24px 50px rgba(255, 145, 0, 0.14);
  --shadow-strong: 0 35px 100px rgba(255, 122, 0, 0.2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 186, 28, 0.16), transparent 24%),
    radial-gradient(circle at right 20%, rgba(255, 122, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fff8ef 45%, #ffffff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
}

body::before {
  top: -80px;
  right: -60px;
  background: rgba(255, 174, 0, 0.38);
}

body::after {
  bottom: 8%;
  left: -80px;
  background: rgba(255, 122, 0, 0.26);
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-family: "Sora", sans-serif;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
  box-shadow: 0 18px 34px rgba(255, 145, 0, 0.28);
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-pink);
}

.section {
  padding: 58px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 120px);
  padding-top: 38px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 145, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-violet);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(255, 145, 0, 0.1);
}

.eyebrow-pill-light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 10ch;
  margin-top: 20px;
  font-size: clamp(3.2rem, 6vw, 6.3rem);
}

.hero-text,
.section-heading p,
.feature-card p,
.showcase-copy p,
.step-card p,
.faq-item p,
.cta-panel p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 54ch;
  margin: 22px 0 0;
}

.hero-actions,
.cta-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-nav {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
  box-shadow: 0 18px 34px rgba(255, 145, 0, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-nav:hover,
.button-nav:focus-visible {
  box-shadow: 0 22px 40px rgba(255, 122, 0, 0.32);
}

.button-secondary {
  border-color: rgba(255, 145, 0, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.store-status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 145, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(255, 145, 0, 0.08);
}

.store-status-light {
  margin-top: 24px;
}

.store-pill-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.proof-chip,
.feature-card,
.step-card,
.activity-card,
.faq-item {
  border: 1px solid rgba(255, 145, 0, 0.1);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.proof-chip {
  padding: 16px 18px;
  border-radius: 22px;
}

.proof-chip strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.proof-chip span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-shape,
.showcase-shape {
  position: absolute;
  background: linear-gradient(135deg, #ffd24a, var(--brand-gold), var(--brand-pink));
  box-shadow: var(--shadow-strong);
  animation: pulse-blob 9s ease-in-out infinite;
}

.hero-shape-main {
  top: -120px;
  right: -90px;
  width: 560px;
  height: 440px;
  border-radius: 32% 68% 60% 40% / 44% 33% 67% 56%;
}

.hero-shape-accent {
  top: 120px;
  right: 80px;
  width: 180px;
  height: 180px;
  opacity: 0.22;
  border-radius: 58% 42% 40% 60% / 50% 53% 47% 50%;
  filter: blur(8px);
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.note-top {
  top: 108px;
  left: 10px;
}

.note-bottom {
  right: 20px;
  bottom: 90px;
}

.phone-card {
  position: absolute;
  z-index: 3;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.phone-card-primary {
  top: 68px;
  right: 88px;
  transform: rotate(16deg);
  --card-rotation: 16deg;
  animation: float-card 6s ease-in-out infinite;
}

.phone-card-secondary {
  position: relative;
  top: 36px;
  left: 84px;
  transform: rotate(-16deg);
  --card-rotation: -16deg;
  animation: float-card 7s ease-in-out infinite reverse;
}

.phone-top {
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
}

.phone-notch {
  width: 92px;
  height: 10px;
  border-radius: 999px;
  background: rgba(57, 32, 88, 0.12);
}

.phone-screen {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 174, 0, 0.2), transparent 30%),
    linear-gradient(180deg, #fffef9 0%, #fff5e8 100%);
}

.screen-top-card,
.screen-balance,
.screen-route-card,
.mini-panel,
.stat-box,
.screen-availability {
  border: 1px solid rgba(255, 145, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 28px rgba(255, 145, 0, 0.08);
}

.screen-top-card,
.screen-balance,
.screen-route-card,
.screen-availability {
  padding: 16px;
  border-radius: 22px;
}

.screen-top-card strong,
.screen-balance strong,
.mini-panel strong,
.stat-box strong,
.screen-availability strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.screen-top-card strong {
  margin-top: 12px;
  font-size: 1.16rem;
}

.screen-top-card p,
.screen-availability p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.screen-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
  color: #ffffff;
  font-weight: 700;
}

.screen-balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.muted-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.discount-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 174, 0, 0.16);
  color: var(--brand-pink);
  font-weight: 700;
}

.screen-route-card {
  display: grid;
  gap: 16px;
}

.route-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.route-line strong {
  display: block;
  font-size: 0.95rem;
}

.route-line p {
  margin: 2px 0 0;
  color: var(--text-soft);
}

.route-dot {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 999px;
  flex-shrink: 0;
}

.route-dot-start {
  background: linear-gradient(135deg, #ffd24a, #ffe37f);
}

.route-dot-end {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-pink));
}

.screen-mini-grid,
.screen-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-panel,
.stat-box {
  padding: 14px;
  border-radius: 18px;
}

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

.section-heading-center {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.showcase-copy h2,
.cta-panel h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.section-heading p {
  margin: 18px 0 0;
}

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

.feature-card {
  position: relative;
  padding: 30px 28px 68px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.icon-bubble {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  margin-bottom: 22px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  box-shadow: 0 18px 34px rgba(255, 145, 0, 0.18);
}

.icon-pink {
  background: linear-gradient(135deg, var(--brand-pink), #ff9d2e);
}

.icon-violet {
  background: linear-gradient(135deg, var(--brand-violet), #f0bc25);
}

.icon-blue {
  background: linear-gradient(135deg, var(--brand-blue), #ffe37f);
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.38rem;
}

.feature-number {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 145, 0, 0.12);
  border-radius: 999px;
  color: var(--brand-violet);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
}

.app-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.showcase-visual {
  position: relative;
  min-height: 520px;
}

.showcase-shape {
  left: -50px;
  bottom: 20px;
  width: 430px;
  height: 320px;
  border-radius: 54% 46% 35% 65% / 54% 39% 61% 46%;
}

.showcase-copy p {
  margin: 18px 0 0;
}

.showcase-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.8;
}

.showcase-list li + li {
  margin-top: 10px;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
  box-shadow: 0 8px 16px rgba(255, 145, 0, 0.18);
}

.store-buttons {
  margin-top: 28px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 145, 0, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.store-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
}

.store-copy strong,
.activity-head strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.store-copy small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  margin-top: 30px;
  align-items: start;
}

.workflow-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
}

.step-card p {
  margin: 0;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 16px 26px rgba(255, 145, 0, 0.18);
}

.step-pink {
  background: linear-gradient(135deg, var(--brand-pink), #ffb347);
}

.step-blue {
  background: linear-gradient(135deg, var(--brand-blue), #ffe37f);
}

.step-gold {
  background: linear-gradient(135deg, var(--brand-gold), #ffd47d);
}

.activity-card {
  padding: 24px;
  border-radius: 30px;
}

.activity-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.activity-head span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.activity-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(255, 145, 0, 0.1);
}

.activity-item + .activity-item {
  margin-top: 14px;
}

.activity-avatar {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
}

.activity-copy strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
}

.activity-copy p {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.activity-value {
  color: var(--brand-pink);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 32px auto 0;
}

.faq-item {
  padding: 0 24px;
  border-radius: 28px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 0 24px;
}

.cta-panel {
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
  box-shadow: var(--shadow-strong);
}

.cta-panel h2 {
  max-width: 14ch;
  margin-top: 18px;
  color: #ffffff;
}

.cta-panel p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
  margin-top: 28px;
}

.button-cta-primary {
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(34, 12, 52, 0.18);
}

.button-cta-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0 8px;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(var(--card-rotation, 16deg));
  }

  50% {
    transform: translateY(-16px) rotate(var(--card-rotation, 16deg));
  }
}

@keyframes pulse-blob {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (max-width: 1120px) {
  .hero,
  .app-showcase,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 10px;
  }

  .hero h1,
  .cta-panel h2 {
    max-width: 100%;
  }

  .hero-visual,
  .showcase-visual {
    min-height: 560px;
  }

  .phone-card-primary {
    left: 50%;
    right: auto;
    margin-left: -180px;
    transform: rotate(12deg);
    --card-rotation: 12deg;
  }

  .phone-card-secondary {
    left: 50%;
    margin-left: -180px;
    transform: rotate(-12deg);
    --card-rotation: -12deg;
  }

  .hero-shape-main {
    left: 50%;
    right: auto;
    margin-left: -280px;
  }

  .showcase-shape {
    left: 50%;
    margin-left: -215px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    top: 10px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .site-nav,
  .button-nav {
    display: none;
  }

  .section {
    padding: 42px 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .mini-proof,
  .feature-grid,
  .screen-mini-grid,
  .screen-stat-row {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .showcase-visual {
    min-height: 460px;
  }

  .hero-shape-main {
    width: 420px;
    height: 340px;
    top: -40px;
  }

  .phone-card,
  .phone-card-primary,
  .phone-card-secondary {
    width: min(100%, 320px);
  }

  .phone-card-primary {
    top: 54px;
    margin-left: -160px;
  }

  .phone-card-secondary {
    margin-left: -160px;
  }

  .floating-note {
    display: none;
  }

  .feature-card {
    padding-bottom: 80px;
  }

  .activity-item {
    grid-template-columns: auto 1fr;
  }

  .activity-value {
    grid-column: 2;
  }

  .cta-panel {
    padding: 30px 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .phone-card,
  .hero-shape,
  .showcase-shape {
    transition: none;
    animation: none;
  }
}
