@font-face {
  font-family: "Cal Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/cal-sans@1.0.1/fonts/webfonts/CalSans-SemiBold.woff2") format("woff2"),
       url("https://cdn.jsdelivr.net/npm/cal-sans@1.0.1/fonts/webfonts/CalSans-SemiBold.woff") format("woff");
}

:root {
  --canvas: #ffffff;
  --ink: #111111;
  --ink-active: #242424;
  --body: #374151;
  --muted: #6b7280;
  --muted-soft: #898989;
  --hairline: #e5e7eb;
  --hairline-soft: #f3f4f6;
  --surface-soft: #f8f9fa;
  --surface-card: #f5f5f5;
  --surface-strong: #e5e7eb;
  --surface-dark: #101010;
  --surface-dark-elevated: #1a1a1a;
  --on-dark: #ffffff;
  --on-dark-soft: #a1a1aa;

  --accent: #2196F3;
  --accent-soft: rgba(33, 150, 243, 0.14);
  --accent-border: rgba(33, 150, 243, 0.32);
  --accent-strong: #1E88E5;
  --emerald: #34d399;

  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 9999px;

  --section: 96px;
  --section-tight: 64px;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-elevated: 0 1px 2px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-popover: 0 4px 16px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);

  --font-sans: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --page-max: 1200px;
  --page-gutter: clamp(20px, 4vw, 40px);
  --t: 160ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--canvas); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-transform: lowercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

input, textarea, select { text-transform: none; }
.sd-brand { text-transform: none; }

body, button, input, textarea, select { font-family: var(--font-sans); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

::selection { background: var(--ink); color: var(--canvas); }

.sd-page { min-height: 100vh; display: flex; flex-direction: column; }
.sd-page > main { flex: 1; }

.sd-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sd-container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.sd-nav {
  position: relative;
  z-index: 30;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.sd-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.sd-nav-groups {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: start;
}

.sd-brand {
  display: inline-flex;
  align-items: center;
  font-family: "Cal Sans", var(--font-sans);
  line-height: 1;
  color: #000;
  justify-self: center;
  text-transform: none;
}

.sd-brand__text {
  font-family: "Cal Sans", var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #000;
  text-transform: none;
  display: inline-block;
}

.sd-nav__cta { justify-self: end; }

.sd-nav__end {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sd-nav-group { position: relative; }

.sd-nav-group--lang { justify-self: end; }

.sd-nav-trigger {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--r-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sd-nav-trigger::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.sd-nav-group:hover .sd-nav-trigger::after,
.sd-nav-group:focus-within .sd-nav-trigger::after {
  transform: translateY(0) rotate(225deg);
  opacity: 1;
}

.sd-nav-trigger:hover,
.sd-nav-trigger:focus-visible {
  background: var(--surface-card);
  outline: none;
}

.sd-nav-popover {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding-top: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition:
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 40;
  will-change: opacity, transform;
}

.sd-nav-popover--lang {
  left: auto;
  right: 0;
  min-width: 180px;
  transform-origin: top right;
}

.sd-nav-popover__inner {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 6px;
  box-shadow: var(--shadow-popover);
}

.sd-nav-popover__link {
  transition: background 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sd-nav-popover__link:hover { transform: translateX(2px); }

.sd-nav-group:hover .sd-nav-popover,
.sd-nav-group:focus-within .sd-nav-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sd-nav-popover__link {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background var(--t);
}

.sd-nav-popover__link:hover { background: var(--surface-card); }

.sd-nav-popover__link small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
}

.sd-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.sd-btn--primary { background: var(--ink); color: var(--canvas); }
.sd-btn--primary:hover { background: var(--ink-active); }

.sd-btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.32), 0 8px 24px -10px rgba(33, 150, 243, 0.55);
}
.sd-btn--accent:hover {
  background: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.4), 0 12px 28px -10px rgba(33, 150, 243, 0.65);
}

.sd-btn--ghost {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.sd-btn--ghost:hover { border-color: var(--ink); background: var(--surface-soft); }

.sd-btn--light { background: var(--canvas); color: var(--ink); border: 1px solid var(--hairline); }
.sd-btn--light:hover { border-color: var(--ink); background: var(--surface-soft); }

.sd-btn--on-dark { background: var(--canvas); color: var(--ink); }
.sd-btn--on-dark:hover { background: var(--surface-strong); }

.sd-btn--nav { height: 36px; padding: 0 16px; font-size: 13px; }

.sd-btn--lg { height: 48px; padding: 0 24px; font-size: 15px; }

.sd-hero {
  position: relative;
  background: var(--canvas);
  padding: clamp(40px, 4vw, 72px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 64px);
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
}

.sd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.07) 1px, transparent 1px);
  background-size: 160px 160px;
  background-position: 50% 0;
  z-index: 0;
}

