/* ==========================================================================
   DashSkins LLC — institutional landing page
   Palette taken from the two live platforms:
     dashskins.com.br  indigo #3140c6, pink #ef466f, neutrals #191820 / #fcfcfd
     dashskins.gg      purple #8a5bd6 / #a269ff, pink #b03189, base #16141d
     brand mark        gradient #ff207c -> #005293
   ========================================================================== */

:root {
  --bg: #0e0d14;
  --bg-alt: #131120;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #fcfcfd;
  --muted: #a6a1bd;
  --dim: #7b7791;

  --pink: #ff207c;
  --pink-soft: #ef466f;
  --blue: #005293;
  --indigo: #3140c6;
  --indigo-hover: #3b4ce0;
  --purple: #8a5bd6;
  --purple-hover: #9c6dee;
  --green: #45b26b;

  --radius: 20px;
  --radius-sm: 12px;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--indigo);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--purple-hover);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Gradient text ─────────────────────────────────────────────────────── */

.gradient-text {
  background: linear-gradient(100deg, #ff5c9d 0%, #a269ff 52%, #4d7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* keeps the descenders of the gradient text from being clipped */
  padding-bottom: 0.06em;
}

/* ── Header ────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 20, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 22px;
}

.site-nav {
  display: none;
  gap: 30px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s var(--ease);
}

.site-nav a:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .site-nav {
    display: inline-flex;
  }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
  border-radius: 11px;
}

.btn-block {
  width: 100%;
  margin-top: auto;
}

.btn-primary {
  background: linear-gradient(100deg, var(--pink) 0%, var(--purple) 100%);
  box-shadow: 0 10px 30px -12px rgba(255, 32, 124, 0.7);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px -12px rgba(255, 32, 124, 0.85);
}

.btn-bots {
  background: var(--indigo);
  box-shadow: 0 10px 30px -14px rgba(49, 64, 198, 0.9);
}

.btn-bots:hover {
  background: var(--indigo-hover);
  box-shadow: 0 16px 38px -14px rgba(49, 64, 198, 1);
}

.btn-p2p {
  background: var(--purple);
  box-shadow: 0 10px 30px -14px rgba(138, 91, 214, 0.9);
}

.btn-p2p:hover {
  background: var(--purple-hover);
  box-shadow: 0 16px 38px -14px rgba(138, 91, 214, 1);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--surface-strong);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.25;
}

.btn-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* both lockups are cropped from the same artwork (wordmark = 53% of the image height), so an
   equal CSS height renders the DASH SKINS wordmark at exactly the same size on both buttons */
.btn-logo {
  height: 19px;
  width: auto;
  margin: 4px 0 2px;
}

.btn-domain {
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0.92;
}

.btn-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 96px 0 84px;
  overflow: hidden;
}

.hero-pattern,
.contact-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("/assets/pattern.svg");
  background-repeat: repeat;
  background-size: 260px 260px;
  /* fades the tiling out before it reaches the end of the section */
  -webkit-mask-image: radial-gradient(120% 92% at 50% 6%, #000 12%, transparent 78%);
  mask-image: radial-gradient(120% 92% at 50% 6%, #000 12%, transparent 78%);
  opacity: 0.85;
}

.hero-glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 760px;
  pointer-events: none;
  background:
    radial-gradient(46% 44% at 22% 34%, rgba(255, 32, 124, 0.24) 0%, transparent 70%),
    radial-gradient(44% 42% at 76% 24%, rgba(138, 91, 214, 0.26) 0%, transparent 70%),
    radial-gradient(50% 40% at 50% 8%, rgba(0, 82, 147, 0.28) 0%, transparent 72%);
  filter: blur(10px);
}

.hero-glow {
  z-index: 1;
}

.hero-inner {
  z-index: 2;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  color: var(--muted);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(69, 178, 107, 0.16);
}

.hero h1 {
  margin: 28px 0 0;
  font-size: clamp(2.35rem, 6.4vw, 4.25rem);
  font-weight: 700;
  max-width: 17ch;
}

.hero-lead {
  margin-top: 24px;
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 18px 56px;
  margin: 54px 0 0;
  padding: 26px 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.stat {
  text-align: center;
  min-width: 132px;
}

.stat-value {
  font-size: clamp(1.65rem, 3.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(100deg, #ff5c9d 0%, #a269ff 60%, #4d7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--dim);
}

/* ── Sections ──────────────────────────────────────────────────────────── */

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 62ch;
  margin: 0 auto 52px;
  text-align: center;
}

.section-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-hover);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}

.section-lead {
  margin-top: 18px;
  color: var(--muted);
}

