:root {
  --bg-page: #f4f5f7;
  --bg-hero-start: #050608;
  --bg-hero-end: #12131c;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --brand-dark: #06060c;
  --brand-green: #C99804;
  --card-radius: 20px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVIGATION */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-main);
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.link {
  color: var(--text-main);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}

.btn-dark {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 20px 35px rgba(6, 6, 12, 0.25);
}

.btn-dark:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-main);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-main);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

.menu-toggle span {
  height: 2px;
  width: 18px;
  background: var(--text-main);
  display: block;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, rgba(244, 179, 0, 0.25), transparent 40%),
    linear-gradient(135deg, var(--bg-hero-start), var(--bg-hero-end));
  color: #ffffff;
  padding: 96px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand-green);
  margin-bottom: 10px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-search {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-search .field {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.hero-search .field span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-search input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.hero-search .btn {
  align-self: center;
  margin-top: auto;
}

.hero-footnote {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 45px 60px rgba(0, 0, 0, 0.45);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.hero-visual-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(5, 6, 8, 0.8);
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  width: 210px;
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}

.hero-visual-card strong {
  font-size: 1.6rem;
  display: block;
  margin: 6px 0;
}

/* GENERIC SECTIONS */

.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 0;
}

.partners {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CATEGORIES */

.categories-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--card-radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(15, 23, 42, 0.2);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
}

.category-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.category-content p {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.85);
}

.category-content h3 {
  margin: 0;
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 10px 32px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* PRO SECTION */

.split {
  background: #ffffff;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.split-media img {
  border-radius: var(--card-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 {
  margin-top: 0;
}

.split-copy ul {
  padding-left: 18px;
  color: var(--text-muted);
}

/* PROCESS */

.process {
  background: #0a0b12;
  color: #ffffff;
}

.process-steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.process-steps article {
  border-radius: var(--card-radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-steps span {
  font-size: 0.85rem;
  color: var(--brand-green);
  letter-spacing: 0.2em;
}

/* APP */

.app {
  background: #ffffff;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.qr-card {
  margin: 30px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 18px;
}

.qr-placeholder {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: #f0fdf4;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.app-phone {
  justify-self: center;
}

.phone-screen {
  width: 260px;
  height: 520px;
  border-radius: 36px;
  padding: 28px;
  background: linear-gradient(180deg, #0a0b12, #151a2b);
  color: #fff;
  box-shadow: 0 35px 60px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 6px solid #000;
}

.phone-screen .pill {
  align-self: flex-start;
  background: rgba(0, 244, 133, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--brand-green);
  font-size: 0.75rem;
}

.phone-card {
  margin-top: auto;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  padding: 18px;
}

/* CTA PANEL */

.cta-panel {
  background: linear-gradient(120deg, #050608, #15172a);
  color: #fff;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

/* FOOTER */

.site-footer {
  background: #ffffff;
  color: #050608;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: #050608;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}

.footer-socials a {
  margin-left: 16px;
  color: #fff;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-search {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-search .btn {
    width: 100%;
  }

  .partners-row {
    text-align: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

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