:root {
  --bg: #0b0b0f;
  --bg-2: #16161c;
  --surface: rgba(27, 27, 36, 0.8);
  --text: #f7f7fb;
  --muted: #b9b6c6;
  --line: rgba(255, 92, 108, 0.24);
  --primary: #ff4157;
  --primary-2: #ff7b5c;
  --danger: #ff6d91;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(920px 520px at 86% -10%, rgba(255, 95, 112, 0.24), transparent 58%),
    radial-gradient(760px 500px at -5% 20%, rgba(255, 140, 104, 0.18), transparent 54%),
    linear-gradient(155deg, #09090d 0%, #14141b 52%, #1b171b 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 100, 118, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 72%);
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
}

.glow-one {
  width: 280px;
  height: 280px;
  left: -80px;
  top: -90px;
  background: rgba(255, 92, 108, 0.28);
}

.glow-two {
  width: 360px;
  height: 360px;
  right: -140px;
  top: 28%;
  background: rgba(255, 135, 103, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 14, 0.64);
  border-bottom: 1px solid rgba(255, 92, 108, 0.2);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 80;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 14px rgba(255, 82, 102, 0.5);
}

.site-header.scrolled {
  background: rgba(12, 12, 17, 0.95);
  border-color: var(--line);
}

.nav-shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-image {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 130, 108, 0.35);
  box-shadow: 0 14px 26px rgba(255, 75, 95, 0.34);
}

.logo-text {
  font-family: "Oxanium", sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: #efeaf7;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 95, 112, 0.14);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: rgba(25, 25, 34, 0.92);
  color: var(--text);
  font: inherit;
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.05rem;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

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

.btn-primary {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 24px rgba(255, 82, 102, 0.32);
}

.btn-soft,
.btn-nav {
  background: rgba(25, 25, 34, 0.88);
}

.btn-credit {
  border-color: rgba(82, 213, 162, 0.34);
  background: linear-gradient(135deg, #129b72, #35c98f);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(30, 166, 113, 0.26);
}

.section-link-btn {
  margin-top: 1rem;
}

.section {
  padding: 5rem 0;
}

.section-surface {
  border-block: 1px solid rgba(255, 92, 108, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.03));
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.73rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Oxanium", sans-serif;
}

h1 {
  font-size: clamp(2.1rem, 6.8vw, 4.6rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.65rem, 4.6vw, 3rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.65;
}

.hero {
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.scroll-cue {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffd6dd;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--primary-2);
  border-bottom: 2px solid var(--primary-2);
  transform: rotate(45deg);
  animation: arrowBounce 1.4s ease-in-out infinite;
}

.stats {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.stats li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  background: rgba(22, 22, 30, 0.85);
}

.stats strong {
  display: block;
  font-size: 1rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 98, 114, 0.16), transparent 42%),
    rgba(24, 24, 33, 0.86);
}

.hero-panel ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: #d6cfde;
  line-height: 1.9;
}

.audience {
  padding-top: 1.2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card {
  border-radius: 20px;
}

.chip {
  margin: 0 0 0.65rem;
  display: inline-block;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
}

.chip-green {
  background: rgba(255, 88, 105, 0.12);
  color: #ff8f9f;
}

.chip-blue {
  background: rgba(255, 138, 102, 0.12);
  color: #ffb09a;
}

.section-head {
  margin-bottom: 1.4rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: var(--surface);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 130, 108, 0.45);
  box-shadow: 0 18px 34px rgba(10, 7, 9, 0.45);
}

.card p {
  color: var(--muted);
  line-height: 1.62;
}

.card.warn {
  border-color: rgba(255, 109, 145, 0.45);
}

.meta code {
  color: #ff9ea9;
}

.file-info {
  margin: 0.45rem 0;
  padding: 0.48rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 92, 108, 0.2);
  background: linear-gradient(180deg, rgba(52, 33, 41, 0.92), rgba(34, 22, 29, 0.94));
  color: #f0dbe0;
  font-size: 0.9rem;
}

.file-info strong {
  color: #ffb5bf;
  margin-right: 0.35rem;
}

