:root {
  color-scheme: dark;
  --bg: #0c0d0f;
  --panel: #181b20;
  --panel-2: #242931;
  --text: #f6f7f8;
  --muted: #b8bec8;
  --line: rgba(235, 238, 243, 0.17);
  --accent: #ff3026;
  --accent-2: #f1f3f6;
  --accent-3: #ffb3ad;
  --danger: #6d737d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 48, 38, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(241, 243, 246, 0.12), transparent 26rem),
    linear-gradient(180deg, #0c0d0f 0%, #171a1f 52%, #0b0c0e 100%);
  color: var(--text);
  font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0c0e;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.75rem 1rem;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 13, 15, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__logo {
  display: block;
  width: clamp(9.5rem, 16vw, 12.5rem);
  height: auto;
  max-height: 2.6rem;
}

.brand__logo--admin {
  width: 2.35rem;
  height: 2.35rem;
}

.brand__mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 48, 38, 0.45);
  border-radius: 0.45rem;
  background: linear-gradient(135deg, rgba(255, 48, 38, 0.2), rgba(241, 243, 246, 0.14));
  color: var(--accent);
}

.nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a,
.header-link {
  transition: color 180ms ease;
}

.nav a:hover,
.header-link:hover {
  color: var(--text);
}

.header-link {
  color: var(--accent);
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.22rem;
}

.language-switcher button {
  display: inline-grid;
  min-width: 2.45rem;
  min-height: 2.15rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-switcher button:hover {
  color: var(--text);
}

.language-switcher button.is-active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 48, 38, 0.22);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  min-height: calc(100vh - 7rem);
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero__content,
.hero__visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 5.8vw, 6.15rem);
  font-weight: 800;
  text-wrap: balance;
}

html[lang="es"] h1,
html[lang="fr"] h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 5.8vw, 6.15rem);
  line-height: 1.02;
}

html[lang="it"] h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 5.8vw, 6.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.hero__lead {
  max-width: 640px;
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
.product a,
.subscribe button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.product a:hover,
.subscribe button:hover {
  transform: translateY(-2px);
}

.button--primary,
.product a,
.subscribe button {
  background: var(--accent);
  color: #ffffff;
  padding: 0.9rem 1.25rem;
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem 1.25rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero__facts span,
.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(255, 48, 38, 0.24);
  border-radius: 1.4rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 48, 38, 0.13), rgba(241, 243, 246, 0.06) 42%, rgba(255, 179, 173, 0.08));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.node,
