
/* ======================================================
   RESET & BASE — CEK OVERFLOW
   ====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #171A21;
  background: #FAFAFB;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  color: #171A21;
}
p {
  margin: 0;
}
section {
  position: relative;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

:focus-visible {
  outline: 3px solid #6C5CE7;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ======================================================
   DESIGN TOKENS
   ====================================================== */
:root {
  --ink: #171A21;
  --ink-soft: #3A3F4C;
  --muted: #6B7080;
  --coral: #FF3B4E;
  --coral-dark: #E32B3D;
  --green: #00C48C;
  --violet: #6C5CE7;
  --bg: #FAFAFB;
  --bg-tint: #FFF4F4;
  --card: #FFFFFF;
  --border: #ECEEF3;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -24px rgba(23,26,33,0.22);
  --shadow-pop: 0 30px 60px -20px rgba(255,59,78,0.28);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--coral-dark);
  background: var(--bg-tint);
  border: 1px solid #FFD9DD;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px) scale(.99);
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(255, 59, 78, 0.55);
}
.btn-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 34px -10px rgba(255, 59, 78, 0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #E2E4EA;
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(23, 26, 33, 0.35);
}
.btn-light:hover {
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ============ BRAND ============ */
.brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -0.02em;
  color: #171A21;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.brand .accent {
  color: #FF3B4E;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF3B4E;
  margin-left: 6px;
  flex-shrink: 0;
}
.brand.brand-nav {
  font-size: 26px;
}
.brand.brand-nav .brand-dot {
  width: 6px;
  height: 6px;
  margin-left: 4px;
}
.brand.brand-footer {
  font-size: 30px;
}
.brand.brand-footer,
.brand.brand-footer .accent {
  color: #fff;
}

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 251, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
  width: 100%;
}
.navbar.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(23, 26, 33, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
  width: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width .25s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(600px 300px at 88% -10%, rgba(255, 59, 78, 0.14), transparent 65%),
    radial-gradient(500px 260px at 8% 10%, rgba(108, 92, 231, 0.10), transparent 60%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin: 22px 0 20px;
}
.hero h1 .hl {
  color: var(--coral);
}
.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}
.hero-stat span {
  font-size: 13px;
  color: var(--muted);
}

/* ---- Live Order Feed panel ---- */
.panel-wrap {
  position: relative;
}
.floaty {
  animation: floaty 5.5s ease-in-out infinite;
}
.floaty-2 {
  animation: floaty 6.5s ease-in-out infinite;
  animation-delay: .6s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.order-panel {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}
.order-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 8px;
}
.order-panel-dots {
  display: flex;
  gap: 6px;
}
.order-panel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.order-panel-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  background: rgba(0, 196, 140, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 196, 140, .7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 196, 140, .55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(0, 196, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 196, 140, 0);
  }
}

.order-feed {
  height: 288px;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
}
.order-feed::before,
.order-feed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 36px;
  z-index: 2;
  pointer-events: none;
}
.order-feed::before {
  top: 0;
  background: linear-gradient(180deg, var(--ink), transparent);
}
.order-feed::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--ink), transparent);
}
.order-feed-track {
  animation: scrollFeed 14s linear infinite;
}
@keyframes scrollFeed {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
.order-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.order-row .ok {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 196, 140, 0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.order-row b {
  color: #fff;
  font-weight: 600;
}
.order-row .time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.float-card .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card b {
  display: block;
  font-size: 14px;
}
.float-card span {
  font-size: 11.5px;
  color: var(--muted);
}
.float-card.fc-1 {
  top: -22px;
  left: -26px;
}
.float-card.fc-2 {
  bottom: -20px;
  right: -18px;
}

/* ======================================================
   TRUST STRIP
   ====================================================== */
.trust {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-label {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 600;
}
.platform-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.platform-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.platform-chip:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
}
.platform-chip .dot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================================================
   SECTION
   ====================================================== */
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 16.5px;
}

/* ======================================================
   FEATURES
   ====================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.feat-ic {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ======================================================
   STEPS
   ====================================================== */
.steps {
  background: var(--ink);
  border-radius: 32px;
  padding: 72px 48px;
  color: #fff;
}
.steps .section-head h2,
.steps .section-head p {
  color: #fff;
}
.steps .section-head p {
  opacity: .65;
}
.steps .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #FF8A96;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 22px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--coral);
  margin-bottom: 16px;
  display: block;
}
.step-card h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}
.step-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ======================================================
   PLATFORM GRID
   ====================================================== */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .2s ease;
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
  color: var(--ink);
}
.platform-card .pf-ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.price-more {
  text-align: center;
  margin-top: 8px;
}

