* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  --bg: #050406;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(192, 192, 192, 0.2);
  --text: #fff8ff;
  --muted: rgba(240, 225, 240, 0.7);
  --wine: #600a0a;
  --silver: #c0c0c0;
  --plum: #dda0dd;
  --pink: #ff73bd;
  --soft-pink: #ffc2e3;
}

html,
body {
  overscroll-behavior: auto;
  scroll-behavior: smooth;
  touch-action: auto;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(96, 10, 10, 0.56), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(221, 160, 221, 0.2), transparent 28rem),
    radial-gradient(circle at 45% 110%, rgba(255, 115, 189, 0.16), transparent 32rem),
    linear-gradient(135deg, #050406 0%, #13090d 46%, #07060a 100%);
  color: var(--text);
  font-family: Outfit, Poppins, Arial, sans-serif;
  -webkit-overflow-scrolling: touch;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.emoji-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.background-glow {
  position: fixed;
  z-index: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(58px);
  animation: blobDrift 12s ease-in-out infinite alternate;
}

.glow-one {
  top: -8rem;
  left: -6rem;
  background: rgba(255, 115, 189, 0.24);
}

.glow-two {
  right: -9rem;
  bottom: 2rem;
  background: rgba(96, 10, 10, 0.42);
  animation-duration: 15s;
}

.floating-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 8, 12, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.floating-nav a {
  min-height: 2.35rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  font-weight: 800;
  transition: 0.24s ease;
}

.floating-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 0 22px rgba(255, 115, 189, 0.18);
}

.site-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  width: min(92%, 460px);
  margin: 0 auto;
  padding: 6.5rem 0 3rem;
}

.wide-shell {
  width: min(92%, 760px);
}

.card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(255, 115, 189, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  text-align: center;
  animation: fadeInUp 0.8s ease-out both;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 2rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.35), rgba(255, 115, 189, 0.5), transparent);
}

.domain-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(192, 192, 192, 0.24);
  border-radius: 999px;
  background: rgba(221, 160, 221, 0.08);
  color: rgba(240, 225, 240, 0.84);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.profile {
  position: relative;
}

.profile-ring {
  display: none;
}

.profile img {
  position: relative;
  width: 168px;
  height: auto;
  margin-bottom: 1.15rem;
  border: 0;
  border-radius: 1.25rem;
  object-fit: contain;
  box-shadow: none;
  animation: floatSoft 5s ease-in-out infinite;
}

.profile h1 {
  font-size: clamp(2rem, 9vw, 2.65rem);
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 0 28px rgba(221, 160, 221, 0.2);
}

.profile-handle {
  margin-top: 0.25rem;
  color: var(--silver);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.profile-subtitle {
  margin-top: 0.45rem;
  color: var(--wine);
  font-weight: 900;
  text-shadow: none;
}

.tagline {
  max-width: 22rem;
  margin: 0.6rem auto 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.profile .profile-subtitle {
  color: #600a0a;
  font-style: italic;
  text-shadow: none;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.link-button {
  position: relative;
  overflow: hidden;
  min-height: 4.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(96, 10, 10, 0.26));
  color: #fff;
  font-weight: 800;
  transition: 0.28s ease;
  transform-style: preserve-3d;
}

.link-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transition: 0.45s ease;
}

.link-main {
  display: block;
  color: var(--soft-pink);
  font-size: 1rem;
}

.link-button span:last-child {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 500;
}

.link-button:hover {
  border-color: rgba(221, 160, 221, 0.42);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.14), rgba(255, 115, 189, 0.15), rgba(96, 10, 10, 0.16));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 115, 189, 0.12);
  transform: translateY(-3px) rotateX(2deg);
}

.link-button:hover::after {
  transform: translateX(115%);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.22s ease;
}

.socials img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.socials a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 0 24px rgba(221, 160, 221, 0.22);
}

.seo-line {
  margin-top: 1rem;
  color: rgba(240, 225, 240, 0.58);
  font-size: 0.76rem;
  line-height: 1.45;
}

.spicy-link {
  display: grid;
  gap: 0.28rem;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 1.25rem;
  background: rgba(96, 10, 10, 0.28);
  color: #fff;
  transition: 0.24s ease;
}

.spicy-link span {
  color: #600a0a;
  font-size: 1rem;
  font-weight: 900;
}

.spicy-link small {
  color: rgba(240, 225, 240, 0.74);
  font-size: 0.82rem;
  font-weight: 600;
}

.spicy-link:hover {
  border-color: rgba(221, 160, 221, 0.38);
  background: rgba(96, 10, 10, 0.38);
  transform: translateY(-2px);
}

.contact-card {
  text-align: left;
  animation-delay: 0.1s;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--soft-pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.7rem;
}

.section-heading h1 {
  margin-top: 0.35rem;
  color: #fff;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.05;
}

.section-heading span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.choice-card {
  display: grid;
  gap: 0.4rem;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.76);
  transition: 0.24s ease;
}

.choice-button {
  place-content: center;
  min-height: 8.5rem;
  text-align: center;
}

.choice-card strong {
  color: #fff;
  font-size: 1.08rem;
}

.choice-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.choice-card:hover,
.active-choice {
  border-color: rgba(221, 160, 221, 0.42);
  background: rgba(96, 10, 10, 0.2);
  box-shadow: 0 0 28px rgba(255, 115, 189, 0.12);
  transform: translateY(-2px);
}

#business-inquiry {
  scroll-margin-top: 6rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  outline: none;
  transition: 0.18s ease;
}

input,
select {
  height: 2.9rem;
  padding: 0 0.9rem;
}

textarea {
  resize: vertical;
  padding: 0.85rem 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(221, 160, 221, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 115, 189, 0.1);
}

.field-error {
  border-color: rgba(96, 10, 10, 0.95) !important;
  box-shadow: 0 0 0 4px rgba(96, 10, 10, 0.32) !important;
}

.honeypot {
  display: none;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-status,
#formStatus {
  min-height: 1.3rem;
  color: rgba(240, 225, 240, 0.84);
  font-size: 0.84rem;
  line-height: 1.4;
}

button {
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--silver);
  color: #111016;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(255, 115, 189, 0.22);
  transition: 0.2s ease;
}

button:hover {
  transform: scale(1.02);
  background: #ffe1f1;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.emoji {
  filter: drop-shadow(0 0 14px rgba(221, 160, 221, 0.22));
  opacity: 0.86;
  will-change: transform, opacity;
}

@keyframes fall {
  0% {
    transform: translate3d(0, -20px, 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--drift, 20px), 112vh, 0) rotate(var(--spin, 80deg));
    opacity: 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes blobDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -14px, 0) scale(1.08);
  }
}

@media (max-width: 540px) {
  .floating-nav {
    width: calc(100% - 1rem);
    justify-content: center;
  }

  .floating-nav a {
    padding-inline: 0.75rem;
  }

  .site-shell {
    width: min(94%, 460px);
    padding-top: 5.9rem;
  }

  .card {
    border-radius: 1.45rem;
    padding: 1rem;
  }

  .choice-grid,
  .form-row,
  .form-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  button {
    width: 100%;
  }
}

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