/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Hero Section */
.contact-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 0;
  overflow: hidden;
  background: #090b1a;
}

.contact-hero .section-inner {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0;
}

body.page-contact .section:not(.site-footer) .section-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: 2rem;
  padding-right: 1rem;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.contact-hero-motions {
  position: absolute;
  inset: 0;
  width: 72%;
  max-width: 1100px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.86;
  mix-blend-mode: screen;
}

.motion-icon {
  position: absolute;
  color: rgba(120, 220, 255, 0.92);
  filter: blur(1.4px);
  animation: contact-drift 16s ease-in-out infinite;
}

.motion-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.motion-envelope {
  width: 96px;
  height: 72px;
  top: 14%;
  left: 10%;
  animation-duration: 20s;
}

.motion-chat {
  width: 120px;
  height: 90px;
  top: 50%;
  left: 22%;
  color: rgba(170, 140, 255, 0.92);
  animation-duration: 19s;
  animation-delay: -6s;
}

.motion-phone {
  width: 80px;
  height: 110px;
  top: 70%;
  left: 34%;
  color: rgba(120, 220, 255, 0.9);
  animation-duration: 17s;
  animation-delay: -3s;
}

.motion-plane {
  width: 90px;
  height: 90px;
  top: 28%;
  left: 44%;
  color: rgba(200, 175, 255, 0.9);
  animation-duration: 21s;
  animation-delay: -10s;
}

.motion-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(220, 240, 255, 0.96);
  background: rgba(30, 44, 86, 0.7);
  border: 1px solid rgba(130, 210, 255, 0.36);
  box-shadow: 0 10px 30px rgba(9, 12, 30, 0.35);
  filter: blur(1.1px);
  animation: bubble-float 14s ease-in-out infinite;
}

.motion-bubble .bubble-text {
  white-space: nowrap;
}

.motion-bubble .bubble-ticks {
  position: relative;
  width: 16px;
  height: 10px;
}

.motion-bubble .bubble-ticks::before,
.motion-bubble .bubble-ticks::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 3px;
  border-left: 2px solid rgba(160, 230, 255, 0.98);
  border-bottom: 2px solid rgba(160, 230, 255, 0.98);
  transform: rotate(-45deg);
  opacity: 0.1;
  animation: tick-pop 2.6s ease-in-out infinite;
}

.motion-bubble .bubble-ticks::after {
  left: 6px;
  animation-delay: 0.45s;
}

.motion-bubble-one {
  top: 36%;
  left: 52%;
  animation-delay: -4s;
}

.motion-bubble-two {
  top: 62%;
  left: 46%;
  animation-delay: -9s;
}

@keyframes bubble-float {
  0%, 100% {
    transform: translate3d(-8px, 8px, 0) scale(0.96);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.05);
    opacity: 0.9;
  }
}

@keyframes tick-pop {
  0%, 40% {
    opacity: 0;
    transform: rotate(-45deg) scale(0.9);
  }
  55%, 75% {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
  }
  100% {
    opacity: 0.2;
    transform: rotate(-45deg) scale(0.95);
  }
}

@keyframes contact-drift {
  0%, 100% {
    transform: translate3d(-6px, 6px, 0) rotate(-4deg) scale(0.98);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(22px, -24px, 0) rotate(5deg) scale(1.04);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-icon {
    animation: none;
    opacity: 0.4;
  }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -200px;
  right: -100px;
  animation: hero-glow-pulse 10s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  bottom: -150px;
  left: -100px;
  animation: hero-glow-pulse 10s ease-in-out infinite reverse;
}

.page-contact .contact-hero .hero-glow {
  display: none;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.58fr);
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: center;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  text-align: left;
  margin: 0;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  align-self: center;
  gap: 0;
}

.contact-hero-content > * {
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 3.8vw, 3.55rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #ffffff 0%, #f6efff 40%, #e7d9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.02;
  max-width: none;
  text-shadow:
    0 0 18px rgba(235, 220, 255, 0.45),
    0 0 36px rgba(180, 150, 255, 0.25);
}

.contact-hero-title .line-one,
.contact-hero-title .line-two {
  display: block;
}

.contact-hero-title .line-one {
  padding-left: 9rem;
}

.contact-hero-title .line-two {
  white-space: normal;
}