.sd-hero__cells {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sd-hero__cell {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(33, 150, 243, 0.32);
  opacity: 0;
  animation: sd-cell-pulse 8s ease-in-out infinite;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

@keyframes sd-cell-pulse {
  0%, 100% { opacity: 0; }
  10%      { opacity: 1; }
  28%      { opacity: 0.5; }
  50%      { opacity: 0; }
}

.sd-hero__cell:nth-child(1)  { left: calc(50% - 720px); top: 0;     animation-delay: 0s; }
.sd-hero__cell:nth-child(2)  { left: calc(50% - 400px); top: 0;     animation-delay: 0.7s; }
.sd-hero__cell:nth-child(3)  { left: calc(50% + 400px); top: 0;     animation-delay: 1.4s; }
.sd-hero__cell:nth-child(4)  { left: calc(50% + 720px); top: 0;     animation-delay: 2.1s; }
.sd-hero__cell:nth-child(5)  { left: calc(50% - 560px); top: 160px; animation-delay: 2.8s; }
.sd-hero__cell:nth-child(6)  { left: calc(50% + 560px); top: 160px; animation-delay: 3.5s; }
.sd-hero__cell:nth-child(7)  { left: calc(50% - 720px); top: 480px; animation-delay: 4.2s; }
.sd-hero__cell:nth-child(8)  { left: calc(50% - 400px); top: 480px; animation-delay: 4.9s; }
.sd-hero__cell:nth-child(9)  { left: calc(50% + 400px); top: 480px; animation-delay: 5.6s; }
.sd-hero__cell:nth-child(10) { left: calc(50% + 720px); top: 480px; animation-delay: 6.3s; }
.sd-hero__cell:nth-child(11) { left: calc(50% - 560px); top: 640px; animation-delay: 7.0s; }
.sd-hero__cell:nth-child(12) { left: calc(50% + 560px); top: 640px; animation-delay: 7.7s; }

@media (prefers-reduced-motion: reduce) {
  .sd-hero__cell { animation: none; opacity: 0.14; }
}

.sd-hero > .sd-container { position: relative; z-index: 1; width: 100%; }

.sd-hero__center {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sd-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 28px;
}

.sd-search-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-elevated);
}

.sd-search-card__eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 8px;
  letter-spacing: 0;
}

.sd-search-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.2;
}

.sd-search-card__hint {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

.sd-search-card__hint a {
  color: var(--accent);
  font-weight: 500;
}

.sd-search-card__hint a:hover { color: var(--accent-strong); }

.sd-hero__title {
  font-family: var(--font-display);
  font-size: 86px !important;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin: 0 0 28px;
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.sd-hero__center .sd-hero__lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.sd-hero__center .sd-hero__actions {
  justify-content: center;
  margin-top: 16px;
}

.sd-hero__title em,
.sd-hero__title .sd-accent {
  font: inherit;
  font-style: normal;
  color: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.sd-hero__lead {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
  margin: 0 0 32px;
}

.sd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.sd-domain-search {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin: 0 0 16px;
}

.sd-domain-search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  min-width: 0;
  transition: border-color var(--t);
}

.sd-domain-search__field:focus-within { border-color: var(--ink); }

.sd-domain-search__icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
}

.sd-domain-search__input {
  flex: 1;
  height: 48px;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: var(--ink);
  min-width: 0;
}

.sd-domain-search__input::placeholder { color: var(--muted); }

.sd-domain-search__btn {
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--canvas);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}

.sd-domain-search__btn:hover { background: var(--ink-active); }

.sd-mockup {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-elevated);
}

.sd-mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sd-mockup__domain {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.sd-mockup__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.sd-mockup__pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: currentColor;
}

.sd-mockup__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}

.sd-mockup__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 13px;
  border-top: 1px solid var(--hairline);
}

.sd-mockup__row:first-child { border-top: 0; }
.sd-mockup__row span:first-child { color: var(--muted); }
.sd-mockup__row span:last-child { color: var(--ink); font-weight: 500; }

.sd-mockup__footer {
  display: flex;
  gap: 8px;
}

.sd-mockup__btn {
  flex: 1;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--canvas);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sd-mockup__btn--ghost {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  flex: 0 0 auto;
  padding: 0 14px;
}

.sd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 32px 0;
}

.sd-stats__item {
  position: relative;
  padding: 32px 28px 24px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}

.sd-stats__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 25%, var(--accent) 75%, transparent);
  border-radius: 0 0 var(--r-pill) var(--r-pill);
}

.sd-stats__item:hover {
  border-color: var(--accent-border);
  transform: translateY(-1px);
}

.sd-stats__value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.sd-stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.sd-stats__tag {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-soft);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.08em;
}

.sd-section {
  padding: var(--section) 0;
  background: var(--canvas);
}

.sd-section--tight { padding: var(--section-tight) 0; }
.sd-section--soft { background: var(--surface-soft); }

.sd-section__head {
  margin-bottom: 48px;
  max-width: 720px;
}

.sd-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sd-section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}

.sd-section__title,
.sd-band__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}

.sd-section__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  margin: 16px 0 0;
  max-width: 640px;
}

.sd-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -16px 0 32px;
}

.sd-title-accent { color: var(--ink); font-weight: 600; }

.sd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  margin-bottom: 20px;
  color: var(--ink);
}

.sd-icon svg { width: 22px; height: 22px; }

.sd-icon--coral,
.sd-icon--forest,
.sd-icon--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--canvas);
}

.sd-icon--cream { background: var(--surface-card); border-color: var(--hairline); color: var(--ink); }
.sd-icon--peach,
.sd-icon--mint,
.sd-icon--yellow,
.sd-icon--mustard,
.sd-icon--accent {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent-strong);
}

.sd-icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-icon-fill {
  fill: currentColor;
  opacity: 0.18;
  stroke: none;
}

.sd-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 16px;
}

.sd-card {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: 36px;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sd-card--tall { grid-row: span 2; min-height: 0; }

.sd-card__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--body);
}

.sd-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 6px;
  margin-top: -5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

.sd-card--dark .sd-card__list li { color: var(--on-dark-soft); }
.sd-card--dark .sd-card__list li::before {
  border-left-color: var(--accent);
  border-bottom-color: var(--accent);
}

.sd-card--dark {
  background: var(--surface-dark);
  color: var(--on-dark);
}

.sd-card__body {
  position: relative;
  z-index: 1;
  max-width: 58%;
}

.sd-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-transform: lowercase;
  margin: 0 0 12px;
  color: var(--ink);
}

.sd-card--dark .sd-card__title { color: var(--on-dark); }

.sd-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}

.sd-card--dark .sd-card__text { color: var(--on-dark-soft); }

.sd-card__meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.sd-card--dark .sd-card__meta { color: var(--on-dark-soft); }

.sd-card__visual {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 290px;
  height: 290px;
  pointer-events: none;
  z-index: 0;
}