.file-info code {
  color: #fff4c2;
  font-weight: 700;
  background: rgba(255, 196, 87, 0.14);
  padding: 0.16rem 0.34rem;
  border-radius: 7px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(26, 26, 36, 0.92), rgba(18, 18, 26, 0.94));
  padding: 1.3rem;
}

.contact-actions {
  display: grid;
  gap: 0.7rem;
  align-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 1.2rem 0;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 214, 220, 0.74);
  font-weight: 600;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes arrowBounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.75;
  }
  50% {
    transform: rotate(45deg) translate(3px, 3px);
    opacity: 1;
  }
}

.scroll-top-btn {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 60;
  border: 1px solid rgba(255, 130, 108, 0.55);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 999px;
  width: 52px;
  height: 52px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 82, 102, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    position: relative;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin-left: 0;
    display: grid;
    gap: 0.2rem;
    background: rgba(17, 17, 24, 0.98);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }

  .site-nav a {
    color: #f5f1fb;
    padding: 0.6rem 0.65rem;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .btn-nav {
    display: none;
  }

  .hero-grid,
  .audience-grid,
  .download-grid,
  .feature-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.1rem;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 84px;
  }

  .logo-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .logo-text {
    font-size: 1.32rem;
  }

  .section {
    padding: 4rem 0;
  }

  .scroll-cue {
    font-size: 0.77rem;
  }

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

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .scroll-top-btn {
    right: 14px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* Final merged layout: stable left text + right image preview */

.section {
  position: relative;
  z-index: 1;
}

.hero {
  padding-top: 6rem;
  padding-bottom: 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .stats {
  margin: 0;
}

.hero-copy h1 {
  max-width: none;
  letter-spacing: -0.015em;
}

.hero-copy .lead {
  max-width: 58ch;
}

.hero-actions {
  margin-top: 0.15rem;
}

.hero-actions .btn {
  min-width: 150px;
}

.stats {
  max-width: 590px;
}

.stats li {
  backdrop-filter: blur(10px);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-image-shell {
  position: relative;
  width: min(100%, 380px);
  padding: 0.75rem;
  border: 1px solid rgba(255, 130, 108, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 105, 118, 0.2), transparent 42%),
    rgba(28, 22, 30, 0.92);
  box-shadow: 0 18px 32px rgba(8, 5, 9, 0.38);
}

.hero-preview-shell {
  width: 100%;
}

.tool-preview-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.tool-preview-head .kicker {
  margin: 0;
}

.tool-preview-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.tool-preview-tab {
  border: 1px solid rgba(255, 130, 108, 0.24);
  background: rgba(23, 20, 26, 0.92);
  color: #f5edf5;
  border-radius: 999px;
  padding: 0.4rem 0.66rem;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.tool-preview-tab:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 130, 108, 0.14);
}

.tool-preview-tab.is-active {
  border-color: rgba(255, 130, 108, 0.45);
  background: linear-gradient(135deg, rgba(255, 65, 87, 0.2), rgba(255, 123, 92, 0.18));
}

.tool-preview-frame {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 163, 141, 0.25);
  background: rgba(19, 19, 27, 0.9);
  min-height: clamp(185px, 20vw, 235px);
  overflow: hidden;
}

.tool-preview-meta {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.tool-preview-status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 222, 138, 0.32);
  background: linear-gradient(180deg, rgba(16, 63, 40, 0.4), rgba(13, 39, 27, 0.3));
  color: #eafff1;
  font-family: "Oxanium", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.tool-preview-status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #58ff99;
  box-shadow: 0 0 0 4px rgba(88, 255, 153, 0.14);
}

.tool-preview-dots {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tool-preview-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 208, 214, 0.34);
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.tool-preview-dot:hover {
  box-shadow: 0 0 0 3px rgba(255, 92, 108, 0.12);
}

.tool-preview-dot.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 4px rgba(255, 92, 108, 0.14);
}

.contact-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: rgba(19, 19, 27, 0.9);
}

.tool-preview-image {
  max-width: 100%;
  max-height: 178px;
  width: auto;
  height: auto;
}