.contact-hero-media {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  justify-self: end;
  align-self: center;
  margin-top: -5rem;
  margin-left: 0;
  transform: translateX(0.9rem);
}

.contact-hero-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

.contact-hero-frame::after {
  content: '';
  position: absolute;
  inset: -1.25rem;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 18, 42, 0.98) 0%, rgba(18, 18, 42, 0) 14%, rgba(18, 18, 42, 0) 86%, rgba(18, 18, 42, 0.98) 100%),
    linear-gradient(180deg, rgba(15, 14, 34, 0.98) 0%, rgba(15, 14, 34, 0) 14%, rgba(15, 14, 34, 0) 86%, rgba(15, 14, 34, 0.98) 100%);
  filter: blur(16px);
}

.contact-hero-frame video {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.99) saturate(0.9) contrast(0.96);
  transform: scale(1.22);
  transform-origin: center center;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 44%, rgba(0, 0, 0, 0.92) 58%, rgba(0, 0, 0, 0.68) 72%, rgba(0, 0, 0, 0.28) 86%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 44%, rgba(0, 0, 0, 0.92) 58%, rgba(0, 0, 0, 0.68) 72%, rgba(0, 0, 0, 0.28) 86%, rgba(0, 0, 0, 0) 100%);
}

.contact-hero-subtitle {
  font-size: 1.14rem;
  font-family: var(--font-rounded);
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 42rem;
  margin-top: 1.7rem;
}

.contact-hero .hero-eyebrow {
  margin-bottom: 2.5rem;
  padding-left: 15rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
  padding-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-form-wrapper {
  position: relative;
  width: min(100%, 34rem);
  padding: 2rem 2rem 2.9rem;
  background:
    linear-gradient(180deg, rgba(18, 18, 42, 0.96), rgba(10, 10, 26, 0.98));
  border-radius: 1.2rem;
  border: 1px solid rgba(111, 207, 255, 0.24);
  outline: 1px solid rgba(169, 112, 255, 0.22);
  box-shadow:
    0 18px 54px rgba(20, 24, 58, 0.42),
    0 0 34px rgba(76, 201, 240, 0.08);
}

.contact-form-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: 2.2rem;
  height: 0.42rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a970ff, #4cc9f0);
  box-shadow: 0 0 16px rgba(76, 201, 240, 0.35);
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  left: calc(50% + 1.65rem);
  bottom: 1rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0.9rem 0 0 rgba(255, 255, 255, 0.52),
    0 0 10px rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-botcheck {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition-normal);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(76, 201, 240, 0.68);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 3px rgba(76, 201, 240, 0.1),
    inset 0 0 0 1px rgba(169, 112, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

#contactSubmitButton {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.95rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(76, 201, 240, 0.65);
  color: #8fe0ff;
  box-shadow: none;
}

#contactSubmitButton:hover,
#contactSubmitButton:focus-visible {
  background: linear-gradient(135deg, rgba(169, 112, 255, 0.14), rgba(76, 201, 240, 0.18));
  border-color: rgba(76, 201, 240, 0.88);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(76, 201, 240, 0.12);
}

#contactSubmitButton:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  text-align: center;
  color: var(--text-secondary);
}

.form-status.is-pending {
  color: #9ecbff;
}

.form-status.is-success {
  color: #78e6b0;
}

.form-status.is-error {
  color: #ff8fa8;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-card {
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.info-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.info-card a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.info-card a:hover {
  color: var(--color-primary-light);
}

/* Social Connect */
.social-connect {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 42rem);
  margin: -1.5rem auto 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.social-connect h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  text-align: center;
}

.social-links-large {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.68rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.12),
    inset 0 0 5px rgba(255, 255, 255, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.2);
}

.social-link-large {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 2.7rem;
  min-width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  box-shadow:
    inset 0 0 14px rgba(255, 255, 255, 0.16),
    inset 0 0 4px rgba(255, 255, 255, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.14);
  overflow: visible;
}

.social-link-large svg {
  position: relative;
  z-index: 2;
  width: 1.18rem;
  height: 1.18rem;
  transition: all 0.3s;
}

.social-link-large[aria-label="LinkedIn"] {
  color: #0a66c2;
}

.social-link-large[aria-label="Instagram"] {
  color: #e4405f;
}