.sd-card__visual--shield   { right: -90px; bottom: -110px; width: 440px; height: 440px; }
.sd-card__visual--lock     { right: -55px; bottom: -55px; width: 320px; height: 320px; }
.sd-card__visual--coin     { right: -48px; bottom: -60px; width: 310px; height: 310px; }
.sd-card__visual--terminal { right: -75px; bottom: -85px; width: 380px; height: 266px; }

.sd-card__visual svg { width: 100%; height: 100%; }

.sd-card__visual-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.13);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-card--dark .sd-card__visual-line { stroke: rgba(255, 255, 255, 0.22); }

.sd-card__visual-accent {
  fill: var(--accent);
  stroke: none;
  opacity: 1;
}

.sd-card__visual-accent--stroke {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-card__visual-accent--soft {
  fill: var(--accent);
  stroke: none;
  opacity: 0.16;
}

.sd-card--dark .sd-card__visual-accent--soft { opacity: 0.22; }

.sd-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sd-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 200px;
}

.sd-feature__body {
  position: relative;
  z-index: 1;
  max-width: 65%;
}

.sd-feature__visual {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 175px;
  height: 175px;
  pointer-events: none;
  z-index: 0;
}

.sd-feature__visual--cloud  { right: -28px; bottom: -55px; width: 200px; height: 200px; }
.sd-feature__visual--arrows { right: -40px; bottom: -38px; width: 210px; height: 210px; }
.sd-feature__visual--shield { right: -30px; bottom: -55px; width: 200px; height: 200px; }
.sd-feature__visual--check  { right: -38px; bottom: -40px; width: 210px; height: 210px; }

.sd-feature__visual svg { width: 100%; height: 100%; }

.sd-feature__visual-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.13);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-feature__visual-accent {
  fill: var(--accent);
  stroke: none;
  opacity: 1;
}

.sd-feature__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}

.sd-feature__text {
  font-size: 14px;
  color: var(--body);
  margin: 0;
}

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

.sd-categories[data-compare] {
  display: flex;
  align-items: stretch;
}

.sd-category {
  position: relative;
  background: var(--canvas);
  padding: 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 360px;
  transition:
    flex-grow 620ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
  will-change: flex-grow;
}

.sd-categories[data-compare] .sd-category { flex: 1 1 0; min-width: 0; }
.sd-categories.sd-compare--hovering .sd-category { flex-grow: 0.65; }
.sd-categories .sd-category.sd-compare-card--active { flex-grow: 1.55; box-shadow: var(--shadow-elevated); }
.sd-categories .sd-category--accent.sd-compare-card--active {
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4);
}

.sd-category__visual {
  transition: transform 540ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sd-category.sd-compare-card--active .sd-category__visual {
  transform: translate(-12px, -8px) scale(1.06);
}

.sd-category__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 65%;
}

.sd-category__visual {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sd-category__visual svg { width: 100%; height: 100%; }

.sd-category__visual-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.13);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-category--accent .sd-category__visual-line { stroke: rgba(255, 255, 255, 0.22); }

.sd-category__visual-accent {
  fill: var(--accent);
  stroke: none;
  opacity: 0.92;
}

.sd-category__visual-accent--soft {
  fill: var(--accent);
  stroke: none;
  opacity: 0.16;
}

.sd-category--accent .sd-category__visual-accent--soft { opacity: 0.22; }

.sd-category__visual--globe    { right: -50px; bottom: -55px; width: 280px; height: 280px; }
.sd-category__visual--immortal { right: -45px; bottom: -65px; width: 290px; height: 290px; }

.sd-category--accent {
  background: var(--surface-dark);
  color: var(--on-dark);
  border-color: var(--surface-dark);
  box-shadow: var(--shadow-elevated);
}

.sd-category__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.sd-category--accent .sd-category__tag {
  background: var(--surface-dark-elevated);
  color: var(--on-dark);
}

.sd-category__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: inherit;
}

.sd-category__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 8px;
}

.sd-category--accent .sd-category__text { color: var(--on-dark-soft); }

.sd-category__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-category__list li {
  font-size: 14px;
  color: var(--body);
  padding-left: 26px;
  position: relative;
}

.sd-category--accent .sd-category__list li { color: var(--on-dark); }

.sd-category__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 7px;
  margin-top: -5px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.7;
}

.sd-category__list svg,
.sd-category__list .sd-check { display: none !important; }

.sd-category .sd-btn { align-self: flex-start; margin-top: 8px; }

.sd-compare {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.sd-compare-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition:
    flex-grow 620ms cubic-bezier(0.16, 1, 0.3, 1),
    background 320ms ease,
    box-shadow 320ms ease,
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: flex-grow;
}

.sd-compare-card--immortal {
  background: var(--surface-dark);
  color: var(--on-dark);
  border-color: var(--surface-dark);
  box-shadow: var(--shadow-elevated);
}

.sd-compare--hovering .sd-compare-card { flex-grow: 0.55; }
.sd-compare-card.sd-compare-card--active { flex-grow: 1.6; }

.sd-compare-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 70%;
}

.sd-compare-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.sd-compare-card--immortal .sd-compare-card__tag {
  background: var(--surface-dark-elevated);
  color: var(--on-dark);
}

.sd-compare-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: inherit;
}

.sd-compare-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
  max-width: 480px;
}

.sd-compare-card--immortal .sd-compare-card__text { color: var(--on-dark-soft); }

.sd-compare-card__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  overflow: hidden;
  transition:
    opacity 380ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
    max-height 480ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.sd-compare-card--active .sd-compare-card__list,
.sd-compare:not(.sd-compare--hovering) .sd-compare-card .sd-compare-card__list {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}

.sd-compare-card__list li {
  position: relative;
  font-size: 14px;
  color: var(--body);
  padding-left: 22px;
}

.sd-compare-card--immortal .sd-compare-card__list li { color: var(--on-dark); }