.reseller-section {
  padding-top: 2.8rem;
  padding-bottom: 2rem;
}

.reseller-head-compact {
  margin-bottom: 0.6rem;
}

.reseller-head-compact h2 {
  font-size: clamp(1.02rem, 2.2vw, 1.35rem);
}

.reseller-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.reseller-card {
  min-height: 100%;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 110, 112, 0.08), transparent 32%),
    rgba(27, 27, 36, 0.82);
}

.reseller-directory-card {
  padding: 0.82rem;
}

.reseller-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.reseller-dp-frame {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 130, 108, 0.35);
  background: rgba(19, 19, 27, 0.9);
  box-shadow: 0 10px 16px rgba(10, 7, 9, 0.22);
  overflow: hidden;
}

.reseller-dp {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reseller-card-copy {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.reseller-card-copy .chip {
  margin: 0;
  width: max-content;
  padding: 0.2rem 0.5rem;
  font-size: 0.58rem;
}

.reseller-card-copy h3 {
  margin: 0;
  color: #fff7f8;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 0 16px rgba(255, 92, 108, 0.16);
  overflow-wrap: anywhere;
}

.reseller-directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.reseller-directory-list li {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.reseller-directory-list span {
  color: #ff9ba8;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.58rem;
}

.reseller-directory-list a,
.reseller-directory-list strong {
  color: #fff5f7;
  font-family: "Oxanium", sans-serif;
  font-size: 0.78rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.reseller-whatsapp-item {
  padding: 0.42rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(35, 209, 96, 0.34);
  background: linear-gradient(180deg, rgba(26, 96, 52, 0.26), rgba(17, 58, 34, 0.2));
}

.reseller-whatsapp-item span {
  color: #9ef2b9;
}

.reseller-whatsapp-link {
  color: #ecfff2;
  font-weight: 700;
}

.reseller-telegram-item {
  padding: 0.42rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(89, 172, 255, 0.34);
  background: linear-gradient(180deg, rgba(34, 74, 122, 0.28), rgba(18, 42, 76, 0.2));
}

.reseller-telegram-item span {
  color: #9bd3ff;
}

.reseller-telegram-link {
  color: #eef7ff;
  font-weight: 700;
}

.reseller-visit {
  justify-self: stretch;
  width: 100%;
  padding: 0.5rem 0.72rem;
  border: 0;
  color: #fffaf4;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff3d6a 0%, #ff6b3d 52%, #ff9a1f 100%);
  box-shadow: 0 16px 28px rgba(255, 104, 73, 0.34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.reseller-visit:hover,
.reseller-visit:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(255, 104, 73, 0.42);
  filter: saturate(1.08) brightness(1.03);
}

.reseller-visit:focus-visible {
  outline: 3px solid rgba(255, 214, 102, 0.46);
  outline-offset: 3px;
}

.reseller-disabled {
  cursor: default;
  opacity: 0.72;
}

.reseller-disabled:hover {
  transform: none;
}

.reseller-placeholder {
  color: #ffcabf;
}

body .reseller-grid .reseller-soon-card .reseller-card-copy h3 {
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}

body .reseller-grid .reseller-soon-card .reseller-disabled {
  font-size: 0.82rem;
  font-weight: 800;
}

.download-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}

.download-card {
  display: grid;
  gap: 0.72rem;
  padding: 1rem;
  border-radius: 16px;
  align-content: start;
}

.download-card h3,
.download-card p {
  margin: 0;
}

.download-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.download-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.download-card .file-info {
  margin: 0;
  padding: 0.42rem 0.55rem;
  border-radius: 9px;
  font-size: 0.82rem;
}

.download-actions {
  display: grid;
  gap: 0.48rem;
  margin-top: 0.1rem;
}

.download-actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 0.62rem 0.82rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.3;
  text-align: center;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(26, 26, 36, 0.92), rgba(18, 18, 26, 0.94));
  padding: 1.3rem;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 92, 108, 0.14), transparent 66%);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  display: grid;
  gap: 1rem;
  z-index: 1;
}

.contact-panel-simple {
  grid-template-columns: 1fr;
}

