:root {
  --bg-main: #6818ff;
  --bg-deep: #4100be;
  --bg-soft: #9e73ff;
  --panel: rgba(255, 255, 255, 0.85);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --text: #2a172f;
  --muted: #6d6277;
  --line: rgba(126, 91, 182, 0.16);
  --accent: #9f67ff;
  --accent-strong: #7b39f6;
  --accent-soft: #efe5ff;
  --shadow: 0 42px 120px rgba(74, 16, 180, 0.4);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", "Satoshi", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at center, rgba(162, 113, 255, 0.18), transparent 36%),
    linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 100%);
}

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

[hidden] {
  display: none !important;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 20px;
  overflow: hidden;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.background-glow {
  position: absolute;
  width: 48vw;
  height: 48vw;
  min-width: 360px;
  min-height: 360px;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.9;
  pointer-events: none;
}

.glow-top {
  top: -18vw;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(198, 176, 255, 0.95) 0%, rgba(155, 104, 255, 0.55) 35%, rgba(104, 24, 255, 0) 72%);
}

.glow-left {
  left: -18vw;
  bottom: -16vw;
  background: radial-gradient(circle, rgba(185, 145, 255, 0.58) 0%, rgba(104, 24, 255, 0) 72%);
}

.glow-right {
  right: -16vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(185, 145, 255, 0.5) 0%, rgba(104, 24, 255, 0) 72%);
}

.card {
  position: relative;
  width: min(1320px, 100%);
  padding: 34px 42px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 243, 255, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.card-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(177, 127, 255, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(179, 131, 255, 0.16), transparent 22%);
  pointer-events: none;
}

.topbar,
.hero,
.contact-panel {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #c5acff 0%, #8f58ff 100%);
  box-shadow: 0 14px 30px rgba(143, 88, 255, 0.28);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.brand-text {
  font-size: 1.08rem;
}

.hero {
  max-width: 780px;
  margin: 110px auto 56px;
  text-align: center;
}

.badge,
.success-message {
  backdrop-filter: blur(12px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(153, 112, 234, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: #5b4876;
  font-weight: 600;
  font-size: 0.95rem;
}

.badge::before {
  content: "✦";
  margin-right: 10px;
  color: var(--accent-strong);
}

h1,
h2 {
  font-family: "Plus Jakarta Sans", "Satoshi", "Avenir Next", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  margin: 0 auto;
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.92;
  font-weight: 800;
}

.domain-highlight {
  display: inline-block;
  color: var(--accent-strong);
  text-shadow: 0 10px 34px rgba(145, 82, 255, 0.16);
}

.section-kicker,
.contact-form label {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.section-kicker {
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(153, 112, 234, 0.14);
}

.section-kicker {
  margin: 0 0 12px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
}

.contact-form {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(96, 34, 191, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #4b4058;
}

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

.contact-form input,
.contact-form textarea,
.contact-form button {
  font: inherit;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(152, 115, 225, 0.14);
  background: var(--panel-strong);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(159, 103, 255, 0.18);
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #c89dff 0%, var(--accent-strong) 100%);
  color: #fffdf9;
  padding: 16px 28px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
  box-shadow: 0 16px 32px rgba(123, 57, 246, 0.28);
}

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

.contact-form button:active {
  transform: translateY(0);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.success-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.success-message {
  display: inline-flex;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(153, 112, 234, 0.16);
}

.sparkle {
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, rgba(179, 108, 255, 0.94) 0%, rgba(132, 71, 245, 0.94) 100%);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  opacity: 0.72;
  filter: drop-shadow(0 8px 18px rgba(123, 57, 246, 0.24));
}

.sparkle::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 22px;
  left: 22px;
  background: inherit;
  clip-path: inherit;
}

.sparkle-one {
  top: 180px;
  left: 24%;
  transform: scale(0.68);
}

.sparkle-two {
  top: 154px;
  right: 22%;
}

.sparkle-three {
  bottom: 140px;
  left: 16%;
  transform: scale(0.86);
}

.sparkle-four {
  right: 18%;
  bottom: 110px;
  transform: scale(0.78);
}

.honey {
  position: absolute;
  left: -9999px;
}

@media (max-width: 980px) {
  .card {
    padding: 28px 20px;
  }

  .hero {
    margin-top: 64px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .sparkle-two,
  .sparkle-four {
    right: 10%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 18px;
  }

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

  .topbar {
    align-items: flex-start;
  }

  .hero {
    margin-top: 48px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .contact-panel {
    padding: 18px;
  }

  .contact-form {
    padding: 18px;
  }

  .sparkle {
    opacity: 0.44;
  }

  .sparkle-one {
    left: 10%;
    top: 150px;
  }

  .sparkle-two {
    top: 190px;
  }

  .sparkle-three {
    left: 8%;
    bottom: 200px;
  }

  .sparkle-four {
    right: 8%;
    bottom: 160px;
  }
}