.sd-compare-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 6px;
  margin-top: -5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

.sd-compare-card__cta {
  align-self: flex-start;
  margin-top: 10px;
  transform: translateY(2px);
  opacity: 0.94;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 320ms ease,
    background 220ms ease,
    color 220ms ease;
}

.sd-compare-card--active .sd-compare-card__cta,
.sd-compare:not(.sd-compare--hovering) .sd-compare-card .sd-compare-card__cta {
  transform: translateY(0);
  opacity: 1;
}

.sd-compare-card__visual {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  right: -50px;
  bottom: -55px;
  width: 320px;
  height: 320px;
  opacity: 0.85;
  transform: translate(20px, 10px) scale(0.96);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), opacity 480ms ease;
}

.sd-compare-card__visual svg { width: 100%; height: 100%; }

.sd-compare-card--active .sd-compare-card__visual {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.sd-compare-card__visual-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.13);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-compare-card--immortal .sd-compare-card__visual-line { stroke: rgba(255, 255, 255, 0.22); }

.sd-compare-card__visual-accent {
  fill: var(--accent);
  stroke: none;
  opacity: 0.92;
}

.sd-compare-card__visual-accent--soft {
  fill: var(--accent);
  stroke: none;
  opacity: 0.18;
}

.sd-compare-card--immortal .sd-compare-card__visual-accent--soft { opacity: 0.28; }

.sd-compare-card__visual--immortal { right: -45px; bottom: -65px; width: 330px; height: 330px; }

@media (hover: none) {
  .sd-compare { flex-direction: column; }
  .sd-compare-card { min-height: 0; }
  .sd-compare--hovering .sd-compare-card,
  .sd-compare-card.sd-compare-card--active { flex-grow: 1; }
}

.sd-band {
  position: relative;
  background: var(--surface-strong);
  border: 1px solid #d4d8de;
  border-radius: var(--r-lg);
  padding: 56px;
  color: var(--ink);
  overflow: hidden;
  min-height: 380px;
}

.sd-band__inner { position: relative; z-index: 1; max-width: 60%; display: grid; grid-template-columns: 1fr; gap: 16px; }
.sd-band__title { margin: 8px 0 12px; color: var(--ink); }

.sd-band__visual {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
}

.sd-band__visual svg { width: 100%; height: 100%; }

.sd-band__visual-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.14);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-band__visual-accent {
  fill: var(--accent);
  stroke: none;
}

.sd-band__text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 20px;
  max-width: 600px;
}

.sd-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  max-width: 560px;
}

.sd-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}

.sd-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}

.sd-list svg { display: none; }
.sd-pages { display: none; }

.sd-blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sd-post {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
}

.sd-post__image,
.sd-post__corner { display: none; }

.sd-post__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  margin-bottom: 4px;
}

.sd-post__meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.sd-post__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

.sd-post__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
  flex: 1;
}

.sd-post__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

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

.sd-node {
  position: relative;
  background: var(--canvas);
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  min-height: 200px;
}

.sd-node--wide { grid-column: span 2; min-height: 220px; }

.sd-node--wide .sd-node__visual--cloud  { right: -45px; bottom: -75px; width: 290px; height: 290px; }
.sd-node--wide .sd-node__visual--check  { right: -55px; bottom: -55px; width: 310px; height: 310px; }
.sd-node--wide .sd-node__visual--shield { right: -45px; bottom: -75px; width: 290px; height: 290px; }
.sd-node--wide .sd-node__visual--server { right: -55px; bottom: -55px; width: 310px; height: 310px; }
.sd-node--wide .sd-node__visual--code   { right: -50px; bottom: -55px; width: 290px; height: 290px; }
.sd-node--wide .sd-node__visual--arrows { right: -55px; bottom: -55px; width: 310px; height: 310px; }

.sd-node__icon { display: none; }

.sd-node__body { position: relative; z-index: 1; max-width: 65%; }

.sd-node__visual {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 175px;
  height: 175px;
  pointer-events: none;
  z-index: 0;
}

.sd-node__visual--cloud  { right: -28px; bottom: -55px; width: 195px; height: 195px; }
.sd-node__visual--server { right: -38px; bottom: -38px; width: 210px; height: 210px; }
.sd-node__visual--shield { right: -30px; bottom: -55px; width: 195px; height: 195px; }
.sd-node__visual--code   { right: -32px; bottom: -38px; width: 200px; height: 200px; }
.sd-node__visual--arrows { right: -40px; bottom: -38px; width: 210px; height: 210px; }
.sd-node__visual--check  { right: -38px; bottom: -40px; width: 210px; height: 210px; }

.sd-node__visual svg { width: 100%; height: 100%; }

.sd-node__visual-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.13);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sd-node__visual-accent {
  fill: var(--accent);
  stroke: none;
  opacity: 1;
}

.sd-node__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.sd-node__text {
  font-size: 14px;
  color: var(--body);
  margin: 0;
}

.sd-faq {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--canvas);
}

.sd-faq__item {
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.sd-faq__item:first-child { border-top: 0; }

.sd-faq__question {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 22px 28px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color var(--t);
}

.sd-faq__question::-webkit-details-marker { display: none; }
.sd-faq__question::marker { content: ""; display: none; }

.sd-faq__question:hover { color: var(--accent-strong); }

.sd-faq__question::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 220ms ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.sd-faq__item[open] .sd-faq__question::after {
  transform: translateY(2px) rotate(225deg);
}

.sd-faq__item[open] .sd-faq__question { color: var(--ink); }

.sd-faq__answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  padding: 0 28px 24px;
}

.sd-section-divider {
  width: 100%;
  height: 1px;
  background: var(--hairline);
}

.sd-cta {
  position: relative;
  padding: var(--section) 0;
  background: var(--canvas);
  isolation: isolate;
}

