:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --ink: #0b0d12;
  --muted: #596275;
  --quiet: #9299a8;
  --line: #dfe3eb;
  --line-strong: #cfd5e0;
  --blue: #2457f5;
  --blue-hover: #1644d8;
  --green: #1eaa62;
  --surface: #ffffff;
  --surface-disabled: #fafbfc;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(13, 23, 42, .025), 0 8px 24px rgba(29, 52, 99, .035);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  width: 100%;
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand picture,
.brand img {
  display: block;
}

.brand img {
  width: auto;
  height: 42px;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444d60;
  font-size: 13px;
  font-weight: 560;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(30, 170, 98, .09);
}

main {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}

.hero {
  padding: 52px 0 36px;
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto 10px;
  font-size: clamp(42px, 5.3vw, 66px);
  line-height: .98;
  letter-spacing: -.062em;
  font-weight: 790;
}

.hero-break { display: none; }

.hero p {
  margin: 0 auto;
  max-width: 760px;
  color: #4d566a;
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: -.018em;
}

.directory { margin-top: 2px; }
.directory--upcoming { margin-top: 28px; }

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 760;
}

.section-heading span { height: 1px; background: var(--line-strong); }

.service-list { display: grid; gap: 8px; }

.service {
  min-height: 91px;
  display: grid;
  grid-template-columns: 72px minmax(310px, 1.5fr) minmax(230px, .85fr) 158px;
  align-items: center;
  column-gap: 20px;
  padding: 13px 16px 13px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service--active:hover {
  transform: translateY(-1px);
  border-color: #c5cee0;
  box-shadow: 0 1px 2px rgba(13, 23, 42, .03), 0 12px 30px rgba(29, 52, 99, .075);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.service-icon img { display: block; max-width: 70%; max-height: 70%; }
.service-icon--pinterest { background: #e60023; }
.service-icon--drive { background: #f7f9fc; border: 1px solid #e5e9f0; }
.service-icon--mercadolibre { background: #ffe600; }
.service-icon--adobe { background: #f31d26; border-radius: 7px; }
.service-icon--wordpress { background: #eff7fb; border: 1px solid #d7e6ee; }
.service-icon--whatsapp { background: #25d366; }
.service-icon--tiktok { background: #0b0b0f; border-radius: 12px; }

.service-copy { min-width: 0; }
.service-copy h3 {
  margin: 0 0 2px;
  font-size: 16px;
  letter-spacing: -.018em;
  line-height: 1.25;
}
.service-copy p {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.service-meta {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.service-meta > a,
.future-domain {
  width: fit-content;
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 590;
  letter-spacing: -.01em;
}
.service-meta > a:hover { text-decoration: underline; text-underline-offset: 3px; }

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #12914f;
  font-size: 12px;
  font-weight: 620;
}
.availability i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

.service-action {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.service-action:hover { background: var(--blue-hover); transform: translateX(1px); }
.service-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.service--upcoming {
  min-height: 78px;
  background: var(--surface-disabled);
  box-shadow: none;
  color: #7b8393;
}
.service--upcoming .service-copy h3 { color: #7d8493; }
.service--upcoming .service-copy p { color: #8b93a3; }
.service--upcoming .future-domain { color: #6d8bd8; }
.service--upcoming .availability { color: #929aaa; }
.service--upcoming .availability i { background: #a9b0bc; }
.service-action--disabled { background: #e8ebf0; color: #9199a8; cursor: default; }

footer {
  width: min(1160px, calc(100% - 56px));
  margin: 38px auto 0;
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: #4d5667;
  font-size: 12px;
}
footer i { font-style: normal; color: #a1a7b2; }

@media (max-width: 900px) {
  .service { grid-template-columns: 60px 1fr 148px; row-gap: 11px; }
  .service-meta { grid-column: 2; min-height: auto; padding: 0; border: 0; }
  .service-action { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 650px) {
  .site-header { min-height: 64px; padding: 0 20px; }
  .brand img { height: 34px; }
  .system-status span:last-child { display: none; }
  main, footer { width: min(100% - 32px, 1160px); }
  .hero { padding: 40px 0 32px; text-align: left; }
  .hero h1 { font-size: clamp(40px, 13vw, 55px); line-height: .98; }
  .hero-break { display: initial; }
  .hero p { font-size: 17px; line-height: 1.45; }
  .section-heading { gap: 14px; }
  .section-heading h2 { font-size: 20px; }
  .service { grid-template-columns: 52px 1fr; padding: 17px; column-gap: 14px; }
  .service-icon { width: 46px; height: 46px; }
  .service-meta { grid-column: 1 / -1; margin-top: 3px; }
  .service-action { grid-column: 1 / -1; grid-row: auto; min-height: 44px; margin-top: 1px; }
  .service-copy p { font-size: 13px; }
  .directory--upcoming { margin-top: 32px; }
  footer { margin-top: 32px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0e14;
    --ink: #f5f7fb;
    --muted: #a9b1c1;
    --quiet: #7e8798;
    --line: #282e3a;
    --line-strong: #343c4a;
    --blue: #5d7cff;
    --blue-hover: #7490ff;
    --green: #31c777;
    --surface: #11161f;
    --surface-disabled: #0e1219;
    --shadow: 0 1px 2px rgba(0, 0, 0, .2), 0 12px 32px rgba(0, 0, 0, .18);
  }

  .system-status { color: #c0c7d4; }
  .hero p { color: #b2bac8; }
  .service--active:hover { border-color: #465063; box-shadow: 0 1px 2px rgba(0, 0, 0, .24), 0 14px 34px rgba(0, 0, 0, .28); }
  .service-icon--drive { background: #f7f9fc; border-color: #313846; }
  .service-copy p { color: var(--muted); }
  .availability { color: #55d691; }
  .service--upcoming { color: #838da0; }
  .service--upcoming .service-copy h3 { color: #929bae; }
  .service--upcoming .service-copy p { color: #7f899c; }
  .service--upcoming .future-domain { color: #7f98ec; }
  .service--upcoming .availability { color: #7c8596; }
  .service-action--disabled { background: #202632; color: #7f899b; }
  footer { color: #8f98a9; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

