:root {
  --ink: #241f21;
  --muted: #6f676a;
  --paper: #f8fdfa;
  --paper-strong: #ffffff;
  --line: #dbe6e1;
  --mint: #52b292;
  --coral: #ff7f7f;
  --sky: #48a9d6;
  --plum: #7a4f91;
  --gold: #d7a11e;
  --shadow: 0 20px 55px rgba(55, 38, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(82, 178, 146, 0.14), transparent 28%),
    linear-gradient(180deg, #f2fbf7 0%, #fbfefd 54%, #eef5ff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(248, 253, 250, 0.84);
  border-bottom: 1px solid rgba(36, 31, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.network-strip,
.admin-link,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  gap: 8px;
}

.nav-links a,
.primary-link,
.secondary-link {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
}

.nav-links a {
  padding: 0 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  width: min(1160px, calc(100% - 36px));
  min-height: min(620px, calc(82vh - 72px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.8rem, 16vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 26px;
  color: #52494d;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link,
.secondary-link {
  padding: 0 18px;
  border: 1px solid transparent;
}

.primary-link {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(36, 31, 33, 0.18);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(36, 31, 33, 0.12);
}

.primary-link:hover,
.secondary-link:hover,
.service-card:hover,
.admin-link:hover {
  transform: translateY(-2px);
}

.bunny-stage {
  position: relative;
  min-height: clamp(330px, 40vw, 480px);
  display: grid;
  place-items: center;
}

.bunny-stage::before {
  content: "";
  position: absolute;
  inset: auto 0 8% 0;
  height: 28%;
  background: #d9efe6;
  border: 1px solid rgba(82, 178, 146, 0.26);
  border-radius: 999px 999px 38% 38%;
  transform: perspective(560px) rotateX(58deg);
}

.bunny-stage img {
  position: relative;
  width: min(100%, 460px);
  filter: drop-shadow(0 28px 28px rgba(36, 31, 33, 0.16));
}

.signal-card {
  position: absolute;
  top: 8%;
  right: 4%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #245645;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(82, 178, 146, 0.28);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(82, 178, 146, 0.14);
}

.network-strip {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 42px;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.network-strip > div {
  min-width: 0;
}

.strip-label,
.service-kicker,
.service-card > span:last-child,
small {
  display: block;
  color: var(--muted);
}

.strip-label,
.service-kicker {
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.network-strip strong {
  overflow-wrap: anywhere;
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 14px;
}

.section-heading {
  margin-bottom: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.admin-link {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card {
  min-height: 208px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(55, 38, 27, 0.08);
}

.service-card:hover,
.admin-link:hover {
  border-color: rgba(36, 31, 33, 0.28);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.service-card strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.service-card > span:last-child {
  min-height: 38px;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.accent-mint {
  --accent: var(--mint);
}

.accent-coral {
  --accent: var(--coral);
}

.accent-sky {
  --accent: var(--sky);
}

.accent-plum {
  --accent: var(--plum);
}

.accent-gold {
  --accent: var(--gold);
}

.admin-section {
  padding-bottom: 70px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-link {
  min-height: 104px;
  gap: 16px;
  padding: 18px;
  background: #242122;
  color: #f8fdfa;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.admin-mark {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #f6c44f;
  border-radius: 8px;
  font-weight: 900;
}

.admin-link small {
  margin-top: 4px;
  color: rgba(248, 253, 250, 0.68);
  overflow-wrap: anywhere;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid rgba(36, 31, 33, 0.1);
}

.site-footer a {
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .bunny-stage {
    min-height: 360px;
    order: -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    width: min(100% - 28px, 1160px);
    min-height: auto;
  }

  h1 {
    font-size: clamp(4.8rem, 23vw, 7rem);
  }

  .hero-actions a {
    width: 100%;
  }

  .network-strip,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .network-strip {
    display: grid;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 176px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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