@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #130d09;
  --bg-elevated: rgba(34, 20, 13, 0.76);
  --bg-soft: rgba(255, 245, 232, 0.08);
  --line: rgba(255, 214, 176, 0.16);
  --text: #fff3e7;
  --muted: #e7cbb1;
  --accent: #ff8f4d;
  --accent-deep: #ff5c33;
  --accent-gold: #ffce73;
  --accent-ink: #1f2833;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 77, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 206, 115, 0.14), transparent 26%),
    linear-gradient(160deg, #0e0906 0%, #17100c 40%, #21120b 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.35;
}

a {
  color: inherit;
}

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

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

.site-header,
.site-footer,
.hero,
.subpage-hero,
.section,
.value-strip,
.cta-band {
  backdrop-filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 11, 8, 0.72);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.hero,
.subpage-hero {
  display: grid;
  gap: 28px;
  margin-top: 24px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 143, 77, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(24, 15, 10, 0.76);
  box-shadow: var(--shadow);
}

.hero {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.subpage-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.feature-card p,
.story-card p,
.policy-card p,
.support-note,
.table-cell,
.site-footer p,
.showcase-meta p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #1b120d;
  box-shadow: 0 18px 40px rgba(255, 92, 51, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.button-appstore {
  gap: 10px;
  padding: 0 24px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  min-height: 54px;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.button-appstore:hover {
  background: #f0f0f0;
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.12);
}

.appstore-logo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.appstore-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.appstore-text small {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.appstore-text {
  font-size: 1.1rem;
}

.policy-link {
  margin-top: 10px;
}

.policy-link a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-link a:hover {
  color: var(--accent-gold);
}

.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #1b120d;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.tutorial-steps {
  display: grid;
  gap: 18px;
}

.tutorial-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #1b120d;
  font-weight: 800;
  font-size: 1.2rem;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-gold);
  box-shadow: 0 0 0 6px rgba(255, 206, 115, 0.14);
}

.hero-stage {
  display: grid;
  gap: 18px;
}

.showcase-card,
.feature-card,
.story-card,
.value-pill,
.support-panel,
.policy-card,
.faq-item,
.table-like,
.cta-band,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showcase-card,
.feature-card,
.story-card,
.support-panel,
.policy-card,
.table-like,
.site-footer {
  background: var(--bg-elevated);
}

.showcase-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.skyline-card {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 22px;
  padding: 24px;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(255, 143, 77, 0.18), rgba(255, 206, 115, 0.1)),
    url("assets/bg-financial.png") center/cover no-repeat;
}

.app-icon {
  width: 124px;
  height: 124px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.showcase-label,
.card-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent-gold);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.small-card,
.wide-card {
  position: relative;
  min-height: 210px;
}

.small-card img,
.wide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.small-card div,
.wide-card div {
  position: absolute;
  inset: auto 18px 18px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 10, 8, 0.74);
}

.truck-card img {
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 143, 77, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(28, 17, 12, 0.94), rgba(17, 11, 8, 0.92));
}

.wide-card {
  grid-column: span 2;
}

.value-strip,
.cta-band,
.section {
  margin-top: 24px;
  border-radius: var(--radius-xl);
}

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

.value-pill {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.value-number {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.value-label {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(23, 14, 10, 0.72);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 760px;
}

.feature-grid,
.story-grid,
.support-grid,
.policy-grid,
.policy-stack {
  display: grid;
  gap: 18px;
}

.feature-grid,
.support-grid,
.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.story-card,
.policy-card,
.support-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.accent-warm {
  background:
    linear-gradient(160deg, rgba(255, 143, 77, 0.24), rgba(36, 16, 11, 0.86)),
    var(--bg-elevated);
}

.accent-ink {
  background:
    linear-gradient(160deg, rgba(41, 55, 69, 0.9), rgba(17, 12, 9, 0.84)),
    var(--bg-elevated);
}

.accent-gold {
  background:
    linear-gradient(160deg, rgba(255, 206, 115, 0.18), rgba(31, 17, 9, 0.88)),
    var(--bg-elevated);
}

.support-panel {
  background:
    linear-gradient(160deg, rgba(255, 143, 77, 0.18), rgba(22, 14, 11, 0.92)),
    var(--bg-elevated);
}

.support-email {
  display: inline-block;
  margin: 10px 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

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

.table-like {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.table-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1.45fr;
}

.table-row + .table-row {
  border-top: 1px solid var(--line);
}

.table-cell {
  padding: 18px 20px;
}

.table-heading {
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 92, 51, 0.18), rgba(255, 206, 115, 0.08)),
    rgba(27, 16, 11, 0.84);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  animation: reveal-up 0.7s ease both;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.08s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.16s;
}

.reveal:nth-of-type(4) {
  animation-delay: 0.24s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .subpage-hero,
  .story-grid,
  .policy-stack,
  .value-strip,
  .feature-grid,
  .support-grid,
  .policy-grid,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero,
  .subpage-hero,
  .section,
  .cta-band {
    padding: 28px;
  }

  .site-header,
  .cta-band,
  .site-footer {
    border-radius: 28px;
  }

  .site-header,
  .site-footer,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero,
  .subpage-hero,
  .section,
  .cta-band {
    padding: 22px;
  }

  .skyline-card {
    grid-template-columns: 1fr;
  }

  .app-icon {
    width: 96px;
    height: 96px;
  }

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

  .wide-card {
    grid-column: auto;
  }

  .feature-grid,
  .support-grid,
  .policy-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .site-nav {
    width: 100%;
  }
}

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

  .reveal,
  .site-nav a,
  .button {
    animation: none;
    transition: none;
  }
}
