
:root {
  --bg: #030b08;
  --bg-2: #07150f;
  --panel: #0b1c15;
  --panel-2: #10271c;
  --line: rgba(112, 255, 141, .17);
  --green: #2ee85a;
  --green-2: #00bd65;
  --green-soft: #92ffa6;
  --text: #f5fbf7;
  --muted: #a9b9b0;
  --light-bg: #f6faf7;
  --dark-text: #102018;
  --shadow: 0 25px 70px rgba(0, 0, 0, .28);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 4%, rgba(0, 211, 99, .15), transparent 27rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 14px; top: -80px; z-index: 9999;
  padding: 10px 14px; border-radius: 10px; background: #fff; color: #000;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3, 11, 8, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  min-height: 74px;
  display: flex; align-items: center; gap: 28px;
}
.brand { width: 190px; flex: 0 0 auto; }
.brand img { width: 190px; height: 48px; }
.main-nav { display: flex; gap: 24px; align-items: center; margin-left: auto; }
.main-nav a {
  color: #d9e7df; font-size: 14px; font-weight: 650;
  text-decoration: none; transition: color .2s ease;
}
.main-nav a:hover { color: var(--green-soft); }
.header-login { margin-left: 8px; }
.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.04); color: #fff;
}
.menu-toggle span:not(.sr-only) {
  width: 20px; height: 2px; display: block; margin: 4px auto; background: currentColor;
}

.button {
  min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 20px; border: 1px solid transparent; border-radius: 12px;
  text-decoration: none; font-size: 14px; font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #031108; background: linear-gradient(135deg, #4df56c, #09ca61);
  box-shadow: 0 12px 34px rgba(18, 222, 91, .22);
}
.button-primary:hover { box-shadow: 0 16px 42px rgba(18, 222, 91, .34); }
.button-secondary, .button-outline {
  color: #f1fff5; border-color: rgba(70, 245, 109, .48); background: rgba(2, 19, 11, .35);
}
.button-secondary:hover, .button-outline:hover { border-color: var(--green); background: rgba(40, 232, 90, .08); }