.social-link-large[aria-label="YouTube"] {
  color: #ff0033;
}

.social-link-large[aria-label="CodePen"] {
  color: #cfd6f6;
}

.social-link-large[aria-label="WhatsApp"] {
  color: #25d366;
}

.social-link-large > span:last-child {
  display: none;
}

.social-link-large > span:not(:last-child) {
  opacity: 0;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 14px rgba(255, 255, 255, 0.1),
    inset 0 0 4px rgba(255, 255, 255, 0.14),
    0 4px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s;
}

.social-link-large:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
}

.social-link-large:hover svg {
  transform: translate(4px, -4px);
}

.social-link-large:hover > span:nth-child(1) {
  opacity: 0.22;
}

.social-link-large:hover > span:nth-child(2) {
  opacity: 0.42;
  transform: translate(4px, -4px);
}

.social-link-large:hover > span:nth-child(3) {
  opacity: 0.62;
  transform: translate(8px, -8px);
}

/* Community Launch */
.community-soon-section {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background-color: #191733;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(197, 39, 145, 0.22) 0, rgba(197, 39, 145, 0.22) 9rem, transparent 13rem),
    radial-gradient(circle at 84% 18%, rgba(76, 201, 240, 0.18) 0, rgba(76, 201, 240, 0.18) 8rem, transparent 12rem),
    radial-gradient(circle at 28% 86%, rgba(163, 28, 114, 0.18) 0, rgba(163, 28, 114, 0.18) 8rem, transparent 12rem),
    radial-gradient(circle at 78% 78%, rgba(74, 21, 138, 0.2) 0, rgba(74, 21, 138, 0.2) 9rem, transparent 13rem),
    linear-gradient(180deg, rgba(24, 23, 50, 0.96), rgba(13, 13, 30, 0.98));
  animation: communitySectionFloat 18s ease-in-out infinite;
}

.community-soon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

.community-soon-section .section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.community-soon-card {
  position: relative;
  min-height: min(45vh, 25rem);
  padding: 0;
}

.community-soon-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 10px 0 20px rgba(255, 255, 255, 0.35);
  filter: blur(1px);
  animation: communityOrbFloat 22s ease-in-out infinite;
}

.community-soon-orb-one {
  width: 13rem;
  height: 13rem;
  left: -2.5rem;
  bottom: 2.5rem;
  background-image: linear-gradient(145deg, rgba(255, 182, 120, 0.8), rgba(242, 92, 154, 0.7));
}

.community-soon-orb-two {
  width: 8.5rem;
  height: 8.5rem;
  right: 8%;
  top: -1.6rem;
  background-image: linear-gradient(145deg, rgba(76, 201, 240, 0.68), rgba(169, 112, 255, 0.72));
  animation-delay: -8s;
}

.community-soon-feature-card,
.community-soon-copy,
.community-soon-highlights {
  position: relative;
  z-index: 1;
}

.community-soon-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.85fr);
  gap: 2rem;
  min-height: 100%;
  width: 100%;
  padding: 1.85rem 1.9rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 2px 1px 6px rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.community-soon-feature-sheen {
  content: "";
  position: absolute;
  width: 125%;
  height: 1rem;
  top: 100%;
  left: -105%;
  background: rgba(255, 255, 255, 0.92);
  transform: rotateZ(46deg);
  filter: blur(20px);
  animation: communityCardShine 11s ease infinite;
}

.community-soon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #8fe0ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-soon-eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #a970ff, #4cc9f0);
  box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.community-soon-copy h2 {
  max-width: 9ch;
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.04;
  color: var(--text-primary);
}

.community-soon-copy p {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.community-soon-highlights {
  display: grid;
  align-content: center;
  gap: 1rem;
  justify-items: stretch;
  width: 100%;
}

.community-soon-highlights span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.15rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  color: #f6f8ff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  box-shadow:
    inset 2px 1px 6px rgba(255, 255, 255, 0.16),
    0 10px 26px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.community-soon-highlights span::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 1rem;
  top: 100%;
  left: -110%;
  background: rgba(255, 255, 255, 0.92);
  transform: rotateZ(46deg);
  filter: blur(20px);
  animation: communityCardShine 11s ease infinite;
}