/* ── Platform cards ────────────────────────────────────────────────────── */

.platform-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255, 255, 255, 0.012) 100%);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent, var(--border-strong));
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.platform-card--bots {
  --accent: linear-gradient(90deg, var(--indigo), #6d7cf5);
}

.platform-card--p2p {
  --accent: linear-gradient(90deg, var(--purple), var(--pink-soft));
}

.platform-card--soon {
  --accent: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
}

.platform-card--soon .platform-copy,
.feature-list--muted li {
  color: var(--dim);
}

.platform-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.platform-top h3 {
  margin-top: 16px;
  font-size: 1.6rem;
}

.platform-domain {
  margin-top: 6px;
  font-size: 14px;
  color: var(--purple-hover);
}

.platform-card--bots .platform-domain {
  color: #7f8dff;
}

.platform-card--soon .platform-domain {
  color: var(--dim);
}

.platform-copy {
  color: var(--muted);
  font-size: 15px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.feature-list--muted li::before {
  border-color: var(--dim);
}

/* ── Steps ─────────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
}

.step-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: linear-gradient(100deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  margin: 14px 0 10px;
  font-size: 1.1rem;
}

.step p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ── Value grid ────────────────────────────────────────────────────────── */

.value-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 680px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.value-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-strong);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ── Company ───────────────────────────────────────────────────────────── */

.company-shell {
  display: grid;
  gap: 40px;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 940px) {
  .company-shell {
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
  }
}

.company-copy h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-bottom: 22px;
}

.company-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.company-copy p:last-child {
  margin-bottom: 0;
}

.company-card {
  padding: 32px 30px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(138, 91, 214, 0.1) 0%, var(--surface) 46%);
}

.company-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.company-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.company-dl dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 5px;
}

.company-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

/* ── Contact ───────────────────────────────────────────────────────────── */

.contact-pattern {
  border-radius: 26px;
  background-size: 200px 200px;
  -webkit-mask-image: radial-gradient(90% 120% at 30% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(90% 120% at 30% 0%, #000 0%, transparent 72%);
  opacity: 0.7;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 48px 40px;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background:
    radial-gradient(80% 130% at 12% 0%, rgba(255, 32, 124, 0.16) 0%, transparent 60%),
    radial-gradient(80% 130% at 90% 100%, rgba(138, 91, 214, 0.18) 0%, transparent 60%),
    var(--surface);
  text-align: center;
}

@media (min-width: 860px) {
  .contact-card {
    grid-template-columns: 1.2fr auto;
    text-align: left;
  }
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin-bottom: 12px;
}

.contact-copy p {
  color: var(--muted);
  max-width: 46ch;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-note {
  font-size: 13px;
  color: var(--dim);
  text-align: center;
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  background: #0b0a10;
  padding: 62px 0 34px;
}

.footer-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .footer-inner {
    grid-template-columns: 1.6fr 0.8fr 0.8fr 1.4fr;
    gap: 48px;
  }
}

.footer-tagline {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  max-width: 38ch;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--dim);
}

.socials a {
  transition: color 0.2s var(--ease);
}

.socials a:hover {
  color: var(--text);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  color: var(--muted);
}

.footer-col a {
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-entity {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--dim);
}

@media (min-width: 940px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.disclaimer {
  max-width: 78ch;
}

/* ── Motion ────────────────────────────────────────────────────────────── */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .btn:hover,
  .platform-card:hover {
    transform: none;
  }
}

/* ── Small screens ─────────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .shell {
    padding: 0 20px;
  }

  .header-inner {
    height: 64px;
    gap: 12px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.13em;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero h1 {
    margin-top: 22px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  /* equal, full width targets are easier to hit and read as a deliberate pair */
  .hero-actions {
    margin-top: 32px;
    width: 100%;
    max-width: 380px;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .stats {
    margin-top: 34px;
    padding: 20px 16px;
    gap: 16px 24px;
  }

  .stat {
    min-width: 96px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .platform-card,
  .value-card,
  .step {
    padding: 26px 22px;
  }

  .platform-card {
    gap: 18px;
  }

  .company-card {
    padding: 26px 22px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
    /* long e-mail address must not push the card wider than the screen */
    word-break: break-word;
  }

  .site-footer {
    padding: 48px 0 28px;
  }

  .footer-inner {
    gap: 34px;
  }

  .footer-bottom {
    margin-top: 34px;
  }
}

@media (max-width: 380px) {
  .header-cta {
    padding: 8px 13px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    height: 19px;
  }

  .hero-pattern {
    background-size: 190px 190px;
  }

  .btn-logo {
    height: 17px;
  }
}