/* ======================================================
   ABOUT
   ====================================================== */
.about {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1/1;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, #262B36 60%, var(--coral-dark) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual svg {
  width: 62%;
}
.about-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.about-badge b {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
}
.about-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-list li {
  display: flex;
  gap: 14px;
}
.about-list .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--coral);
  flex-shrink: 0;
  padding-top: 2px;
}
.about-list strong {
  display: block;
  font-size: 15.5px;
  margin-bottom: 3px;
}
.about-list span {
  font-size: 14px;
  color: var(--muted);
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testi-stars {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.testi-person b {
  display: block;
  font-size: 14px;
}
.testi-person span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ======================================================
   BLOG
   ====================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.blog-cover {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-cover svg {
  width: 56px;
  height: 56px;
}
.blog-body {
  padding: 22px;
}
.blog-cat {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--coral-dark);
}
.blog-body h3 {
  font-size: 16px;
  margin: 10px 0 8px;
  line-height: 1.35;
}
.blog-body p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.blog-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15.5px;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--coral-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .25s ease;
}
.faq-item[open] summary .plus {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ======================================================
   CTA
   ====================================================== */
.cta {
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--coral) 0%, #FF6B78 55%, var(--violet) 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 14px;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.footer-tag {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 16px 0 22px;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13.5px;
  margin-bottom: 18px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-pay span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 2px;
}
.footer-pay img {
  height: 22px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  object-fit: contain;
}

/* ======================================================
   TOAST NOTIFICATION
   ====================================================== */
#toastContainer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
  max-width: 340px;
  width: calc(100% - 36px);
}

@media (max-width: 480px) {
  #toastContainer {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
  }
}

.buy-toast {
  pointer-events: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 14px 16px 16px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
  box-sizing: border-box;
}
.buy-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.buy-toast .bt-ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
  background: #E6F9F1;
  color: #00A876;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-toast .bt-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-top: 2px;
  flex: 1;
  word-break: break-word;
}
.buy-toast .bt-text b {
  color: var(--ink);
}
.buy-toast .bt-bar-track {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--border);
}
.buy-toast .bt-bar {
  height: 100%;
  width: 100%;
  background: var(--coral);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 2.8s linear;
}
.buy-toast .bt-bar.run {
  transform: scaleX(0);
}

@media (max-width: 720px) {
  .buy-toast {
    padding: 12px 14px 14px;
    border-radius: 14px;
  }
  .buy-toast .bt-ic {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .buy-toast .bt-text {
    font-size: 12px;
  }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .panel-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    background: #fff;
    z-index: 120;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    visibility: hidden;
    width: 100%;
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn-ghost {
    display: none;
  }

  .feat-grid,
  .step-grid,
  .platform-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    padding: 48px 20px;
  }
  .cta {
    padding: 48px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand {
    font-size: 32px;
  }
  .float-card {
    display: none;
  }
  .about-visual {
    aspect-ratio: 16/11;
  }

  .hero {
    padding: 40px 0 60px;
  }
  .section {
    padding: 56px 0;
  }
  .order-panel-head {
    padding: 12px 16px;
  }
  .order-row {
    padding: 10px 16px;
    font-size: 12px;
  }
  .order-feed {
    height: 240px;
  }
  .order-panel-url {
    font-size: 10px;
  }
  .live-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .about-badge {
    flex-wrap: wrap;
    gap: 6px;
  }
  .about-badge b {
    font-size: 15px;
  }

  .testi-card {
    padding: 20px;
  }
  .faq-item summary {
    font-size: 14px;
    padding: 16px 18px;
  }
  .faq-item p {
    padding: 0 18px 18px;
    font-size: 13.5px;
  }
  .blog-body {
    padding: 16px;
  }

  .steps .section-head {
    margin-bottom: 28px;
  }
  .step-card {
    padding: 20px 16px;
  }
  .step-card h3 {
    font-size: 15px;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat b {
    font-size: 20px;
  }
  .hero h1 {
    font-size: clamp(28px, 6vw, 36px);
  }
  .hero p.lead {
    font-size: 16px;
  }

  .brand.brand-footer {
    font-size: 26px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 12px;
  }
  .platform-grid {
    gap: 10px;
  }
  .platform-card {
    padding: 16px 8px;
    font-size: 12px;
  }
  .platform-card .pf-ic {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .feat-card {
    padding: 20px 16px;
  }
  .brand.brand-nav {
    font-size: 22px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 18px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
  }
}
