* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #f8fafc;
  --line: #e2e8f0;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(15, 23, 42, .10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, .75);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.6px;
}

.brand > span:last-child > span {
  color: var(--primary);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  color: white !important;
  background: var(--primary);
  padding: 11px 17px;
  border-radius: 10px;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 105px;
  background: radial-gradient(circle at 85% 20%, #eff6ff 0, transparent 36%),
              radial-gradient(circle at 15% 80%, #eef2ff 0, transparent 30%),
              #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(44px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -3.2px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  max-width: 620px;
  margin: 25px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 11px;
  font-weight: 750;
  font-size: 14px;
  transition: .2s ease;
}

.btn-primary {
  color: white;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .23);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: white;
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.trust-row div {
  display: flex;
  flex-direction: column;
}

.trust-row strong {
  font-size: 14px;
}

.trust-row span {
  font-size: 12px;
  color: var(--muted);
}

.app-preview {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.phone {
  width: 300px;
  padding: 11px;
  border-radius: 39px;
  background: #0f172a;
  box-shadow: 0 35px 70px rgba(15, 23, 42, .28);
  transform: rotate(3deg);
}

.phone-notch {
  position: absolute;
  width: 94px;
  height: 24px;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  border-radius: 0 0 15px 15px;
  z-index: 2;
}

.phone-screen {
  min-height: 570px;
  border-radius: 30px;
  background: #f8fafc;
  padding: 50px 17px 20px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.app-top small {
  display: block;
  color: #94a3b8;
  font-size: 10px;
}

.app-top strong {
  font-size: 15px;
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.balance-card {
  padding: 19px;
  border-radius: 19px;
  color: white;
  background: linear-gradient(135deg, #2563eb, #4338ca);
}

.balance-card small,
.balance-card span {
  display: block;
  opacity: .8;
  font-size: 10px;
}

.balance-card strong {
  display: block;
  margin: 3px 0;
  font-size: 28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 22px;
}

.quick-grid div {
  text-align: center;
  padding: 12px 3px;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: white;
  color: var(--primary);
  font-weight: 800;
}

.quick-grid small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 7px;
}

.mini-title {
  margin: 13px 0 8px;
  font-size: 11px;
  font-weight: 800;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 4px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 10px;
}

.invoice-row b {
  color: #0f766e;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.floating-card small,
.floating-card b {
  display: block;
}

.floating-card b {
  font-size: 11px;
}

.floating-card small {
  color: #64748b;
  font-size: 9px;
}

.sync-card {
  left: 0;
  top: 145px;
}

.invoice-card {
  right: 0;
  bottom: 115px;
}

.check, .receipt {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--primary);
  background: #eff6ff;
  font-weight: 900;
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.logo-strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #64748b;
}

.logo-strip-inner span {
  font-size: 10px;
  letter-spacing: 1.4px;
}

.logo-strip-inner b {
  font-size: 12px;
  letter-spacing: .7px;
}

.section {
  padding: 105px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

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

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

.feature-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card.featured {
  background: linear-gradient(145deg, #eff6ff, #f8fafc);
  border-color: #bfdbfe;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: #eff6ff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 9px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.feature-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.workflow {
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.step > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
}

.step-icon {
  font-size: 28px;
  margin: 10px 0 17px;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 13px;
}

.audience-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: 30px;
  background: #0f172a;
  color: white;
}

.audience-box h2 {
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.audience-box p {
  margin-top: 17px;
  color: #cbd5e1;
}

.audience-box .eyebrow {
  color: #93c5fd;
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list div {
  padding: 16px 18px;
  border: 1px solid #334155;
  border-radius: 13px;
  color: #e2e8f0;
  background: #172033;
}

.pricing {
  background: #f8fafc;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1.3fr .7fr auto;
  align-items: center;
  gap: 30px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  box-shadow: 0 10px 35px rgba(15,23,42,.05);
}

.plan-label {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 4px 0;
  font-size: 24px;
}

.pricing-card p {
  color: var(--muted);
  font-size: 13px;
}

.price {
  font-size: 42px;
  font-weight: 850;
  white-space: nowrap;
}

.price span {
  font-size: 23px;
}

.price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.faq-container {
  max-width: 850px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: white;
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 750;
  font-size: 14px;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
}

details p {
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.download-section {
  padding: 0 0 100px;
}

.download-box {
  overflow: hidden;
  min-height: 430px;
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  padding: 70px;
  border-radius: 32px;
  background: linear-gradient(125deg, #1d4ed8, #4338ca);
  color: white;
}

.download-box:after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: -170px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025);
}

.download-box h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.8px;
}

.download-box p {
  max-width: 590px;
  margin: 16px 0 25px;
  color: #dbeafe;
}

.eyebrow.light {
  color: #bfdbfe;
}

.download-actions {
  display: flex;
  gap: 12px;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  padding: 10px 15px;
  border-radius: 10px;
  background: white;
  color: #111827;
}

.play-button small,
.play-button strong {
  display: block;
  line-height: 1.1;
}

.play-button small {
  font-size: 8px;
  letter-spacing: .7px;
}

.play-button strong {
  margin-top: 3px;
  font-size: 18px;
}

.play-icon {
  font-size: 22px;
}

.store-note {
  display: block;
  margin-top: 10px;
  color: #bfdbfe;
  font-size: 10px;
}

.download-visual {
  position: relative;
  height: 350px;
  display: grid;
  place-items: center;
}

.download-phone {
  width: 190px;
  height: 340px;
  padding: 9px;
  border-radius: 28px;
  background: #0f172a;
  transform: rotate(8deg);
  box-shadow: 0 30px 50px rgba(0,0,0,.25);
}

.download-screen {
  height: 100%;
  border-radius: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
  color: var(--ink);
  text-align: center;
}

.download-logo {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: var(--primary);
  color: white;
  font-size: 34px;
  font-weight: 900;
}

.download-screen strong {
  font-size: 18px;
}

.download-screen span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.footer {
  padding: 70px 0 25px;
  background: #020617;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  color: white;
}

.footer p {
  max-width: 280px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 8px 0;
  color: #94a3b8;
  font-size: 12px;
}

.footer-grid > div:not(:first-child) a:hover {
  color: white;
}

.copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 11px;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .25;
  pointer-events: none;
}

.glow-one {
  background: #60a5fa;
  right: 2%;
  top: 10%;
}

.glow-two {
  background: #818cf8;
  left: -100px;
  bottom: -100px;
}

@media (max-width: 900px) {
  .hero-grid,
  .audience-box,
  .download-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 65px;
  }

  .app-preview {
    min-height: 520px;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-card .btn {
    grid-column: 1 / -1;
  }

  .download-visual {
    display: none;
  }

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

  .footer-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    padding: 55px 0 70px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -2.3px;
  }

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

  .trust-row {
    gap: 20px;
  }

  .app-preview {
    transform: scale(.9);
    margin: -25px 0 -30px;
  }

  .logo-strip-inner {
    overflow: hidden;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .logo-strip-inner b:nth-of-type(n+3) {
    display: none;
  }

  .section {
    padding: 75px 0;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .audience-box {
    padding: 38px 25px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
    padding: 27px;
  }

  .pricing-card .btn {
    grid-column: auto;
  }

  .download-box {
    padding: 42px 25px;
  }

  .download-section {
    padding-bottom: 70px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .copyright {
    flex-direction: column;
    gap: 5px;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