.hero {
  position: relative; overflow: hidden; padding: 68px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-soft); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow {
  padding: 8px 12px; border: 1px solid rgba(70, 245, 109, .25);
  border-radius: 999px; background: rgba(35, 218, 86, .07);
}
.hero h1 {
  max-width: 680px; margin: 20px 0 16px;
  font-size: clamp(42px, 5.8vw, 73px); line-height: .98; letter-spacing: -.055em;
}
.hero h1 strong, h2 strong { color: var(--green); font-weight: inherit; }
.hero-lead { max-width: 650px; color: #c7d5cd; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; }
.hero-points span {
  position: relative; padding-left: 18px; color: #d5e2db; font-size: 12px; font-weight: 650;
}
.hero-points span::before {
  content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900;
}

.hero-stage { position: relative; min-height: 515px; }
.stage-glow {
  position: absolute; inset: 12% 3% 0 15%; border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 240, 104, .23), rgba(0, 143, 81, .05) 46%, transparent 72%);
  filter: blur(10px);
}
.mascot-card {
  position: absolute; z-index: 3; left: -3%; bottom: 0; width: 34%; margin: 0;
  filter: drop-shadow(0 24px 26px rgba(0,0,0,.36));
}
.mascot-card img { width: 100%; border-radius: 26px 26px 8px 8px; }
.phone {
  position: absolute; z-index: 2; left: 30%; top: 0; width: 39%; min-width: 250px;
  border: 8px solid #101a16; border-radius: 34px; overflow: hidden;
  background: #dce5df; color: #152019; box-shadow: var(--shadow);
}
.phone::before {
  content: ""; position: absolute; z-index: 4; left: 50%; top: 5px; transform: translateX(-50%);
  width: 82px; height: 20px; border-radius: 0 0 14px 14px; background: #07100c;
}
.phone-top {
  min-height: 66px; padding: 20px 13px 10px;
  display: flex; align-items: center; gap: 8px;
  color: #fff; background: #123e29;
}
.phone-top .avatar {
  display: grid; place-items: center; width: 32px; height: 32px;
  color: #021107; background: var(--green); border-radius: 50%; font-weight: 900;
}
.phone-top div { display: flex; flex-direction: column; line-height: 1.1; }
.phone-top small { color: #b6d4c2; font-size: 10px; }
.phone-back { font-size: 28px; }
.phone-menu { margin-left: auto; }
.chat {
  min-height: 325px; padding: 15px 12px 12px;
  background:
    linear-gradient(rgba(236, 244, 239, .91), rgba(236, 244, 239, .91)),
    radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px);
  background-size: auto, 20px 20px;
}
.bubble {
  position: relative; width: 86%; margin-bottom: 9px; padding: 10px 10px 19px;
  border-radius: 10px; font-size: 12px; box-shadow: 0 1px 1px rgba(0,0,0,.09);
}
.bubble time { position: absolute; right: 7px; bottom: 4px; font-size: 8px; color: #6b776f; }
.received { background: #fff; }
.sent { margin-left: auto; background: #bdf4a9; }
.city-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 8px 0 9px; }
.city-options button {
  border: 1px solid #d5e2da; border-radius: 8px; padding: 7px 5px;
  color: #26372d; background: #fff; font-size: 10px; cursor: pointer;
}
.city-options button:hover { border-color: #32d55f; }
.phone-input {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 13px; color: #8b9990; background: #f6f9f7; font-size: 11px;
}
.phone-input b {
  display: grid; place-items: center; width: 28px; height: 28px;
  border-radius: 50%; color: #fff; background: #178e50;
}
.mini-panel {
  position: absolute; z-index: 1; right: 0; top: 66px; width: 36%;
  padding: 17px; border: 1px solid var(--line); border-radius: 20px;
  background: linear-gradient(180deg, rgba(15,42,29,.98), rgba(6,20,13,.98));
  box-shadow: var(--shadow);
}
.panel-head { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.panel-head div { display: flex; flex-direction: column; }
.panel-head small, .panel-metrics span { color: var(--muted); font-size: 9px; }
.panel-head strong { font-size: 15px; }
.live-dot {
  padding: 4px 6px; border-radius: 999px; color: #55f472;
  background: rgba(42,231,90,.1); font-size: 8px; font-weight: 850;
}
.panel-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.panel-metrics div { padding: 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 11px; background: rgba(255,255,255,.03); }
.panel-metrics span { display: block; }
.panel-metrics b { display: block; margin-top: 3px; font-size: 20px; }
.order-list { display: grid; gap: 7px; }
.order {
  display: grid; grid-template-columns: 30px 1fr auto; gap: 8px; align-items: center;
  padding: 9px; border-radius: 10px; background: rgba(255,255,255,.035);
}
.order-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.07); }
.order div { display: flex; flex-direction: column; min-width: 0; }
.order b { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 10px; }
.order small { color: var(--muted); font-size: 8px; }
.order em {
  padding: 3px 5px; border-radius: 999px; color: #57ee73; background: rgba(36,233,80,.1);
  font-size: 7px; font-style: normal; white-space: nowrap;
}
.order em.preparing { color: #ffcf43; background: rgba(255,196,37,.1); }
.order em.delivery { color: #65c9ff; background: rgba(78,185,255,.1); }

.segment-strip {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px;
  margin-top: 38px; padding: 18px 24px;
  border: 1px solid rgba(255,255,255,.06); border-radius: 17px;
  background: rgba(255,255,255,.025); color: #c7d5cd;
}
.segment-strip span { font-size: 12px; }

.light-section {
  padding: 88px 0; color: var(--dark-text); background:
    radial-gradient(circle at 50% 0, rgba(70, 235, 106, .12), transparent 26rem),
    var(--light-bg);
}
.section-heading { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-heading.left { max-width: none; text-align: left; }
.section-heading h2, .merchant-copy h2, .faq-intro h2, .cta-copy h2 {
  margin: 9px 0 10px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.04em;
}
.section-heading p, .faq-intro p { margin: 0; color: #627168; }
.light-section .section-kicker, .categories-section .section-kicker, .faq-section .section-kicker { color: #09823e; }

.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step-card {
  position: relative; min-height: 245px; padding: 26px 20px 22px;
  border: 1px solid #dfe9e2; border-radius: 20px; background: #fff;
  box-shadow: 0 15px 35px rgba(26, 57, 38, .07);
}
.step-number {
  position: absolute; right: 16px; top: 15px; display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%; color: #fff; background: #1fbf51; font-size: 12px; font-weight: 900;
}
.step-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 8px 0 22px; border-radius: 22px; background: #eff9f1; font-size: 34px; }
.step-card h3 { margin: 0 0 8px; font-size: 17px; }
.step-card p { margin: 0; color: #69796f; font-size: 13px; }

.merchant-section { padding: 96px 0; background: linear-gradient(180deg, #07150f, #06110c); }
.merchant-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 50px; align-items: center; }
.merchant-copy > p { color: #bbcbc1; }
.merchant-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.merchant-benefits article {
  display: flex; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025);
}
.merchant-benefits article > span {
  display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px;
  border-radius: 10px; color: #06130e; background: var(--green); font-weight: 900;
}
.merchant-benefits div { display: flex; flex-direction: column; }
.merchant-benefits b { font-size: 13px; }
.merchant-benefits small { color: var(--muted); font-size: 10px; }

.dashboard {
  display: grid; grid-template-columns: 58px 1fr; min-height: 485px;
  border: 1px solid rgba(100,255,136,.24); border-radius: 24px; overflow: hidden;
  background: #f6faf7; color: #17241c; box-shadow: var(--shadow);
}
.dash-sidebar {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 16px 9px; color: #9cb1a4; background: #0b1711;
}
.dash-sidebar img { width: 34px; height: 34px; margin-bottom: 14px; }
.dash-sidebar span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; }
.dash-sidebar .active { color: #001006; background: var(--green); }
.dash-main { min-width: 0; padding: 23px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; }
.dash-header small { color: #7d8b82; font-size: 10px; }
.dash-header h3 { margin: 2px 0 0; font-size: 24px; }
.dash-header button { border: 0; border-radius: 9px; padding: 9px 12px; color: #fff; background: #1ca24e; font-size: 10px; }
.dash-tabs { display: flex; gap: 6px; margin: 20px 0 14px; overflow-x: auto; }
.dash-tabs span { flex: 0 0 auto; padding: 7px 9px; border-radius: 8px; color: #738078; background: #eaf0ec; font-size: 9px; }
.dash-tabs .selected { color: #fff; background: #14251b; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 9px; }
th, td { padding: 11px 8px; border-bottom: 1px solid #e6ece8; text-align: left; white-space: nowrap; }
th { color: #809087; font-weight: 700; }
.tag { display: inline-flex; padding: 4px 6px; border-radius: 999px; font-size: 7px; font-weight: 800; }
.tag.new, .tag.ready { color: #117a37; background: #ddf7e4; }
.tag.preparing { color: #9f6d00; background: #fff1c2; }
.tag.delivery { color: #216692; background: #dff3ff; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 18px; }
.dash-stats div { padding: 13px; border: 1px solid #dfe8e2; border-radius: 12px; background: #fff; }
.dash-stats span, .dash-stats small { display: block; color: #849087; font-size: 8px; }
.dash-stats b { display: block; margin: 4px 0; font-size: 16px; }

.categories-section { padding: 88px 0; color: var(--dark-text); background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px; }
.category-card {
  min-height: 108px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px; border: 1px solid #e3ebe5; border-radius: 16px; background: #fbfdfb;
}
.category-card span { font-size: 34px; }
.category-card b { font-size: 11px; text-align: center; }

.benefits-section { padding: 90px 0; background: #06130e; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card {
  min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(155deg, rgba(33, 79, 52, .35), rgba(255,255,255,.02));
}
.benefit-card > span { font-size: 28px; }
.benefit-card h3 { margin: 16px 0 8px; font-size: 18px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 13px; }

.numbers-section { padding: 34px 0; background: linear-gradient(90deg, #008743, #086530); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.number-card { padding: 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.17); }
.number-card:last-child { border-right: 0; }
.number-card b { display: block; font-size: clamp(28px, 4vw, 47px); letter-spacing: -.04em; }
.number-card span { display: block; color: #d8ffe3; font-size: 12px; }

.faq-section { padding: 92px 0; color: var(--dark-text); background: #f4f8f5; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; }
.accordion { display: grid; gap: 10px; }
.faq-item { border: 1px solid #dce6df; border-radius: 14px; overflow: hidden; background: #fff; }
.faq-item button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 18px; border: 0; color: #1b2a21; background: transparent; text-align: left; font-weight: 780; cursor: pointer;
}
.faq-item button span { font-size: 22px; transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; margin: 0; padding: 0 18px; color: #627068; font-size: 13px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 18px; }

.final-cta { padding: 70px 0; background: #030b08; }
.cta-card {
  position: relative; min-height: 285px; overflow: hidden; display: flex; align-items: center;
  padding: 48px; border: 1px solid rgba(64, 239, 103, .28); border-radius: 28px;
  background:
    radial-gradient(circle at 80% 50%, rgba(47,236,92,.26), transparent 24rem),
    linear-gradient(120deg, #0b2116, #06110c);
}
.cta-copy { position: relative; z-index: 2; max-width: 720px; }
.cta-copy h2 { margin-top: 8px; }
.cta-copy p { color: #b8c8be; }
.cta-card > img {
  position: absolute; right: 0; bottom: 0; width: 36%; height: 100%; object-fit: cover;
  object-position: center; mask-image: linear-gradient(to left, black 70%, transparent);
  opacity: .92;
}

.site-footer { padding: 58px 0 20px; background: #020805; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 280px; color: var(--muted); font-size: 13px; }
.footer-grid h3 { margin: 8px 0 15px; font-size: 13px; }
.footer-grid div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a, .footer-grid span { color: #aebdb4; text-decoration: none; font-size: 12px; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07);
  color: #7e8e85; font-size: 11px;
}

.floating-whatsapp {
  position: fixed; z-index: 90; right: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 9px; min-height: 50px;
  padding: 0 16px; border-radius: 999px; color: #021107; background: var(--green);
  box-shadow: 0 15px 40px rgba(12, 224, 84, .28); text-decoration: none; font-size: 12px;
}
.floating-whatsapp span { font-size: 18px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .header-login { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-stage { width: min(760px, 100%); margin-inline: auto; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .merchant-grid { grid-template-columns: 1fr; }
  .merchant-copy { max-width: 760px; }
  .category-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 74px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 24px; background: rgba(3, 11, 8, .98); border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero { padding-top: 46px; }
  .hero-stage { min-height: 470px; }
  .mascot-card { left: 0; width: 38%; }
  .phone { left: 27%; width: 42%; }
  .mini-panel { width: 39%; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card > img { width: 48%; opacity: .5; }
}

@media (max-width: 620px) {
  .brand, .brand img { width: 158px; }
  .header-inner { min-height: 68px; }
  .main-nav { inset-block-start: 68px; }
  .hero h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-stage {
    min-height: auto; margin-top: 32px; padding: 18px 0 0;
    display: grid; grid-template-columns: 1fr; gap: 12px;
  }
  .stage-glow { inset: 0; }
  .mascot-card, .phone, .mini-panel { position: relative; inset: auto; width: 100%; min-width: 0; }
  .mascot-card { width: 67%; margin: 0 auto -34px; }
  .phone { z-index: 4; }
  .mini-panel { z-index: 3; }
  .segment-strip { justify-content: flex-start; overflow: hidden; }
  .steps-grid, .merchant-benefits, .benefits-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 215px; }
  .dashboard { grid-template-columns: 46px 1fr; }
  .dash-main { padding: 14px; }
  .dash-header button { display: none; }
  .dash-stats { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-card:nth-child(2) { border-right: 0; }
  .number-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .cta-card { padding: 34px 24px 180px; }
  .cta-card > img { width: 100%; height: 190px; opacity: .75; mask-image: linear-gradient(to bottom, transparent, black 32%); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 52px; padding: 0; justify-content: center; }
}
