:root {
  --background-image: url("assets/backgroundhkb.jpg");
  --background: #050910;
  --primary: #f9f6f2;
  --accent: #d68c73;
  --neon-pink: #ff3f9d;
  --neon-gold: #f8b34c;
  --neon-blue: #28a8ff;
  --secondary-accent: #bfa6a0;
  --white: #ffffff;
  --muted: rgba(249, 246, 242, 0.76);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(5, 9, 16, 0.5), rgba(5, 9, 16, 0.76)),
    linear-gradient(180deg, rgba(5, 9, 16, 0.1), rgba(5, 9, 16, 0.9)),
    var(--background-image) center / cover fixed,
    var(--background);
  color: var(--primary);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(255, 63, 157, 0.34);
}

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

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: #050910;
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero,
.social-section,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.social-card,
.button {
  outline-offset: 4px;
}

.hero {
  display: block;
  min-height: calc(100vh - 4rem);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 8vw, 6rem);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--neon-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(4.1rem, 14vw, 8.25rem);
  font-weight: 820;
  text-shadow:
    0 0 28px rgba(40, 168, 255, 0.18),
    0 14px 40px rgba(0, 0, 0, 0.28);
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 790;
}

.rotator {
  display: flex;
  min-height: 2.2rem;
  align-items: baseline;
  gap: 0.72rem;
  margin-bottom: 1.65rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 63, 157, 0.36);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(4, 7, 13, 0.62);
  box-shadow:
    0 0 22px rgba(255, 63, 157, 0.18),
    inset 0 0 20px rgba(255, 63, 157, 0.08);
  color: var(--white);
  font-size: clamp(1.3rem, 4.4vw, 2.4rem);
  font-weight: 740;
  line-height: 1.1;
  padding: 0.65rem 0.9rem;
}

.rotator-prefix {
  color: #fff7d9;
  font-weight: 680;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.82),
    0 0 14px rgba(248, 179, 76, 0.88),
    0 0 34px rgba(248, 179, 76, 0.44);
}

.typed-text {
  color: #fff5fb;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.92),
    0 0 12px rgba(255, 63, 157, 0.9),
    0 0 34px rgba(255, 63, 157, 0.56),
    0 0 60px rgba(255, 63, 157, 0.28);
  animation: sign-flicker 4.6s steps(1, end) infinite;
}

.typing-cursor {
  width: 0.08em;
  height: 1em;
  border-radius: 999px;
  background: var(--neon-pink);
  box-shadow:
    0 0 8px rgba(255, 63, 157, 0.86),
    0 0 24px rgba(255, 63, 157, 0.46);
  transform: translateY(0.12em);
  animation: blink 900ms steps(2, start) infinite;
}

.intro,
.coming-soon,
.social-copy p {
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.intro {
  margin-bottom: 1rem;
}

.coming-soon {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 760;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button .wp-block-button__link {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
}

.button .wp-block-button__link::after {
  margin-left: 0.55rem;
  content: "→";
}

.button-primary {
  background: linear-gradient(135deg, rgba(255, 63, 157, 0.96), rgba(248, 179, 76, 0.92));
  color: #120914;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(255, 63, 157, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(255, 63, 157, 0.38);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.social-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.social-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(6, 10, 18, 0.56);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.social-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.social-list {
  display: grid;
  gap: 0.75rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.8rem;
  padding: 1rem;
  transition:
    border-color 180ms var(--ease),
    transform 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 63, 157, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(6, 10, 18, 0.72);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 63, 157, 0.14);
  transform: translateY(-2px);
}

.social-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 63, 157, 0.12);
  color: var(--white);
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card strong {
  font-size: 1.05rem;
}

.social-card small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.6rem;
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer p:last-child {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes sign-flicker {
  0%,
  6%,
  8%,
  100% {
    opacity: 1;
    filter: brightness(1.12);
  }

  7%,
  41% {
    opacity: 0.72;
    filter: brightness(0.8);
  }

  42% {
    opacity: 1;
    filter: brightness(1.2);
  }

  43% {
    opacity: 0.86;
    filter: brightness(0.9);
  }
}

@media (max-width: 860px) {
  .hero,
  .section-heading,
  .social-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .section-heading {
    gap: 0.75rem;
  }
}

@media (max-width: 560px) {
  .hero,
  .social-section,
  .site-footer {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    gap: 2rem;
    padding-bottom: 3.2rem;
  }

  h1 {
    font-size: clamp(3.85rem, 18vw, 5.1rem);
  }

  .rotator {
    display: block;
    min-height: 5.15rem;
    width: 100%;
  }

  .rotator-prefix {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
  }

  .typed-text {
    display: inline;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    display: block;
  }

  .site-footer p:last-child {
    margin-top: 1.25rem;
    text-align: left;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
