:root {
  --orange: #ff6b2c;
  --orange-2: #ff8a4d;
  --orange-dark: #e85a1a;
  --navy: #1a1a2e;
  --navy-2: #16213e;
  --ink: #101828;
  --muted: #667085;
  --line: #e5e7eb;
  --soft: #f7f8fb;
  --white: #ffffff;
  --success: #12b76a;
  --shadow: 0 28px 90px rgba(16, 24, 40, 0.16);
  --shadow-soft: 0 16px 44px rgba(16, 24, 40, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 4%, rgba(255, 107, 44, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(26, 26, 46, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffaf7 0%, #ffffff 38%, #f7f8fb 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand img {
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.main-nav a,
.footer-inner a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.footer-inner a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 20px 42px rgba(255, 107, 44, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 24px 56px rgba(255, 107, 44, 0.36);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
}

.btn-large {
  min-height: 60px;
  padding: 0 30px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 86px);
  padding: 72px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.22;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 107, 44, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 670px;
}

.hero-proof div {
  padding: 17px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.hero-proof strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

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

.visual-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 660px;
  isolation: isolate;
}

.visual-stage::before,
.visual-stage::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(8px);
  z-index: -1;
}

.visual-stage::before {
  width: 470px;
  height: 470px;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.3), rgba(26, 26, 46, 0.16));
}

.visual-stage::after {
  right: 22px;
  bottom: 78px;
  width: 220px;
  height: 220px;
  background: rgba(255, 138, 77, 0.22);
}

.phone-card {
  position: relative;
  overflow: hidden;
  width: min(330px, 72vw);
  padding: 12px;
  border: 10px solid #101828;
  border-radius: 38px;
  background: #101828;
  box-shadow:
    0 34px 90px rgba(16, 24, 40, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-card-main {
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-card-mini {
  position: absolute;
  right: -6px;
  bottom: 40px;
  width: 190px;
  border-width: 8px;
  border-radius: 30px;
  transform: rotate(6deg);
  box-shadow: 0 26px 70px rgba(16, 24, 40, 0.24);
}

.phone-top {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 23px;
  border-radius: 0 0 14px 14px;
  background: #101828;
  transform: translateX(-50%);
}

.phone-card img {
  width: 100%;
  border-radius: 26px;
  background: var(--white);
}

.floating-card {
  position: absolute;
  width: 220px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  animation: cardFloat 7s ease-in-out infinite;
}

.floating-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff1ea;
  font-size: 11px;
  font-weight: 900;
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.floating-card span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.floating-card-left {
  bottom: 126px;
  left: -6px;
}

.floating-card-right {
  top: 126px;
  right: -4px;
  animation-delay: 900ms;
}

.floating-card-bottom {
  right: 104px;
  bottom: 4px;
  animation-delay: 1600ms;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 92px;
}

.market-strip div {
  padding: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.market-strip div:hover {
  border-color: rgba(255, 107, 44, 0.28);
  box-shadow: 0 18px 48px rgba(255, 107, 44, 0.12);
  transform: translateY(-3px);
}

.market-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.market-strip strong {
  color: var(--navy);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.process-card,
.screen-card,
.why-item {
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.08);
  content: "";
}

.feature-card:hover {
  border-color: rgba(255, 107, 44, 0.26);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.11);
  transform: translateY(-5px);
}

.feature-icon,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 28px rgba(255, 107, 44, 0.24);
  font-size: 13px;
  font-weight: 950;
}

.feature-card p,
.process-card p,
.why-item span {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.process-section {
  margin: 96px 0;
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(22, 33, 62, 0.98)),
    url("assets/pattern.svg");
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .section-heading p:not(.eyebrow),
.process-card p {
  color: rgba(255, 255, 255, 0.72);
}

.process-card {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.process-card span {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

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

.screen-card {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.screen-card:hover {
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.13);
  transform: translateY(-5px);
}

.screen-card-featured {
  background: linear-gradient(180deg, #ffffff, #fff6f1);
}

.screen-card img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.08);
}

.screen-card figcaption {
  padding: 14px 4px 2px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.why-section {
  margin: 96px 0 0;
  padding: 90px 0;
  background:
    linear-gradient(180deg, #ffffff, #fffaf7);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

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

.why-item {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.why-item:hover {
  border-color: rgba(255, 107, 44, 0.26);
  transform: translateX(4px);
}

.why-item strong {
  color: var(--navy);
  font-size: 17px;
}

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: 32px;
  align-items: center;
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 44px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.18), transparent 20rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.download-section::before {
  position: absolute;
  inset: auto -70px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.28);
  content: "";
  filter: blur(3px);
}

.download-section h2 {
  color: var(--white);
}

.download-section p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.download-copy,
.download-actions,
.download-phone {
  position: relative;
  z-index: 1;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.app-store-soon {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 850;
}

.download-phone {
  display: grid;
  place-items: center;
}

.download-phone .phone-card {
  width: 220px;
  transform: rotate(5deg);
}

.site-footer {
  padding: 42px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: #101828;
}

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

.footer-brand {
  color: var(--white);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

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

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

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual,
  .visual-stage {
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  .site-header {
    border-radius: var(--radius);
  }

  .main-nav {
    display: none;
  }

  .market-strip,
  .feature-grid,
  .process-grid,
  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-layout,
  .download-section {
    grid-template-columns: 1fr;
  }

  .download-phone {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 28px;
    padding: 48px 0 46px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .btn,
  .hero-proof {
    width: 100%;
  }

  .hero-proof,
  .market-strip,
  .feature-grid,
  .process-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .visual-stage {
    min-height: 600px;
  }

  .phone-card-main {
    width: min(292px, 84vw);
  }

  .phone-card-mini {
    right: 0;
    bottom: 92px;
    width: 142px;
  }

  .floating-card {
    width: min(250px, 86vw);
  }

  .floating-card-left {
    left: 0;
    bottom: 58px;
  }

  .floating-card-right {
    top: 56px;
    right: 0;
  }

  .floating-card-bottom {
    display: none;
  }

  .market-strip {
    margin-bottom: 64px;
  }

  .process-section,
  .why-section {
    margin: 66px 0;
    padding: 64px 0;
  }

  .download-section {
    padding: 30px 20px;
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .download-actions {
    display: grid;
  }

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

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

  .reveal,
  .btn,
  .header-cta,
  .phone-card-main,
  .floating-card {
    animation: none;
    transition: none;
  }
}