.contact-actions {
  display: grid;
  gap: 0.7rem;
  align-content: center;
  justify-items: start;
}

.contact-actions .btn {
  min-width: 190px;
}

#downloads,
#features,
#contact,
#reseller {
  scroll-margin-top: 110px;
}

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

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

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .hero-panel {
    justify-content: center;
  }

  .contact-image-shell {
    width: min(100%, 410px);
  }

  .hero-copy {
    max-width: none;
  }

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

@media (max-width: 980px) {
  .hero {
    padding-top: 5.1rem;
    padding-bottom: 2.8rem;
  }

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

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

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

@media (max-width: 640px) {
  .hero {
    padding-bottom: 2.2rem;
  }

  .hero-copy {
    gap: 0.9rem;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .contact-image-shell {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
  }

  .tool-preview-frame {
    min-height: 190px;
  }

  .tool-preview-tab {
    padding: 0.44rem 0.56rem;
    font-size: 0.72rem;
  }

  .tool-preview-status-line {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .reseller-section {
    padding-top: 2.2rem;
    padding-bottom: 1.6rem;
  }

  .reseller-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 0.95rem;
  }

  .contact-panel {
    padding: 1rem;
  }
}

/* Layout lock: current HTML structure only */
body .section {
  padding-block: clamp(2.2rem, 3.8vw, 3.2rem);
}

body main > .section + .section {
  margin-top: 0;
}

body .section .container {
  min-width: 0;
}

body .hero.section {
  padding-top: clamp(2.6rem, 3.8vw, 3.4rem);
  padding-bottom: clamp(1rem, 1.8vw, 1.35rem);
}

body .hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 430px);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
}

body .hero .hero-copy,
body .hero .hero-panel,
body .reseller-grid > *,
body .download-grid > *,
body .feature-grid > * {
  min-width: 0;
}

body .hero .hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 650px;
}

body .hero .hero-copy .kicker,
body .hero .hero-copy h1,
body .hero .hero-copy .lead,
body .hero .hero-copy .stats {
  margin: 0;
}

body .hero .hero-copy h1 {
  max-width: 11.5ch;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

body .hero .hero-copy .lead {
  max-width: 58ch;
}

body .hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

body .hero .hero-actions .btn {
  min-width: 156px;
}

body .hero .stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 590px;
}

body .hero .stats li {
  min-width: 0;
  padding: 0.85rem;
}

body .hero .hero-panel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

body .hero .contact-image-shell.hero-preview-shell {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 0.9rem;
  border-radius: 22px;
}

body .hero .tool-preview-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

body .hero .tool-preview-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

body .hero .tool-preview-tab {
  min-width: 0;
  padding: 0.4rem 0.5rem;
  font-size: 0.62rem;
  line-height: 1.2;
}

body .hero .tool-preview-frame {
  min-height: clamp(220px, 25vw, 290px);
  padding: 0.72rem;
  aspect-ratio: 16 / 10;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

body .hero .tool-preview-frame.is-dragging {
  cursor: grabbing;
}

body .hero .tool-preview-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}

body .hero .tool-preview-image.is-sliding-next {
  animation: previewSlideNext 0.42s ease;
}

body .hero .tool-preview-image.is-sliding-prev {
  animation: previewSlidePrev 0.42s ease;
}

body .hero .tool-preview-meta {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

body .hero .tool-preview-label {
  margin: 0;
  color: #ffd8de;
  font-family: "Oxanium", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

body .hero .tool-preview-status-line {
  justify-content: center;
  text-align: center;
  font-size: 0.71rem;
}

body .hero .tool-preview-dots {
  margin-top: 0;
}

body .reseller-section {
  padding-top: clamp(0.2rem, 0.8vw, 0.45rem);
  padding-bottom: clamp(1rem, 2vw, 1.4rem);
}

body .section-head {
  margin-bottom: 0.8rem;
}

body .section-head h2 {
  max-width: 14ch;
}

body .reseller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

body .reseller-grid .reseller-directory-card {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(27, 24, 35, 0.96), rgba(23, 21, 30, 0.94)),
    var(--surface);
  box-shadow: inset 0 0 0 1px rgba(255, 130, 108, 0.06);
}

body .reseller-grid .reseller-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: center;
  gap: 0.7rem;
}

