:root {
  color-scheme: light;
  --text: #111111;
  --muted: #6b6b6b;
  --line: #dedede;
  --soft: #f6f6f6;
  --page-pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: #ffffff; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page-shell {
  width: min(1280px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand span { color: inherit; }

.availability,
.counter-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.availability span,
.counter-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c8d46;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  min-height: 610px;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h1 em { color: inherit; font: inherit; }

.lead {
  max-width: 610px;
  margin: 38px 0 32px;
  color: #454545;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.contact-button {
  width: min(100%, 290px);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--text);
  color: #ffffff;
  background: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.contact-button:hover { background: #333333; }
.contact-button:focus-visible { outline: 3px solid #777777; outline-offset: 3px; }
.direct-contact { margin: 20px 0 0; color: var(--muted); font-size: 13px; }
.direct-contact a { color: var(--text); text-underline-offset: 4px; }

.domain-stage {
  position: relative;
  min-height: 390px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: #ffffff;
}

.stage-grid,
.domain-stage::before,
.domain-stage::after,
.stage-index { display: none; }

.domain-mark {
  margin-top: 48px;
  white-space: nowrap;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.domain-zone { color: var(--muted); }
.offer-card { padding-top: 28px; border-top: 1px solid var(--line); }

.offer-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.offer-card li { color: #454545; font-size: 13px; line-height: 1.4; }
.offer-card li::before { content: "—"; margin-right: 8px; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 0.66fr)) minmax(290px, 1.2fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact,
.visitor-counter { min-height: 138px; padding: 28px clamp(18px, 2.2vw, 32px); }
.fact { display: flex; gap: 16px; border-right: 1px solid var(--line); }
.fact-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.fact strong { display: block; margin-bottom: 7px; font-size: 14px; }
.fact small { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }

.visitor-counter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--soft);
}

.counter-values { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.counter-values strong { display: block; font-size: 29px; line-height: 1; font-variant-numeric: tabular-nums; }
.counter-values small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }

footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #888888;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .domain-stage { min-height: 340px; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .visitor-counter { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .site-header { min-height: 72px; }
  .availability { font-size: 11px; }
  .hero { padding: 52px 0; gap: 44px; }
  h1 { font-size: clamp(56px, 18vw, 82px); }
  .lead { margin-top: 28px; }
  .domain-stage { min-height: 310px; padding: 30px 24px; }
  .domain-mark { margin-top: 20px; font-size: clamp(36px, 11vw, 54px); }
  .facts { grid-template-columns: 1fr; }
  .fact { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  .visitor-counter { grid-column: auto; min-height: 155px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

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