.sd-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.6px at 50% 50%, rgba(17, 17, 17, 0.42) 0, transparent 65%);
  background-size: 22px 22px;
  background-position: 0 0;
  z-index: 0;
  pointer-events: none;
}

.sd-cta > .sd-container { position: relative; z-index: 1; }

.sd-cta__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sd-cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}

.sd-cta__text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 32px;
}

.sd-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sd-footer {
  background: var(--surface-dark);
  color: var(--on-dark-soft);
  padding: 64px 0 32px;
}

.sd-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.sd-footer__brand { display: flex; flex-direction: column; gap: 12px; }

.sd-footer__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}

.sd-footer__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-dark-soft);
  margin: 0;
  max-width: 320px;
}

.sd-footer__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark);
  margin: 0 0 16px;
}

.sd-footer__links { display: flex; flex-direction: column; gap: 10px; }

.sd-footer__links a {
  font-size: 14px;
  color: var(--on-dark-soft);
  transition: color var(--t);
}

.sd-footer__links a:hover { color: var(--on-dark); }

.sd-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--surface-dark-elevated);
  font-size: 13px;
  color: var(--muted-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.sd-page-hero {
  padding: var(--section) 0 var(--section-tight);
  background: var(--canvas);
}

.sd-page-hero--compact {
  padding: 28px 0 16px;
}

.sd-page-hero__content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.sd-page-hero__content--search { max-width: 720px; }

.sd-page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

.sd-page-title em {
  font-style: normal;
  color: var(--ink);
  font-weight: 600;
}

.sd-page-hero__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  margin: 16px auto 0;
  max-width: 620px;
}

.sd-page-hero__sub {
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
  margin: 14px auto 0;
  max-width: 620px;
}

.sd-blog-feed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sd-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sd-post-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  color: inherit;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.sd-post-featured:hover {
  border-color: var(--ink);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.18);
}

.sd-post-featured__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  background-size: cover;
  background-position: center;
}

.sd-post-featured__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sd-post-featured__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

.sd-post-featured__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}

.sd-post-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
  color: inherit;
  transition: border-color var(--t);
}

.sd-post-card:hover { border-color: var(--ink); }

.sd-post-card__image { display: none; }

.sd-post-card__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  margin-bottom: 4px;
  background-size: cover;
  background-position: center;
}

.sd-post-card__body { display: flex; flex-direction: column; gap: 12px; }

.sd-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.sd-post-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

.sd-post-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
}

.sd-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.sd-tag {
  display: inline-block;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.sd-post-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.sd-callout {
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: 48px;
  text-align: center;
}

.sd-callout__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}

.sd-callout__text {
  font-size: 15px;
  color: var(--body);
  margin: 0;
}

.sd-whois-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin: 24px 0 16px;
}

.sd-whois-form--hero { margin-top: 18px; }
.sd-page-hero--compact .sd-whois-form--hero { margin: 18px auto 0; max-width: 560px; }
.sd-page-hero--compact .sd-page-title { font-size: clamp(28px, 3.6vw, 36px); }

.sd-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--canvas);
  color: var(--ink);
  outline: none;
  font-size: 15px;
  min-width: 0;
  transition: border-color var(--t);
}

.sd-input::placeholder { color: var(--muted); }
.sd-input:focus { border-color: var(--ink); }

.sd-whois-form .sd-btn { height: 48px; padding: 0 22px; font-size: 14px; }

.sd-domain-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  justify-content: center;
}

.sd-domain-suggest button,
.sd-domain-suggest a,
.sd-domain-suggest [data-suggest-domain] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-card);
  border: 0;
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--t);
}

.sd-domain-suggest button:hover,
.sd-domain-suggest a:hover,
.sd-domain-suggest [data-suggest-domain]:hover { background: var(--surface-strong); }

.sd-domain-suggest strong { font-weight: 500; }
.sd-domain-suggest em { font-style: normal; color: var(--muted); font-size: 12px; }
.sd-suggest-icon {
  width: 6px; height: 6px;
  border-radius: var(--r-pill);
  background: var(--emerald);
}

.sd-whois-result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 16px;
  text-align: left;
}

.sd-whois-result:empty { display: none; }
.sd-whois-result--hero { margin-top: 0; text-align: left; }
.sd-whois-result .sd-whois-card--main { grid-column: 1 / -1; }
.sd-whois-result .sd-empty { grid-column: 1 / -1; }

.sd-whois-main {
  position: relative;
  background: var(--canvas);
  isolation: isolate;
  min-height: calc(100vh - 64px);
  min-height: calc(100svh - 64px);
}

.sd-whois-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.8px at 50% 50%, rgba(17, 17, 17, 0.55) 0, transparent 65%);
  background-size: 20px 20px;
  background-position: 0 0;
  z-index: 0;
  pointer-events: none;
}

.sd-whois-main > * { position: relative; z-index: 1; }

.sd-whois-results {
  padding: 0 0 32px;
}

.sd-whois-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-whois-card--main { padding: 18px 22px; gap: 10px; }
.sd-whois-card--small { padding: 14px 18px; gap: 8px; }

.sd-whois-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 20px;
}

.sd-whois-fields--single { grid-template-columns: 1fr; }

.sd-whois-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.sd-whois-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.sd-whois-pair {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  word-break: break-word;
}

.sd-whois-muted { color: var(--muted); font-size: 13px; }
.sd-whois-registrar { font-weight: 500; }

.sd-whois-pill-row { display: flex; flex-wrap: wrap; gap: 6px; }