body .reseller-grid .reseller-dp-frame {
  width: clamp(58px, 5.8vw, 66px);
  height: clamp(58px, 5.8vw, 66px);
  border-radius: 14px;
  justify-self: end;
  border: 1px solid rgba(255, 130, 108, 0.28);
  background: rgba(17, 16, 24, 0.92);
  box-shadow: 0 8px 18px rgba(8, 5, 9, 0.26);
  overflow: hidden;
}

body .reseller-grid .reseller-dp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body .reseller-grid .reseller-card-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

body .reseller-grid .reseller-card-copy .chip {
  margin: 0;
  width: max-content;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 700;
}

body .reseller-grid .reseller-card-copy h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.15;
  color: #fff8fa;
  overflow-wrap: anywhere;
}

body .reseller-grid .reseller-directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

body .reseller-grid .reseller-directory-list li {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

body .reseller-grid .reseller-directory-list li > span {
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body .reseller-grid .reseller-directory-list a,
body .reseller-grid .reseller-directory-list strong {
  font-size: 0.76rem;
  line-height: 1.25;
}

body .reseller-grid .reseller-payment-item {
  padding: 0.42rem 0.55rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 130, 108, 0.18);
  background: rgba(35, 28, 40, 0.78);
}

body .download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 0.7rem;
  align-items: stretch;
}

body .download-grid .download-card {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  padding: 0.88rem;
  border-radius: 16px;
}

body .download-grid .download-card h3,
body .download-grid .download-card p {
  margin: 0;
}

body .download-grid .download-card h3 {
  font-size: 0.96rem;
  line-height: 1.26;
}

body .download-grid .download-card p {
  font-size: 0.84rem;
  line-height: 1.48;
}

body .download-grid .download-card .file-info {
  margin: 0;
  padding: 0.38rem 0.5rem;
  border-radius: 9px;
  font-size: 0.76rem;
}

body .download-grid .download-actions {
  display: grid;
  gap: 0.38rem;
  margin-top: 0.06rem;
}

body .download-grid .download-actions .btn {
  width: 100%;
  min-height: 36px;
  padding: 0.54rem 0.7rem;
  border-radius: 11px;
  font-size: 0.74rem;
  line-height: 1.25;
  text-align: center;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 120;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 130, 108, 0.36);
  background: rgba(12, 12, 18, 0.92);
  color: #fff6f7;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.copy-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.terms-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.terms-alert {
  margin-top: 1.15rem;
  max-width: 72ch;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 120, 103, 0.18);
  background: rgba(28, 24, 30, 0.72);
  color: #f1e9ef;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

@media (max-width: 980px) {
  .terms-grid {
    grid-template-columns: 1fr;
  }
}

body .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

body #contact .contact-panel.contact-panel-simple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

body #contact .contact-copy {
  max-width: 760px;
}

body #contact .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

body #contact .contact-actions .btn {
  min-width: 190px;
}

body .reseller-grid .reseller-whatsapp-item,
body .reseller-grid .reseller-telegram-item {
  padding: 0.42rem 0.55rem;
  border-radius: 11px;
}

body .reseller-grid .reseller-visit {
  width: 100%;
  justify-self: stretch;
  min-height: 38px;
  padding: 0.56rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
}

@media (max-width: 1120px) {
  body .hero .hero-grid {
    grid-template-columns: 1fr;
  }

  body .hero .hero-copy {
    max-width: none;
  }

  body .hero .hero-panel {
    justify-content: center;
  }

  body .hero .contact-image-shell.hero-preview-shell {
    margin-inline: auto;
    width: min(100%, 460px);
  }

  body .hero .tool-preview-frame {
    min-height: 260px;
  }

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

@media (max-width: 980px) {
  body .section {
    padding-block: 2rem;
  }

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

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

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

@media (max-width: 640px) {
  body .hero .hero-grid,
  body .reseller-grid,
  body .download-grid {
    grid-template-columns: 1fr;
  }

  body .section {
    padding-block: 1.8rem;
  }

  body .hero .hero-copy {
    gap: 0.9rem;
  }

  body .hero .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3rem);
  }

  body .hero .hero-actions,
  body #contact .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body .hero .hero-actions .btn,
  body #contact .contact-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body .hero .stats {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-top: -0.1rem;
  }

  body .hero .contact-image-shell.hero-preview-shell {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
  }

  body .hero .tool-preview-frame {
    min-height: 190px;
    aspect-ratio: 4 / 3;
  }

  body .hero .tool-preview-tab {
    padding: 0.42rem 0.46rem;
    font-size: 0.58rem;
  }

