/* ================================================
   VEDABYTE — Design System
   Fonts: Inter via Google Fonts (loaded in <head>)
   ================================================ */

/* --- Custom Properties ---------------------------------- */
:root {
  --color-black:    #000000;
  --color-obsidian: #0b0b0f;
  --color-purple:   #7c3aed;
  --color-purple-dark: #6d28d9;
  --color-indigo:   #6366f1;
  --color-lavender: #a78bfa;
  --color-white:    #ffffff;
  --color-gray:     #9ca3af;

  --font-sans: "Inter", system-ui, sans-serif;

  --navbar-height: 72px;
}

/* --- Reset & Base --------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 1.5rem);
  color-scheme: dark;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul[role="list"] {
  list-style: none;
}

/* --- Glow Utilities ------------------------------------- */

.glow-top {
  background-image: radial-gradient(
    ellipse 80% 55% at 50% -5%,
    rgba(124, 58, 237, 0.28) 0%,
    transparent 70%
  );
}

.glow-center {
  background-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    rgba(124, 58, 237, 0.18) 0%,
    transparent 70%
  );
}

.glow-bottom {
  background-image: radial-gradient(
    ellipse 70% 45% at 50% 110%,
    rgba(124, 58, 237, 0.22) 0%,
    transparent 65%
  );
}

.glow-overlay {
  position: relative;
}
.glow-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.glow-overlay > * {
  position: relative;
  z-index: 1;
}

/* --- Typography helpers --------------------------------- */
.text-lavender  { color: var(--color-lavender); }
.text-gray      { color: var(--color-gray); }
.text-purple    { color: var(--color-purple); }
.tracking-brand { letter-spacing: -0.03em; }
.tracking-wide  { letter-spacing: 0.12em; }

/* --- Background helpers --------------------------------- */
.bg-obsidian { background-color: var(--color-obsidian); }
.bg-black    { background-color: var(--color-black); }


/* ================================================
   NAVBAR
   ================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.navbar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navbar__links a:hover {
  color: var(--color-white);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.navbar__cta:hover {
  background: var(--color-purple-dark);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.45);
}

/* Hamburger button */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown panel */
.navbar__mobile {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 11, 15, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  padding: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
}

.navbar__mobile.is-open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
}

.navbar__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.navbar__mobile-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray);
  transition: color 0.2s ease;
}

.navbar__mobile-links a:hover {
  color: var(--color-white);
}

.navbar__mobile-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.navbar__mobile-cta:hover {
  background: var(--color-purple-dark);
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
}


/* ================================================
   HERO
   ================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-height) + 5rem) 1.5rem 5rem;
  overflow: hidden;
  background-color: var(--color-black);
}

/* Layered radial purple glow behind the content */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 25%, rgba(124, 58, 237, 0.24) 0%, transparent 65%),
    radial-gradient(ellipse 50% 35% at 50% 5%,  rgba(99, 102, 241, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pill badge above the headline */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-lavender);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  margin-bottom: 1.75rem;
}

/* Main headline */
.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-lavender);
}

/* Subheadline */
.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: var(--color-gray);
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

/* CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Launch hint line */
.hero__launch-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-lavender);
  opacity: 0.8;
}


/* ================================================
   BUTTONS (shared)
   ================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-purple);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.45);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-purple-dark);
  box-shadow: 0 0 44px rgba(124, 58, 237, 0.65);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--color-lavender);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--color-lavender);
  color: var(--color-white);
  background: rgba(167, 139, 250, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ================================================
   SHARED SECTION LAYOUT
   ================================================ */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header--left {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-lavender);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}

.section-header--left .section-subtitle {
  margin: 0;
}


/* ================================================
   FEATURES
   ================================================ */

.features {
  padding: 6rem 0;
  background-color: var(--color-black);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--color-obsidian);
  border: 1px solid #18181b;
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.1);
}

.feature-card__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 12px;
  color: var(--color-lavender);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--color-lavender);
}

.feature-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-purple);
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}


/* ================================================
   ADD-ONS
   ================================================ */

.addons {
  padding: 6rem 0;
  background-color: var(--color-obsidian);
}

.addons__table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #18181b;
  -webkit-overflow-scrolling: touch;
}

.addons__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-obsidian);
  font-size: 0.9rem;
}

.addons__table thead tr {
  border-bottom: 1px solid #27272a;
}

.addons__table thead th {
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.addons__price-note {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-lavender);
  margin-top: 0.2rem;
  opacity: 0.85;
}

