:root {
  --bg: #07111f;
  --bg-soft: #0b1830;
  --surface: rgba(9, 19, 38, 0.78);
  --surface-strong: #101f3b;
  --card: #ffffff;
  --text: #ebf2ff;
  --text-muted: #a9bad8;
  --text-dark: #10203c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --primary: #00d1ff;
  --primary-strong: #0085ff;
  --accent: #86ffbd;
  --accent-dark: #112946;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(134, 255, 189, 0.12), transparent 22%),
    linear-gradient(180deg, #050d18 0%, #081425 52%, #06101d 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 133, 255, 0.18), transparent 18%),
    radial-gradient(circle at 80% 15%, rgba(0, 209, 255, 0.12), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(134, 255, 189, 0.08), transparent 20%);
  pointer-events: none;
  z-index: -1;
}

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

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 28px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(14, 26, 48, 0.9), rgba(6, 13, 23, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-accent {
  padding-top: 24px;
  padding-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--text);
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.glass-card,
.info-card,
.ecosystem-card,
.service-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.glass-card {
  background: rgba(9, 18, 34, 0.72);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(4, 10, 20, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 200px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #04101d !important;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
  animation: fadeUp 0.95s ease both;
  animation-delay: 0.1s;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lead {
  margin: 24px 0 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #03101b;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 14px 32px rgba(0, 209, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.hero-highlights li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-card {
  padding: 26px;
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.hero-card-head p {
  margin: 0;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(134, 255, 189, 0.16);
}

.logo-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
}

.logo-chip img {
  max-height: 60px;
  object-fit: contain;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.flow-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.flow-grid strong,
.gallery-card figcaption,
.service-card h3,
.feature-card h3,
.info-card h3,
.ecosystem-card h3,
.contact-card h3,
.footer-grid h3 {
  display: block;
  margin-bottom: 8px;
}

.flow-grid span {
  color: var(--text-muted);
}

.benefits-grid,
.services-grid,
.shop-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.service-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.info-card p,
.service-card p,
.ecosystem-card p,
.feature-card p,
.contact-card p,
.contact-list p,
.site-footer p {
  margin: 0;
  color: var(--text-muted);
}

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

.ecosystem-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.ecosystem-card.featured {
  background: linear-gradient(180deg, rgba(6, 21, 44, 0.88), rgba(12, 31, 58, 0.88));
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.card-top img {
  width: 168px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff;
}

.card-top span {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.ecosystem-card a,
.shop-header a,
.footer-bottom a {
  color: var(--primary);
  font-weight: 700;
}

.feature-split,
.contact-grid,
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.04);
}

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

.gallery-card {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
}

.shop-showcase {
  padding: 28px;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.shop-header img {
  width: 210px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff;
}

.shop-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(0, 209, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at left center, rgba(0, 209, 255, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(7, 23, 46, 0.95), rgba(16, 41, 74, 0.96));
}

.cta-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.cta-banner p {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
}

.icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.icon-whatsapp::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill='%2300e676' d='M27.3 4.7A15.1 15.1 0 0 0 3.7 22.9L2 30l7.3-1.6A15 15 0 1 0 27.3 4.7ZM16 28a12.1 12.1 0 0 1-6.2-1.7l-.4-.2-4.3.9.9-4.2-.3-.4A12 12 0 1 1 16 28Zm6.6-8.9c-.4-.2-2.4-1.2-2.8-1.4-.4-.1-.6-.2-.9.2-.2.4-1 1.4-1.2 1.7-.2.2-.4.3-.8.1-.4-.2-1.6-.6-3-1.9a11.1 11.1 0 0 1-2.1-2.7c-.2-.4 0-.6.2-.8.2-.2.4-.4.6-.7.2-.2.3-.4.4-.7.1-.2.1-.5 0-.7-.1-.2-.9-2.2-1.2-3-.3-.7-.6-.6-.9-.6h-.8c-.3 0-.7.1-1 .4s-1.4 1.3-1.4 3.2 1.5 3.8 1.7 4.1c.2.3 3 4.6 7.3 6.4 1 .5 1.8.8 2.4 1 .9.3 1.7.3 2.3.2.7-.1 2.4-1 2.7-1.9.3-.9.3-1.8.2-2-.1-.2-.4-.3-.8-.5Z'/%3E%3C/svg%3E");
}

.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.contact-copy > p {
  margin: 0 0 24px;
  color: var(--text-muted);
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-list h3 {
  margin: 0 0 8px;
}

.contact-card {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a7ca;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 209, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(0, 209, 255, 0.1);
}

.form-note {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 40px 0 24px;
  background: #040b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #041019;
  font-weight: 800;
  background: linear-gradient(135deg, #6cf8b1, #00e676);
  box-shadow: 0 18px 36px rgba(0, 230, 118, 0.3);
}

.whatsapp-float .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(4, 16, 25, 0.1);
}

.integration-figure {
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  text-align: center;
}

.integration-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.integration-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.integration-image-button:hover img,
.integration-image-button:focus-visible img {
  transform: scale(1.02);
  filter: brightness(1.02);
}

.integration-figure figcaption {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.integration-reality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  margin-top: 20px;
  animation: fadeUp 1s ease both;
  animation-delay: 0.18s;
}

.reality-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.reality-figure {
  margin: 0 0 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.reality-figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.reality-card-off {
  background: linear-gradient(180deg, rgba(58, 12, 18, 0.45), rgba(22, 10, 14, 0.65));
}

.reality-card-on {
  background: linear-gradient(180deg, rgba(5, 42, 58, 0.55), rgba(9, 26, 45, 0.78));
}

.reality-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reality-card-off .reality-tag {
  background: rgba(255, 95, 95, 0.14);
  color: #ff9f9f;
}

.reality-card-on .reality-tag {
  background: rgba(0, 209, 255, 0.14);
  color: #7feaff;
}

.reality-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.reality-card p {
  margin: 0;
  color: var(--text-muted);
}

.reality-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.reality-card li + li {
  margin-top: 10px;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 7, 14, 0.88);
  backdrop-filter: blur(8px);
}

.image-modal.is-open {
  display: flex;
}

.image-modal-content {
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(9, 18, 34, 0.96);
  box-shadow: var(--shadow);
}

.image-modal-content img {
  width: 100%;
  max-height: calc(100vh - 84px);
  object-fit: contain;
  border-radius: 16px;
}

.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-split,
  .contact-grid,
  .shop-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .integration-reality-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .shop-header,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(6, 14, 26, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .benefits-grid,
  .services-grid,
  .shop-features,
  .ecosystem-grid,
  .gallery-grid,
  .logo-cluster,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .site-header {
    padding: 14px 0;
  }

  .brand img {
    width: 156px;
  }

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

  .section-heading h2,
  .contact-copy h2,
  .cta-banner h2 {
    font-size: 1.9rem;
  }

  .hero-card,
  .info-card,
  .service-card,
  .feature-card,
  .contact-card,
  .ecosystem-card,
  .cta-banner {
    padding: 22px;
  }

  .whatsapp-float {
    right: 14px;
    left: 14px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-grid,
  .integration-reality-grid {
    animation: none;
  }

  .integration-figure img,
  .integration-image-button,
  .btn,
  .site-nav a {
    transition: none;
  }
}
