:root {
  --color-primary: #0f7b63;
  --color-secondary: #252a2b;
  --color-accent: #f2b705;
  --hero-background: #f7faf8;
  --surface: #ffffff;
  --surface-soft: #f5f8f6;
  --text: #1d2423;
  --muted: #5f6b68;
  --line: #d9e2de;
  --shadow: 0 20px 50px rgba(29, 36, 35, .10);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 24px rgba(29, 36, 35, .08);
  color: var(--color-primary);
  font-weight: 800;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(29, 36, 35, .10);
}

.brand__name {
  overflow: hidden;
  max-width: min(42vw, 420px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-link {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  padding: 118px 0 72px;
  background: var(--hero-background);
  background-position: center;
  background-size: cover;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 123, 99, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 30px rgba(29, 36, 35, .08);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 76px;
  line-height: .98;
  letter-spacing: 0;
}

.domain-name {
  max-width: 100%;
  margin: 22px 0 0;
  color: var(--color-primary);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.domain-aliases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 860px;
  margin: 18px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.domain-aliases li {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(37, 42, 43, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(15, 123, 99, .22);
  color: #ffffff;
}

.button--primary:hover {
  box-shadow: 0 18px 36px rgba(15, 123, 99, .26);
}

.button--ghost {
  border-color: rgba(37, 42, 43, .18);
  background: rgba(255, 255, 255, .78);
  color: var(--color-secondary);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(37, 42, 43, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.extra-text {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__domain {
  color: var(--color-secondary);
  font-weight: 800;
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header__inner {
    padding: 18px 0;
  }

  .brand__name {
    max-width: 50vw;
  }

  .header-link {
    font-size: 13px;
  }

  .hero {
    min-height: calc(100vh - 82px);
    padding: 102px 0 50px;
  }

  h1 {
    font-size: 42px;
  }

  .domain-name {
    font-size: 34px;
  }

  .price-badge {
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 28px;
  }

  .button {
    width: min(100%, 360px);
  }

  .contact-methods {
    width: 100%;
  }

  .contact-methods li,
  .contact-methods a {
    width: min(100%, 360px);
  }

  .contact-methods a {
    justify-content: center;
  }

  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 980px) and (min-width: 701px) {
  h1 {
    font-size: 60px;
  }

  .domain-name {
    font-size: 46px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  .domain-name {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