.addons__table tbody tr {
  border-bottom: 1px solid #18181b;
  transition: background-color 0.2s ease;
}

.addons__table tbody tr:last-child {
  border-bottom: none;
}

.addons__table tbody tr:hover {
  background-color: rgba(124, 58, 237, 0.04);
}

.addons__table tbody td {
  padding: 1.25rem 1.5rem;
  color: var(--color-gray);
  line-height: 1.6;
  vertical-align: middle;
}

.addons__name {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-white);
  font-weight: 600;
  white-space: nowrap;
}

.addons__name svg {
  color: var(--color-lavender);
  flex-shrink: 0;
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge--available {
  background: rgba(124, 58, 237, 0.18);
  color: var(--color-lavender);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.badge--soon {
  background: rgba(156, 163, 175, 0.07);
  color: var(--color-gray);
  border: 1px solid rgba(156, 163, 175, 0.18);
}


/* ================================================
   PRICING
   ================================================ */

.pricing {
  padding: 6rem 0;
  background-color: var(--color-black);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}

.pricing-card {
  position: relative;
  background-color: var(--color-obsidian);
  border: 1px solid #18181b;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card--featured {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.18),
    0 0 40px rgba(124, 58, 237, 0.2),
    0 0 80px rgba(124, 58, 237, 0.08);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.55);
}

.pricing-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 0.75rem;
}

.pricing-card--featured .pricing-card__name {
  color: var(--color-lavender);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-white);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray);
}

.pricing-card__tagline {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-white);
}

.pricing-card__features li svg {
  color: var(--color-purple);
  flex-shrink: 0;
}

.pricing-card__feature--muted {
  color: rgba(156, 163, 175, 0.4) !important;
}

.pricing-card__feature--muted svg {
  color: rgba(156, 163, 175, 0.28) !important;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

.pricing__footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--color-gray);
  max-width: 860px;
  margin: 0 auto;
  opacity: 0.65;
}

.pricing__footnote svg {
  flex-shrink: 0;
  color: var(--color-lavender);
}

@media (max-width: 900px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}


/* ================================================
   CONTACT
   ================================================ */

.contact {
  padding: 6rem 0;
  background-color: var(--color-obsidian);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.25s ease;
}

.contact__form.is-fading {
  opacity: 0;
  pointer-events: none;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact__field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gray);
}

.contact__field input,
.contact__field textarea,
.contact__select-wrap select {
  width: 100%;
  padding: 0.8125rem 1rem;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid #27272a;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  -webkit-appearance: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(156, 163, 175, 0.38);
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__select-wrap select:focus {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12), 0 0 18px rgba(124, 58, 237, 0.07);
}

/* Platform select wrapper */
.contact__select-wrap {
  position: relative;
}

.contact__select-wrap select {
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.contact__select-wrap select option {
  background-color: #18181b;
  color: var(--color-white);
}

.contact__select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray);
  pointer-events: none;
}

.contact__submit {
  align-self: flex-start;
  border: none;
  font-family: var(--font-sans);
}

.contact__info-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__info-card {
  background-color: var(--color-black);
  border: 1px solid #18181b;
  border-radius: 16px;
  padding: 1.75rem;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  color: var(--color-lavender);
  margin-bottom: 1rem;
}

.contact__info-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.contact__email {
  display: inline-block;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-lavender);
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact__email:hover {
  color: var(--color-white);
}

.contact__info-highlight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.375rem;
}

.contact__info-desc {
  font-size: 0.825rem;
  color: var(--color-gray);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__submit {
    width: 100%;
    justify-content: center;
  }
}


/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background-color: var(--color-black);
  border-top: 1px solid #18181b;
  padding: 3.5rem 1.5rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.site-footer__logo img {
  height: 30px;
  width: auto;
  opacity: 0.85;
}

.site-footer__mantra {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: var(--color-gray);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.site-footer__copy {
  font-size: 0.78rem;
  color: rgba(156, 163, 175, 0.45);
}


/* ================================================
   CONTACT FORM — SUCCESS STATE
   ================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3.5rem 2rem;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 16px;
  animation: fadeInUp 0.45s ease forwards;
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  color: var(--color-lavender);
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.3);
}

.contact__success-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.contact__success-msg {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.7;
}

.contact__success-msg a {
  color: var(--color-lavender);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact__success-msg a:hover {
  color: var(--color-white);
}


/* ================================================
   BRAND WORDMARK UTILITY
   ================================================ */

.brand-wordmark {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}