.metric {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(16, 18, 21, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.node {
  display: grid;
  gap: 0.35rem;
  width: min(76%, 320px);
  padding: 1rem;
  overflow-wrap: anywhere;
}

.node span,
.metric span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.node strong,
.metric strong {
  color: var(--text);
  font-size: 1.08rem;
}

.node--input {
  top: 5rem;
  left: 2rem;
}

.node--ai {
  top: 15.8rem;
  right: 2rem;
  border-color: rgba(255, 48, 38, 0.4);
}

.node--output {
  left: 3rem;
  bottom: 5.2rem;
}

.connector {
  position: absolute;
  width: 10rem;
  height: 7rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  opacity: 0.7;
}

.connector--one {
  top: 10rem;
  left: 8rem;
  border-bottom-right-radius: 2rem;
}

.connector--two {
  right: 8rem;
  bottom: 12rem;
  transform: scaleX(-1);
  border-bottom-right-radius: 2rem;
}

.metric {
  display: grid;
  gap: 0.1rem;
  padding: 0.85rem 1rem;
}

.metric--one {
  right: 1.4rem;
  top: 3.4rem;
}

.metric--two {
  right: 2.5rem;
  bottom: 2.2rem;
}

.section__heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

.section__heading p:not(.eyebrow) {
  max-width: 670px;
  font-size: 1.08rem;
}

.section__heading--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.compare__grid,
.feature-grid,
.product-grid,
.stats,
.testimonial-grid,
.faq__grid {
  display: grid;
  gap: 1rem;
}

.compare__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare article,
.feature,
.product,
.stats article,
.testimonial-grid article,
.faq__grid article,
.contact,
.footer {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.compare article {
  border-radius: 0.9rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.compare article:first-child {
  background: linear-gradient(140deg, rgba(255, 48, 38, 0.16), rgba(255, 255, 255, 0.04));
}

.compare ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.compare li {
  display: flex;
  gap: 0.65rem;
  color: var(--muted);
}

.compare li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.compare article:last-child li::before {
  background: var(--danger);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature,
.product,
.stats article,
.testimonial-grid article,
.faq__grid article {
  border-radius: 0.9rem;
  padding: 1.25rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 48, 38, 0.4);
  border-radius: 0.55rem;
  color: var(--accent);
  font-weight: 900;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.marketplace-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin: 1.5rem 0 1rem;
}

.marketplace-search {
  max-width: 520px;
}

.marketplace-search span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.marketplace-search input {
  min-height: 3.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding-inline: 1.15rem;
}

.marketplace-count {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 0.75rem 1rem;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product {
  display: flex;
  min-height: 490px;
  flex-direction: column;
}

.product--skeleton {
  pointer-events: none;
}

.skeleton-block,
.skeleton-line {
  position: relative;
  overflow: hidden;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.09);
}

.skeleton-block::after,
.skeleton-line::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  animation: product-skeleton-shimmer 1.35s ease-in-out infinite;
}

.skeleton-block--art {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.skeleton-line--tag {
  width: 7rem;
  height: 1.55rem;
  margin-bottom: 0.95rem;
}

.skeleton-line--title {
  width: 78%;
  height: 1.35rem;
  margin-bottom: 0.65rem;
}

.skeleton-line--description {
  width: 92%;
  height: 2.7rem;
  margin-bottom: 1rem;
}

.skeleton-line--price {
  width: 5rem;
  height: 1.45rem;
  margin-top: auto;
  margin-bottom: 1.15rem;
}

.skeleton-block--button {
  height: 3.35rem;
}

@keyframes product-skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.product__category {
  width: fit-content;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 48, 38, 0.35);
  border-radius: 999px;
  color: var(--accent-3);
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product__art {
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-bottom: 1.15rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: #ffffff;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  overflow: hidden;
  background-position: center;
  background-color: #25282d;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.product__art--image {
  background: linear-gradient(135deg, #ff3026, #3a3f47);
}

.product__art--article {
  background: linear-gradient(135deg, #ff3026, #f1f3f6);
  color: #23262a;
}

.product__art--meta {
  background: linear-gradient(135deg, #1b1f24, #ff3026);
}

.product__art--shop {
  background: linear-gradient(135deg, #f1f3f6, #ff3026);
  color: #23262a;
}

.product__art--workflow {
  background: linear-gradient(135deg, #ff3026, #272c34);
}

.product__art--service {
  background: linear-gradient(135deg, #f1f3f6, #ff3026);
  color: #202327;
}

.product__art--template {
  background: linear-gradient(135deg, #242931, #f1f3f6);
  color: #ff3026;
}

.product__art--wallpaper {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 48, 38, 0.85), transparent 30%),
    linear-gradient(135deg, #15171b, #5b6068);
}

.product__art[style*="background-image"] {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.price {
  margin-top: auto;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 900;
}

.product__description {
  margin-top: 0;
  font-size: 0.95rem;
  display: -webkit-box;
  min-height: 4.25rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product a {
  width: 100%;
}

.marketplace-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.marketplace-empty h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.marketplace-empty p {
  margin-bottom: 0;
}

.marketplace-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.marketplace-tabs button {
  min-height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  padding: 0.65rem 0.95rem;
  font-weight: 900;
}

.marketplace-tabs button.is-active {
  border-color: rgba(255, 48, 38, 0.7);
  background: var(--accent);
  color: #ffffff;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.product-page-shell {
  width: min(1340px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.25rem) 0 clamp(1rem, 3vw, 2rem);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: start;
}

.product-detail__media {
  display: grid;
  min-height: clamp(420px, 50vw, 690px);
  place-items: center;
  border: 1px solid rgba(255, 48, 38, 0.28);
  border-radius: 0.85rem;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 900;
}

.product-detail__summary {
  padding-top: clamp(0.4rem, 2vw, 1.5rem);
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1.15rem;
  border: 1px solid rgba(255, 48, 38, 0.72);
  color: var(--accent);
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  line-height: 1.05;
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 1.4rem 0 1.05rem;
}

.product-price-row strong {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-compare {
  color: var(--muted);
  font-weight: 900;
  text-decoration: line-through;
}

.saving-pill {
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  padding: 0.25rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-benefits {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

.product-benefits li::before {
  content: "+";
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  place-items: center;
  border-radius: 0.3rem;
  background: rgba(255, 48, 38, 0.18);
  color: var(--accent);
  font-weight: 900;
}

.product-buy {
  width: 100%;
  margin-top: 0.3rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.35rem 0 1.55rem;
}

.payment-strip span {
  border-radius: 0.28rem;
  background: #f6f7f8;
  color: #14171c;
  padding: 0.2rem 0.38rem;
  font-size: 0.68rem;
  font-weight: 900;
}

.product-detail blockquote {
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.product-detail blockquote p {
  margin-top: 0;
  color: var(--text);
  font-weight: 700;
}

.product-detail cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.product-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.product-copy__intro {
  grid-row: span 3;
  border-left: 2px solid rgba(255, 48, 38, 0.55);
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.product-copy h2,
.product-related-section h2,
.why-marketplace h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.product-copy p,
.product-copy li,
.why-marketplace p {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.75;
}

.product-copy article {
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}

.product-copy ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.product-related-section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 1.5rem;
}

.related-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 48, 38, 0.5);
}

.related-card__art {
  display: grid;
  min-height: 160px;
  place-items: center;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
}

.related-card h3 {
  min-height: 4.1rem;
  padding: 1rem 1rem 0;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  text-align: center;
}

.related-card p {
  margin: 0;
  padding: 0.65rem 1rem 1.25rem;
  color: var(--accent);
  text-align: center;
  font-size: 1.05rem;
  font-weight: 900;
}

.why-marketplace {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.why-marketplace p {
  max-width: 820px;
  margin: 1.3rem auto 1.75rem;
}

.product-empty {
  display: grid;
  justify-items: start;
  gap: 1.25rem;
  min-height: 50vh;
}

.skeleton-detail > div {
  min-height: 420px;
  border-radius: 0.85rem;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05), rgba(255, 48, 38, 0.12), rgba(255, 255, 255, 0.05));
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats span {
  color: var(--accent);
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
}

.note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
  color: var(--accent-3);
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.testimonial-grid span {
  color: var(--text);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 2rem;
  border-radius: 1.1rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, rgba(255, 48, 38, 0.15), rgba(255, 255, 255, 0.045));
}

.contact__form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 48, 38, 0.12);
}

select {
  appearance: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

.faq__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq__link {
  display: inline-flex;
  margin-top: 1.5rem;
}

.faq-page {
  min-height: 60vh;
}

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

.faq-page__grid article {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.faq-page__grid h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.faq-page__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 1.2fr;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1rem;
  border-radius: 1.1rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.footer--simple {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 1.75rem);
}

.footer h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin: 0.45rem 0;
  color: var(--muted);
}

.subscribe {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subscribe button {
  padding: 0.75rem 1rem;
}

address {
  grid-column: auto;
  margin-top: 1.35rem;
  color: var(--muted);
  font-style: normal;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

.policy-page {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.policy-document {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 48, 38, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.policy-document h1 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.policy-document h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-document p,
.policy-document li {
  color: var(--text);
  font-weight: 600;
}

.policy-document p {
  margin: 1rem 0;
}

.policy-document ul,
.policy-document ol {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-left: 1.5rem;
  color: var(--text);
}

.policy-document a {
  color: var(--accent);
  font-weight: 900;
}

.footer address a[href^="mailto:"] {
  color: var(--accent);
}

.footer a[href^="mailto:"] {
  color: var(--accent);
  font-weight: 800;
}

.admin-page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.admin-shell {
  min-height: 100vh;
}

.login-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}

.login-card {
  display: grid;
  width: min(420px, 100%);
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.login-card h1 {
  font-size: clamp(2.4rem, 8vw, 4rem);
}

.login-brand {
  margin-bottom: 0.5rem;
}

.admin-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-topbar h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.admin-topbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-workspace {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-nav {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.admin-nav button {
  flex: 0 0 auto;
  min-height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-nav button:hover,
.admin-nav button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.admin-panel {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.admin-metrics article {
  display: grid;
  gap: 0.45rem;
  min-height: 6.3rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.16);
  padding: 0.85rem;
}

.admin-metrics span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-metrics strong {
  align-self: end;
  color: var(--text);
  font-size: 1.7rem;
}

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

.admin-record-panel {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.admin-record-panel h3 {
  margin-bottom: 0.8rem;
}

.admin-record {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.admin-record span,
.admin-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-empty {
  margin: 0;
}

.setup-panel {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 48, 38, 0.4);
  border-radius: 1.1rem;
  background: rgba(255, 48, 38, 0.08);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.setup-panel textarea {
  min-height: 22rem;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.admin-hero {
  max-width: 820px;
  margin-bottom: 2rem;
}

.admin-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.admin-form,
.admin-preview {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-subheading {
  margin: 1rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.admin-subheading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.admin-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-product-list {
  display: grid;
  gap: 0.85rem;
}

.admin-product {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.18);
  padding: 0.8rem;
}

.admin-product--compact {
  grid-template-columns: 4rem minmax(0, 1fr);
}

.admin-product__thumb {
  display: grid;
  min-height: 4.5rem;
  place-items: center;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(255, 48, 38, 0.8), rgba(246, 247, 248, 0.18));
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-weight: 900;
}

.admin-product h3 {
  font-size: 1.02rem;
}

.admin-product p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
}

.admin-product__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.admin-product__controls button {
  min-height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.switch-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0.6rem;
}

.switch-row input {
  width: auto;
}

.account-shell {
  width: min(100% - 2rem, 1100px);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.account-shell--narrow {
  max-width: 760px;
}

.password-visibility {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.password-visibility input {
  width: auto;
}

.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 3.25rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  place-items: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  background: transparent;
  color: #d9e6df;
  cursor: pointer;
}

.password-toggle--large {
  width: 3rem;
  height: 3rem;
}

.password-toggle:hover,
.password-toggle.is-visible {
  background: transparent;
  color: #ffffff;
}

.eye-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eye-icon--closed {
  display: none;
}

.password-toggle.is-visible .eye-icon--open {
  display: none;
}

.password-toggle.is-visible .eye-icon--closed {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-library__top > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.account-hero {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.account-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.account-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
}

.account-panel {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.account-login {
  display: grid;
  gap: 1rem;
  max-width: 460px;
}

.account-login h2,
.account-library h2 {
  margin: 0;
  font-size: 2rem;
}

.account-login p:not(.form-status) {
  margin: 0;
  color: var(--muted);
}

.account-library__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}

.account-library__top h2 {
  word-break: break-word;
}

.account-products {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
}

.account-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 1.25rem;
}

.account-product h3,
.account-product p {
  margin: 0;
}

.account-product h3 {
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
}

.account-product p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 640px) {
  .account-shell {
    width: min(100% - 1rem, 1100px);
    padding-top: 3.5rem;
  }

  .account-library__top,
  .account-product {
    align-items: stretch;
    flex-direction: column;
  }

  .account-product .button {
    width: 100%;
  }
}

/* CRM-style admin workspace */
.admin-page {
  width: min(1440px, calc(100% - 3rem));
  padding: 2.25rem 0 4rem;
}

.admin-topbar {
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.25rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}

.admin-topbar h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.03em;
}

.admin-heading-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-topbar__subcopy {
  max-width: 620px;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b7f2cf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.admin-live-status i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #43d38a;
  box-shadow: 0 0 0 0.22rem rgba(67, 211, 138, 0.12);
}

.admin-workspace {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.admin-nav {
  position: sticky;
  top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.22rem;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.75rem;
}

.admin-nav__label {
  margin: 0.2rem 0.55rem 0.55rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-nav button {
  display: flex;
  align-items: center;
  min-height: 2.55rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  background: transparent;
  color: var(--muted);
  padding: 0.55rem 0.7rem;
  text-align: left;
  font-size: 0.83rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.admin-nav button:hover,
.admin-nav button.is-active {
  border-color: rgba(255, 48, 38, 0.32);
  background: rgba(255, 48, 38, 0.12);
  color: var(--text);
}

.admin-nav button.is-active::before {
  width: 0.28rem;
  height: 1.2rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.admin-nav__footer {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0.3rem 0.15rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0.25rem 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.admin-nav__footer a {
  color: var(--accent-soft, #ff958f);
  font-weight: 800;
}

.admin-nav__footer b {
  color: var(--accent);
  font-size: 0.9rem;
}

.admin-panel {
  min-width: 0;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.admin-panel > .section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.admin-panel > .section__heading h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.admin-panel-caption {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

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

.admin-metrics article {
  min-height: 7.2rem;
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.16);
  padding: 1rem;
}

.admin-metrics article:first-child {
  border-color: rgba(255, 48, 38, 0.44);
  background: linear-gradient(135deg, rgba(255, 48, 38, 0.18), rgba(0, 0, 0, 0.18));
}

.admin-metrics strong {
  font-size: 2rem;
}

.admin-record-grid {
  gap: 0.75rem;
}

.admin-record-panel {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(0, 0, 0, 0.12);
  padding: 1rem;
}

.admin-record-panel h3 {
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}

.admin-record {
  padding: 0.8rem 0;
}

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

  .admin-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-nav__label,
  .admin-nav__footer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .admin-page {
    width: min(100% - 1rem, 1180px);
    padding-top: 1rem;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-topbar__actions {
    width: 100%;
  }

  .admin-topbar__actions .button {
    flex: 1;
  }

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

  .admin-panel > .section__heading,
  .admin-record-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel > .section__heading {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 980px) {
  .hero,
  .contact,
  .compare__grid,
  .product-detail,
  .product-copy,
  .marketplace-toolbar,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-metrics,
  .admin-record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  h1,
  html[lang="es"] h1,
  html[lang="fr"] h1,
  html[lang="it"] h1 {
    max-width: 760px;
    font-size: clamp(3rem, 10vw, 5.2rem);
  }

  .hero__visual {
    min-height: 520px;
  }

  .feature-grid,
  .product-grid,
  .related-grid,
  .stats,
  .testimonial-grid,
  .faq__grid,
  .faq-page__grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail h1 {
    max-width: 760px;
    font-size: clamp(2.9rem, 9vw, 5rem);
  }

  .product-copy__intro {
    grid-row: auto;
  }

  .nav {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .marketplace-search {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(100% - 1rem, 1180px);
    padding: 3rem 0;
  }

  .site-header {
    padding: 0.8rem;
  }

  .header-link {
    display: none;
  }

  .language-switcher button {
    min-width: 2.15rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.5rem);
  }

  html[lang="es"] h1,
  html[lang="fr"] h1,
  html[lang="it"] h1 {
    font-size: clamp(2.7rem, 16vw, 4.5rem);
  }

  .hero__actions,
  .section__heading--row,
  .subscribe,
  .admin-form__row,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 470px;
  }

  .node {
    width: calc(100% - 2rem);
    left: 1rem;
    right: auto;
  }

  .node--ai {
    top: 13.5rem;
  }

  .node--output {
    bottom: 4rem;
  }

  .connector {
    display: none;
  }

  .metric--one,
  .metric--two {
    right: 1rem;
  }

  .metric--one {
    top: 1rem;
  }

  .feature-grid,
  .product-grid,
  .related-grid,
  .stats,
  .testimonial-grid,
  .faq__grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .product-page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 2rem;
  }

  .product-detail__media {
    min-height: 340px;
    font-size: clamp(3rem, 22vw, 6rem);
  }

  .product-detail h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .product-copy h2,
  .product-related-section h2,
  .why-marketplace h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}
