/* HostKurd domain registration landing page */
:root {
  --brand-cyan: #0ca0c9;
  --brand-cyan-bright: #35bce1;
  --brand-orange: #f9ae1e;
  --ink: #12252d;
  --muted: #647881;
  --line: #dcebef;
  --surface: #ffffff;
  --surface-soft: #f4fafc;
  --page: #f7fbfc;
  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 22px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(53, 188, 225, .10), transparent 26rem),
    radial-gradient(circle at 90% 80%, rgba(249, 174, 30, .08), transparent 25rem),
    var(--page);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 48px), var(--content-width));
  min-height: 100vh;
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12, 160, 201, .12);
}

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

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

.header-label {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 54px;
  align-items: center;
  padding: 54px 0 62px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(12, 160, 201, .22);
  border-radius: var(--radius-small);
  color: #087d9e;
  background: rgba(53, 188, 225, .08);
  font-size: .86rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 5px rgba(12, 160, 201, .12);
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.lead {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.78;
}

.lead strong {
  color: var(--ink);
  font-weight: 750;
}

.actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.primary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #078db3;
  border-radius: var(--radius-small);
  color: #ffffff;
  background: var(--brand-cyan);
  box-shadow: 0 8px 22px rgba(12, 160, 201, .16);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform .2s ease,
    background-color .2s ease,
    box-shadow .2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #098fb5;
  box-shadow: 0 12px 26px rgba(12, 160, 201, .22);
}

.primary-button:focus-visible {
  outline: 3px solid rgba(249, 174, 30, .38);
  outline-offset: 3px;
}

.primary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.availability-note {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.domain-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.glow-one {
  inset: 14% 17% auto auto;
  width: 180px;
  height: 180px;
  background: rgba(53, 188, 225, .12);
}

.glow-two {
  inset: auto auto 9% 14%;
  width: 145px;
  height: 145px;
  background: rgba(249, 174, 30, .10);
}

.orbit {
  transform-box: fill-box;
  transform-origin: center;
}

.orbit ellipse {
  fill: none;
  stroke: #c7e7ef;
  stroke-width: 1.5;
  stroke-dasharray: 7 10;
}

.orbit-one {
  animation: orbit-spin 22s linear infinite;
}

.orbit-two {
  animation: orbit-spin-reverse 28s linear infinite;
}

.orbit-node {
  stroke: #ffffff;
  stroke-width: 4;
}

.node-cyan {
  fill: var(--brand-cyan-bright);
}

.node-orange {
  fill: var(--brand-orange);
}

.signal > circle:first-child {
  fill: none;
  stroke: rgba(12, 160, 201, .42);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: signal-pulse 2.7s ease-out infinite;
}

.signal > circle:last-child {
  fill: var(--brand-cyan);
}

.signal-two > circle:first-child {
  stroke: rgba(249, 174, 30, .46);
  animation-delay: 1.1s;
}

.signal-two > circle:last-child {
  fill: var(--brand-orange);
}

.floating-chip {
  animation: float-card 5s ease-in-out infinite;
}

.chip-right {
  animation-delay: -2.4s;
}

.floating-chip rect {
  fill: rgba(255, 255, 255, .94);
  stroke: #dcebef;
  stroke-width: 1.5;
}

.floating-chip circle {
  fill: var(--brand-orange);
}

.floating-chip path:not(.lock-body):not(.lock-shackle) {
  fill: none;
  stroke: #a6c9d2;
  stroke-width: 5;
  stroke-linecap: round;
}

.lock-body {
  fill: rgba(12, 160, 201, .15);
  stroke: var(--brand-cyan);
  stroke-width: 2;
}

.lock-shackle {
  fill: none;
  stroke: var(--brand-cyan);
  stroke-width: 2;
  stroke-linecap: round;
}

.main-card {
  animation: card-breathe 6s ease-in-out infinite;
}

.verified-badge {
  animation: verified-pop 4.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.server-stack rect {
  fill: #ffffff;
  stroke: #d7e9ee;
  stroke-width: 1.5;
}

.server-stack circle {
  fill: var(--brand-cyan-bright);
}

.server-stack path {
  fill: none;
  stroke: #b8d7df;
  stroke-width: 3;
  stroke-linecap: round;
}

.connection-line {
  fill: none;
  stroke: var(--brand-cyan);
  stroke-width: 2;
  stroke-dasharray: 5 7;
  animation: dash-flow 1.8s linear infinite;
}

.site-footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(12, 160, 201, .12);
  color: var(--muted);
  font-size: .83rem;
}

.site-footer a {
  color: #087d9e;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes signal-pulse {
  0% {
    opacity: .9;
    transform: scale(.35);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes card-breathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes verified-pop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -24;
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: min(calc(100% - 34px), 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 54px;
  }

  .hero-content {
    max-width: 690px;
    text-align: center;
    margin-inline: auto;
  }

  .status-badge {
    margin-inline: auto;
  }

  .lead {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(calc(100% - 28px), 560px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 154px;
  }

  .header-label {
    display: none;
  }

  .hero {
    padding: 42px 0 46px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
  }

  .lead {
    line-height: 1.68;
  }

  .actions {
    flex-direction: column;
    gap: 15px;
  }

  .primary-button {
    width: 100%;
    max-width: 290px;
  }

  .domain-illustration {
    margin-top: 4px;
  }

  .site-footer {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }
}

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