@keyframes communitySectionFloat {
  0%,
  100% {
    background-position:
      14% 18%,
      84% 18%,
      28% 86%,
      78% 78%,
      0 0;
  }
  50% {
    background-position:
      9% 24%,
      88% 12%,
      24% 80%,
      73% 84%,
      0 0;
  }
}

@keyframes communityCardShine {
  0% {
    top: 100%;
    left: -100%;
  }
  50%,
  100% {
    top: -10%;
    left: 72%;
  }
}

@keyframes communityOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8%, 6%) scale(0.92);
  }
}

/* FAQ Section */
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 7, 18, 0.86) 0%, rgba(6, 7, 18, 0.52) 18%, rgba(6, 7, 18, 0) 42%),
    radial-gradient(circle at 18% 24%, rgba(169, 112, 255, 0.34), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(76, 201, 240, 0.28), transparent 24%),
    radial-gradient(circle at 24% 78%, rgba(255, 182, 120, 0.18), transparent 20%),
    radial-gradient(circle at 76% 82%, rgba(169, 112, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(22, 20, 46, 0.985) 0%, rgba(14, 13, 34, 0.985) 100%),
    linear-gradient(180deg, rgba(10, 11, 26, 0.82) 0%, rgba(10, 11, 26, 0.82) 100%);
}

.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}

.faq-section::before {
  top: -4rem;
  left: -8rem;
  width: 68rem;
  height: 42rem;
  background:
    radial-gradient(circle at 22% 28%, rgba(169, 112, 255, 0.78), transparent 30%),
    radial-gradient(circle at 74% 34%, rgba(76, 201, 240, 0.52), transparent 26%),
    radial-gradient(circle at 58% 78%, rgba(255, 182, 120, 0.28), transparent 20%);
  filter: blur(170px);
  opacity: 1;
}

.faq-section::after {
  right: -10rem;
  bottom: -6rem;
  width: 60rem;
  height: 38rem;
  background:
    radial-gradient(circle at 34% 30%, rgba(76, 201, 240, 0.42), transparent 24%),
    radial-gradient(circle at 64% 56%, rgba(169, 112, 255, 0.62), transparent 28%),
    radial-gradient(circle at 40% 78%, rgba(255, 182, 120, 0.22), transparent 18%);
  filter: blur(180px);
  opacity: 1;
}

.faq-section .section-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 58%, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(90deg, rgba(169, 112, 255, 0.08), transparent 30%, transparent 70%, rgba(76, 201, 240, 0.08));
  filter: blur(60px);
  pointer-events: none;
}