.sd-whois-status-pill,
.sd-whois-ns-pill {
  display: inline-flex;
  align-items: center;
  background: var(--surface-card);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.sd-whois-ns-copy {
  appearance: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  transition: border-color var(--t), background var(--t);
}

.sd-whois-ns-copy:hover { border-color: var(--ink); background: var(--canvas); }

.sd-whois-ns-copy__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sd-whois-ns-token {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

.sd-whois-ns-copy__hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  align-self: center;
  transition: color var(--t);
}

.sd-whois-ns-copy:hover .sd-whois-ns-copy__hint { color: var(--accent); }

.sd-whois-ns-copy.sd-copy-ok {
  border-color: var(--success);
  background: rgba(16, 185, 129, 0.08);
}

.sd-whois-ns-copy.sd-copy-ok .sd-whois-ns-copy__hint { color: var(--success); }
.sd-whois-ns-copy.sd-copy-ok .sd-whois-ns-copy__hint::before { content: "скопировано · "; }

.sd-whois-status-pill.sd-status--bad,
.sd-status--bad {
  background: rgba(239, 68, 68, 0.12);
  color: var(--error);
}

.sd-whois-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.sd-whois-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}

.sd-whois-compact > .sd-whois-card--main { grid-column: 1 / -1; }
.sd-whois-compact > .sd-empty { grid-column: 1 / -1; }

@media (max-width: 768px) {
  .sd-whois-compact { grid-template-columns: 1fr; }
}

.sd-empty {
  font-size: 14px;
  color: var(--body);
  padding: 16px;
  text-align: center;
  background: var(--surface-card);
  border-radius: var(--r-md);
}

.sd-docs {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr) 220px;
  gap: 48px;
  align-items: start;
  width: min(1280px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 48px 0 96px;
}

.sd-docs-only-sidebar {
  grid-template-columns: 264px minmax(0, 1fr);
}

.sd-docs__sidebar {
  position: sticky;
  top: 16px;
  align-self: start;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding-right: 8px;
  font-size: 14px;
}

.sd-docs__sidebar-group {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 18px 12px 6px;
}

.sd-docs__sidebar-group:first-child { padding-top: 4px; }

.sd-docs__sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--r-md);
  color: var(--body);
  font-weight: 500;
  line-height: 1.35;
  transition: background var(--t), color var(--t);
}

.sd-docs__sidebar a:hover { background: var(--surface-card); color: var(--ink); }
.sd-docs__sidebar a.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.sd-docs__sidebar .sd-method {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: var(--r-xs);
  background: var(--surface-card);
  color: var(--ink);
  min-width: 44px;
  text-align: center;
}
.sd-docs__sidebar a.is-active .sd-method { background: rgba(33, 150, 243, 0.18); color: var(--accent-strong); }

.sd-docs__main {
  min-width: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
}

.sd-docs__hero {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}

.sd-docs__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-card);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.sd-docs__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 16px;
  text-transform: lowercase;
}

.sd-docs__lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
  max-width: 640px;
}

.sd-docs__article {
  scroll-margin-top: 24px;
  padding-top: 56px;
  margin-top: 0;
}
.sd-docs__article:first-of-type { padding-top: 0; }

.sd-docs__article + .sd-docs__article { border-top: 1px solid var(--hairline); }

.sd-docs__article-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.sd-docs__article h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 16px;
  text-transform: lowercase;
  scroll-margin-top: 24px;
}

.sd-docs__article h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
  scroll-margin-top: 24px;
}

.sd-docs__article h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 10px;
}

.sd-docs__article p {
  margin: 0 0 14px;
  color: var(--body);
}

.sd-docs__article ul, .sd-docs__article ol {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--body);
}
.sd-docs__article li { margin: 6px 0; }
.sd-docs__article li > p { margin: 0 0 6px; }

.sd-docs__article a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.sd-docs__article a:hover { text-decoration-thickness: 2px; }

.sd-docs__article strong { color: var(--ink); font-weight: 600; }

.sd-docs__article code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--surface-card);
  border-radius: var(--r-sm);
  padding: 2px 6px;
  color: var(--ink);
}

.sd-docs__article pre {
  background: var(--surface-dark);
  color: var(--on-dark);
  border-radius: var(--r-md);
  padding: 18px 20px;
  overflow-x: auto;
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.55;
}
.sd-docs__article pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: 13px;
}

.sd-docs__article blockquote {
  margin: 0 0 18px;
  padding: 14px 18px;
  background: var(--surface-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--body);
}
.sd-docs__article blockquote p:last-child { margin-bottom: 0; }

.sd-docs__article hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 28px 0;
}

.sd-docs__article table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 14px;
}
.sd-docs__article th, .sd-docs__article td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}
.sd-docs__article th { font-weight: 600; color: var(--ink); background: var(--surface-card); }

.sd-docs__article details {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 0;
  margin: 0 0 12px;
}
.sd-docs__article summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
}
.sd-docs__article summary::-webkit-details-marker { display: none; }
.sd-docs__article details[open] summary { border-bottom: 1px solid var(--hairline); }
.sd-docs__article details > *:not(summary) { padding: 12px 16px; }

.sd-docs__hint {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--surface-card);
  color: var(--body);
}
.sd-docs__hint--info    { background: rgba(33, 150, 243, 0.08);  border-color: var(--accent-border); }
.sd-docs__hint--success { background: rgba(16, 185, 129, 0.08);  border-color: rgba(16, 185, 129, 0.32); }
.sd-docs__hint--warning { background: rgba(245, 158, 11, 0.08);  border-color: rgba(245, 158, 11, 0.32); }
.sd-docs__hint--danger  { background: rgba(239, 68, 68, 0.08);   border-color: rgba(239, 68, 68, 0.32); }
.sd-docs__hint p:last-child { margin-bottom: 0; }

.sd-docs__endpoint-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--canvas);
}
.sd-docs__endpoint-method {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--surface-card);
  color: var(--ink);
  min-width: 64px;
  text-align: center;
}
.sd-docs__endpoint-method--get    { background: rgba(33, 150, 243, 0.14);  color: var(--accent-strong); }
.sd-docs__endpoint-method--post   { background: rgba(16, 185, 129, 0.14);  color: var(--success); }
.sd-docs__endpoint-method--patch  { background: rgba(245, 158, 11, 0.14);  color: var(--warning); }
.sd-docs__endpoint-method--delete { background: rgba(239, 68, 68, 0.14);   color: var(--error); }
.sd-docs__endpoint-path {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  word-break: break-all;
}