body .hero .tool-preview-status-line {
  width: 100%;
}

body .hero .tool-preview-status-line.is-coming-soon {
  border-color: rgba(255, 174, 107, 0.34);
  background: rgba(54, 34, 20, 0.72);
}

body .hero .tool-preview-status-line.is-coming-soon .tool-preview-status-dot {
  background: #ffb15c;
  box-shadow: 0 0 0 6px rgba(255, 177, 92, 0.18);
}

  body .reseller-grid .reseller-dp-frame {
    width: 54px;
    height: 54px;
    border-radius: 12px;
  }

  body .section-head {
    margin-bottom: 0.7rem;
  }
}

body .reseller-grid {
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 0.95rem;
}

body .reseller-grid .reseller-directory-card {
  gap: 0.82rem;
  padding: 1rem;
  min-height: 100%;
}

body .reseller-grid .reseller-card-top {
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 0.78rem;
}

body .reseller-grid .reseller-card-copy {
  gap: 0.28rem;
}

body .reseller-grid .reseller-card-copy .chip {
  padding: 0.18rem 0.48rem;
  font-size: 0.58rem;
}

body .reseller-grid .reseller-card-copy h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-shadow: none;
}

body .reseller-grid .reseller-dp-frame {
  width: 62px;
  height: 62px;
  border-radius: 15px;
}

body .reseller-grid .reseller-directory-list {
  gap: 0.52rem;
}

body .reseller-grid .reseller-directory-list li {
  gap: 0.18rem;
}

body .reseller-grid .reseller-directory-list li > span {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

body .reseller-grid .reseller-directory-list a,
body .reseller-grid .reseller-directory-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

body .reseller-grid .reseller-whatsapp-item,
body .reseller-grid .reseller-telegram-item,
body .reseller-grid .reseller-payment-item {
  padding: 0.52rem 0.65rem;
  border-radius: 12px;
}

body .reseller-grid .reseller-visit {
  min-height: 40px;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.seo-link-grid .card {
  display: grid;
  gap: 1rem;
}

.country-section {
  padding-top: 0;
  padding-bottom: 0.18rem;
}

.country-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 92, 108, 0.16);
  border-radius: 24px;
  background: rgba(23, 23, 30, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.country-strip span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 95, 112, 0.11);
  border: 1px solid rgba(255, 120, 103, 0.18);
  color: #fff1f2;
  font-size: 0.86rem;
  font-weight: 700;
}

.download-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.download-related-links a {
  color: #ffd6dc;
  font-size: 0.92rem;
  font-weight: 700;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cta-band {
  margin-top: 2rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 92, 108, 0.18);
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(255, 92, 108, 0.12), transparent 60%),
    linear-gradient(135deg, rgba(30, 30, 39, 0.92), rgba(17, 17, 24, 0.95));
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 980px) {
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

body .reseller-grid .reseller-placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

@media (max-width: 640px) {
  body .reseller-grid .reseller-card-top {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  body .reseller-grid .reseller-dp-frame {
    width: 58px;
    height: 58px;
  }

  body .reseller-grid .reseller-card-copy h3 {
    font-size: 1rem;
  }

  body .reseller-grid .reseller-directory-list a,
  body .reseller-grid .reseller-directory-list strong {
    font-size: 0.84rem;
  }
}

@keyframes previewSlideNext {
  from {
    opacity: 0.45;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes previewSlidePrev {
  from {
    opacity: 0.45;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