.faq-section .section-inner {
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.faq-item {
  position: relative;
  min-height: 24rem;
  border-radius: 1.6rem;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.faq-card--violet {
  --faq-accent-1: rgba(169, 112, 255, 0.5);
  --faq-accent-2: rgba(76, 201, 240, 0.24);
  --faq-panel: rgba(34, 33, 64, 0.74);
  --faq-pill: rgba(169, 112, 255, 0.18);
  --faq-label: #9ddcff;
}

.faq-card--cyan {
  --faq-accent-1: rgba(76, 201, 240, 0.46);
  --faq-accent-2: rgba(112, 151, 255, 0.26);
  --faq-panel: rgba(26, 36, 63, 0.74);
  --faq-pill: rgba(76, 201, 240, 0.14);
  --faq-label: #97efff;
}

.faq-card--rose {
  --faq-accent-1: rgba(242, 92, 154, 0.42);
  --faq-accent-2: rgba(169, 112, 255, 0.22);
  --faq-panel: rgba(45, 29, 56, 0.76);
  --faq-pill: rgba(242, 92, 154, 0.16);
  --faq-label: #ffb3d6;
}

.faq-card--gold {
  --faq-accent-1: rgba(255, 182, 120, 0.38);
  --faq-accent-2: rgba(76, 201, 240, 0.18);
  --faq-panel: rgba(46, 36, 52, 0.76);
  --faq-pill: rgba(255, 182, 120, 0.15);
  --faq-label: #ffd19b;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-card-shell {
  position: relative;
  height: 100%;
  min-height: inherit;
  padding: 0.32rem;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(5, 8, 24, 0.28);
}

.faq-card-blur-layer,
.faq-card-frame,
.faq-card-slider,
.faq-card-track {
  position: absolute;
  inset: 0;
}

.faq-card-blur-layer {
  overflow: hidden;
  border-radius: calc(1.6rem - 0.32rem);
  background: linear-gradient(180deg, rgba(18, 19, 38, 0.95), rgba(13, 14, 30, 0.96));
}

.faq-card-halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.9;
  animation: faqHaloFloat 8s ease-in-out infinite;
}

.faq-card-halo-one {
  width: 10rem;
  height: 10rem;
  left: 10%;
  top: 8%;
  background: var(--faq-accent-1);
}

.faq-card-halo-two {
  width: 11rem;
  height: 11rem;
  right: 8%;
  bottom: 2%;
  background: var(--faq-accent-2);
  animation-delay: -3.8s;
}

.faq-card-frame {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.9rem;
  padding: 1.05rem;
  border-radius: calc(1.6rem - 0.32rem);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.faq-card-rail {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.faq-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-card-tag {
  color: rgba(255, 255, 255, 0.78);
  background: var(--faq-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-card-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.faq-card-track {
  display: flex;
  width: 200%;
  transition: transform 0.9s cubic-bezier(0.68, -0.15, 0.265, 1.15);
}

.faq-item.is-auto-answer .faq-card-track,
.faq-item:hover .faq-card-track,
.faq-item:focus-within .faq-card-track {
  transform: translateX(-50%);
}

.faq-card-face {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 17rem;
  padding: 1.35rem;
  color: #eef3ff;
}

.faq-card-face-answer {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.faq-face-label {
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faq-label);
}

.faq-item h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-primary);
  max-width: 18ch;
}

.faq-item p {
  margin: 0;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.faq-card-note {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

.faq-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-card-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.faq-card-dots span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.faq-item.is-auto-active:not(.is-auto-answer) .faq-card-dots span:first-child {
  background: var(--faq-label);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
}

.faq-item.is-auto-answer .faq-card-dots span:last-child,
.faq-item:hover .faq-card-dots span:last-child,
.faq-item:focus-within .faq-card-dots span:last-child {
  background: var(--faq-label);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.faq-card-arrow {
  width: 2.45rem;
  height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.82);
  transition: background var(--transition-normal), transform var(--transition-normal), color var(--transition-normal);
}

.faq-card-arrow svg {
  width: 1rem;
  height: 1rem;
}

.faq-item:hover .faq-card-arrow {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
  color: #ffffff;
}

@keyframes faqHaloFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, 10%) scale(1.08);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    width: 100%;
  }

  .contact-hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 0;
    align-self: auto;
  }

  .contact-hero-title .line-one {
    padding-left: 0;
  }

  .contact-hero-title .line-two {
    white-space: normal;
  }

  .contact-hero-media {
    width: min(80%, 420px);
    margin-top: 0;
    margin-left: 0;
    transform: none;
    justify-self: center;
  }

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

  .contact-form-wrapper {
    width: 100%;
  }

  .community-soon-card {
    min-height: auto;
  }

  .community-soon-feature-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .community-soon-copy h2,
  .community-soon-copy p {
    max-width: none;
  }

  .community-soon-feature-card {
    min-height: auto;
  }

  .community-soon-orb-one {
    left: -3rem;
    bottom: 1rem;
  }

  .community-soon-orb-two {
    right: 4%;
  }

  .social-connect {
    width: min(100%, 28rem);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    min-height: 22rem;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.55rem 1.2rem 2.5rem;
  }

  .community-soon-section {
    min-height: auto;
  }

  .community-soon-card {
    padding: 1.25rem 0;
  }

  .community-soon-feature-card {
    padding: 1.3rem 1.15rem 1.4rem;
  }

  .community-soon-section {
    padding: 2rem 0;
  }

  .community-soon-highlights span {
    min-height: 5.3rem;
    padding: 1rem 1.15rem;
    font-size: 0.96rem;
  }

  .community-soon-copy h2 {
    font-size: 1.85rem;
  }

  .faq-item {
    min-height: auto;
  }

  .faq-card-frame {
    padding: 0.8rem;
  }

  .faq-card-face {
    min-height: 15.5rem;
    padding: 1rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-links-large {
    flex-wrap: wrap;
    width: min(100%, 24rem);
    gap: 0.7rem;
    padding: 0.82rem 0.95rem;
  }

  .contact-hero-media {
    width: min(86%, 360px);
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
}