.sd-docs__params { width: 100%; }

.sd-docs__toc {
  position: sticky;
  top: 16px;
  align-self: start;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  font-size: 13px;
  border-left: 1px solid var(--hairline);
  padding: 4px 0 4px 16px;
}
.sd-docs__toc-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.sd-docs__toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  line-height: 1.4;
  transition: color var(--t);
}
.sd-docs__toc a:hover, .sd-docs__toc a.is-active { color: var(--ink); }

@media (max-width: 1100px) {
  .sd-docs { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; }
  .sd-docs__toc { display: none; }
}
@media (max-width: 768px) {
  .sd-docs {
    display: block;
    padding: 24px 0 64px;
  }
  .sd-docs__sidebar {
    position: relative;
    top: 0;
    max-height: none;
    overflow: visible;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 16px;
  }
}

@media (max-width: 1024px) {
  .sd-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .sd-hero__content { max-width: none; }
  .sd-bento,
  .sd-blog,
  .sd-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-features { grid-template-columns: repeat(2, 1fr); }
  .sd-ecosystem { grid-template-columns: repeat(2, 1fr); }
  .sd-stats { grid-template-columns: repeat(2, 1fr); }
  .sd-stats__item { border-left: 0; border-top: 1px solid var(--hairline); }
  .sd-stats__item:nth-child(-n+2) { border-top: 0; }
  .sd-stats__item:nth-child(2n) { border-left: 1px solid var(--hairline); }
  .sd-footer__inner { grid-template-columns: 1fr 1fr; }
  .sd-hero__cell { width: 72px; height: 72px; }
}

@media (max-width: 768px) {
  :root { --section: 64px; --section-tight: 48px; }
  .sd-cta__box { padding: 48px 24px; }
  .sd-band { padding: 32px; min-height: 0; }
  .sd-band__inner { max-width: 100%; }
  .sd-band__visual { display: none; }
  .sd-band .sd-hero__actions { width: 100%; }
  .sd-band .sd-hero__actions .sd-btn { flex: 1 1 auto; min-width: 0; }
  .sd-faq__item { padding: 0; }
  .sd-bento,
  .sd-categories,
  .sd-features,
  .sd-blog,
  .sd-blog-grid,
  .sd-ecosystem,
  .sd-stats { grid-template-columns: 1fr; }
  .sd-post-featured { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .sd-post-featured__title { font-size: 24px; }
  .sd-post-featured__text { font-size: 15px; }
  .sd-blog-feed { gap: 20px; }
  .sd-categories[data-compare] { flex-direction: column; }
  .sd-categories[data-compare] .sd-category { flex: 1; }
  .sd-categories.sd-compare--hovering .sd-category,
  .sd-categories .sd-category.sd-compare-card--active { flex-grow: 1; }
  .sd-compare { flex-direction: column; }
  .sd-compare-card { min-height: 0; }
  .sd-compare-card__body { max-width: 100%; }
  .sd-card--tall { grid-row: auto; }
  .sd-node--wide { grid-column: auto; }
  .sd-card__body,
  .sd-feature__body,
  .sd-category__body,
  .sd-node__body { max-width: 100%; }
  .sd-card { padding: 28px; min-height: 0; }
  .sd-feature,
  .sd-node { padding: 24px; min-height: 0; }
  .sd-category { padding: 28px; min-height: 0; }
  .sd-card__visual { width: 200px; height: 200px; right: -24px; bottom: -28px; opacity: 0.7; }
  .sd-card__visual--shield { width: 240px; height: 240px; right: -50px; bottom: -60px; }
  .sd-card__visual--lock { width: 200px; height: 200px; right: -32px; bottom: -32px; }
  .sd-card__visual--terminal { width: 240px; height: 170px; right: -45px; bottom: -50px; }
  .sd-feature__visual { width: 140px; height: 140px; right: -22px; bottom: -28px; opacity: 0.75; }
  .sd-category__visual { opacity: 0.7; }
  .sd-category__visual--globe { width: 200px; height: 200px; right: -32px; bottom: -36px; }
  .sd-category__visual--immortal { width: 200px; height: 200px; right: -28px; bottom: -36px; }
  .sd-node__visual { width: 140px; height: 140px; right: -22px; bottom: -28px; opacity: 0.75; }
  .sd-stats { border: 1px solid var(--hairline); border-radius: var(--r-lg); }
  .sd-stats__item { border-left: 0; border-top: 1px solid var(--hairline); }
  .sd-stats__item:first-child { border-top: 0; }
  .sd-list { grid-template-columns: 1fr; }
  .sd-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .sd-nav-groups { display: none; }
  .sd-nav__inner { grid-template-columns: auto auto; }
  .sd-brand { justify-self: start; }
  .sd-page-hero { padding: 56px 0 40px; }
  .sd-page-hero--compact { padding: 40px 0 24px; }
  .sd-domain-search { flex-direction: column; }
  .sd-whois-form { flex-direction: column; gap: 10px; margin: 20px 0 16px; }
  .sd-whois-form .sd-btn { width: 100%; height: 56px; font-size: 15px; }
  .sd-page-hero--compact .sd-whois-form--hero { max-width: 100%; }
  .sd-input { height: 56px; font-size: 16px; padding: 0 18px; }
  .sd-page-title { font-size: clamp(30px, 7vw, 40px) !important; line-height: 1.08; }
  .sd-page-hero--compact .sd-page-title { font-size: clamp(28px, 6.4vw, 34px) !important; }
  .sd-section__title,
  .sd-band__title { font-size: clamp(28px, 6.4vw, 36px); }
  .sd-cta__title { font-size: clamp(28px, 6.6vw, 36px); }
  .sd-section__lead,
  .sd-cta__text,
  .sd-page-hero__lead { font-size: 16px; }
  .sd-faq__question { font-size: 16px; padding: 18px 20px; gap: 12px; }
  .sd-faq__answer { font-size: 14px; padding: 0 20px 18px; }
  .sd-cta__box { padding: 40px 20px; }
  .sd-cta { padding: 56px 0; }
  .sd-hero { padding: 32px 0 56px; min-height: 0; }
  .sd-hero__lead { font-size: 17px; margin-bottom: 24px; }
  .sd-hero__center .sd-hero__actions { justify-content: center; }
  .sd-hero__center .sd-hero__actions .sd-btn {
    width: auto;
    min-width: 220px;
    padding: 0 28px;
  }
  .sd-btn--lg { height: 52px; font-size: 15px; }
  .sd-btn--nav { height: 40px; padding: 0 14px; font-size: 13px; }
  .sd-nav__inner { min-height: 60px; gap: 10px; }
  .sd-brand__text { font-size: 20px; }
  .sd-nav__end { gap: 8px; }
  .sd-hero__cell { width: 56px; height: 56px; }
  .sd-hero__cell:nth-child(11),
  .sd-hero__cell:nth-child(12) { display: none; }
  .sd-hero__title { font-size: 44px !important; line-height: 1.02; letter-spacing: -0.035em; }
  .sd-hero__title br { display: none; }
  .sd-footer { padding: 48px 0 28px; }
}

@media (max-width: 480px) {
  .sd-hero__title { font-size: 36px !important; }
  .sd-hero__center .sd-hero__actions .sd-btn { min-width: 200px; }
  .sd-card,
  .sd-category,
  .sd-post,
  .sd-post-card,
  .sd-feature,
  .sd-node { padding: 22px; }
  .sd-card { min-height: 220px; }
  .sd-card__visual { width: 170px; height: 170px; right: -22px; bottom: -28px; opacity: 0.7; }
  .sd-card__visual--shield { width: 200px; height: 200px; right: -42px; bottom: -50px; }
  .sd-card__visual--lock { width: 170px; height: 170px; right: -28px; bottom: -28px; }
  .sd-card__visual--terminal { width: 200px; height: 140px; right: -38px; bottom: -42px; }
  .sd-feature__visual { width: 120px; height: 120px; right: -18px; bottom: -22px; }
  .sd-category__visual--globe { width: 170px; height: 170px; right: -26px; bottom: -30px; }
  .sd-category__visual--immortal { width: 170px; height: 170px; right: -22px; bottom: -30px; }
  .sd-node__visual { width: 120px; height: 120px; right: -18px; bottom: -22px; }
  .sd-band { padding: 28px; }
  .sd-cta { padding: 48px 0; }
  .sd-cta__title { font-size: clamp(26px, 7vw, 32px); }
  .sd-section__title,
  .sd-band__title { font-size: clamp(24px, 6.8vw, 30px); }
  .sd-section__head { margin-bottom: 32px; }
  .sd-faq__question { font-size: 15px; padding: 16px 18px; }
  .sd-faq__answer { padding: 0 18px 16px; }
  .sd-whois-fields { grid-template-columns: 1fr; }
  .sd-brand { font-size: 30px; }
  .sd-brand__text { font-size: 18px; }
  .sd-input { height: 54px; }
  .sd-whois-form .sd-btn { height: 54px; }
  .sd-nav-group--lang { display: none; }
  .sd-btn--nav { padding: 0 12px; font-size: 12px; }
  .sd-nav__inner { gap: 8px; min-height: 56px; }
  .sd-footer { padding: 40px 0 24px; }
  .sd-footer__inner { gap: 28px; margin-bottom: 32px; }
  .sd-footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.sd-legal {
  max-width: 760px;
  margin: 0 auto;
  color: var(--body);
}

.sd-legal__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 32px;
}

.sd-legal__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 40px;
  padding: 24px;
  background: var(--surface-card);
  border-radius: var(--r-md);
}

.sd-legal__section { margin-bottom: 44px; }
.sd-legal__section:last-child { margin-bottom: 0; }

.sd-legal__h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 18px;
}

.sd-legal__h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin: 22px 0 10px;
}

.sd-legal p,
.sd-legal li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 12px;
}

.sd-legal p:last-child,
.sd-legal li:last-child { margin-bottom: 0; }

.sd-legal ul,
.sd-legal ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.sd-legal li { margin-bottom: 8px; }

.sd-legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sd-legal a:hover { color: var(--accent-strong); }

.sd-legal strong { color: var(--ink); font-weight: 600; }

.sd-legal__nav {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
}

.sd-legal__nav a {
  color: var(--muted);
}

.sd-legal__nav a:hover { color: var(--ink); }

@media (max-width: 768px) {
  .sd-legal__h2 { font-size: 20px; }
  .sd-legal p, .sd-legal li { font-size: 15px; }
  .sd-legal__intro { padding: 18px; font-size: 15px; }
}

.sd-cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(380px, calc(100vw - 48px));
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 28px 64px -18px rgba(0, 0, 0, 0.22), 0 8px 24px -10px rgba(0, 0, 0, 0.10);
  z-index: 1000;
  animation: sd-cookie-in 320ms cubic-bezier(.2, .7, .2, 1);
}

@keyframes sd-cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sd-cookie-banner.is-leaving {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.sd-cookie-banner__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 8px;
}

.sd-cookie-banner__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 18px;
}

.sd-cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
}

.sd-cookie-banner__accept {
  min-width: 140px;
  height: 42px;
  padding: 0 22px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .sd-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 20px;
    border-radius: 16px;
  }
  .sd-cookie-banner__actions { width: 100%; }
  .sd-cookie-banner__accept { width: 100%; height: 48px; }
}
