/* CloakAds — static site styles (converted from Next.js + Tailwind) */

/*
  Fallback font with adjusted metrics to match Space Grotesk.
  Prevents text reflow (CLS) when the webfont is absent or loading.
*/
@font-face {
  font-family: 'Space Grotesk Fallback';
  src: local('Arial');
  size-adjust: 96%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}

:root {
  --font-headline: "Space Grotesk", "Space Grotesk Fallback", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --background: #0e0e0f;
  --foreground: #e5e2e3;
  --primary: #6366f1;
  --primary-foreground: #ffffff;
  --surface: #131314;
  --surface-container-low: #1c1b1c;
  --surface-container-lowest: #0e0e0f;
  --surface-container-highest: #353436;
  --on-surface-variant: #94a3b8;
  --outline: #8b919b;
  --outline-variant: #414750;
  --card-inner: #161618;
  --card-inner-2: #1c1c1e;
  --muted-text: #86868b;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-950: #020617;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --purple-600: #9333ea;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Selection */
::selection {
  background: rgba(99, 102, 241, 0.3);
}

/* Animations from original globals.css */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes tw-pulse {
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}
.delay-3 {
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
.delay-4 {
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.delay-5 {
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.delay-7 {
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
}

.animate-fade-in-right {
  animation: fade-in-right 0.8s ease-out forwards;
  opacity: 0;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.animate-pulse {
  animation: tw-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-delay-02 {
  animation-delay: 0.2s;
}
.pulse-delay-04 {
  animation-delay: 0.4s;
}
.pulse-delay-06 {
  animation-delay: 0.6s;
}
.pulse-delay-08 {
  animation-delay: 0.8s;
}
.pulse-delay-1s {
  animation-delay: 1s;
}

.text-gradient-animate {
  background: linear-gradient(90deg, #6366f1, #a855f7, #6366f1);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s linear infinite;
}

.glass-panel {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 145, 155, 0.15);
}

.nebula-1 {
  background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

.nebula-2 {
  background: radial-gradient(circle at 100% 100%, rgba(176, 212, 63, 0.05) 0%, transparent 50%);
}

.card-hover {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.15);
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
}

.btn-ripple:active::after {
  transform: scale(2);
  opacity: 1;
  transition: transform 0s, opacity 0s;
}

/* Page shell */
.page {
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(147, 51, 234, 0.1), rgba(59, 130, 246, 0.1));
  background-size: 300% 300%;
  animation: header-gradient 8s ease infinite;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(139, 145, 155, 0.15);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.08);
}

@keyframes header-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-radius: 0 0 16px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 1.5rem 3rem;
  }
}

.logo {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #6366f1, #9333ea, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: logo-gradient 4s ease infinite;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
}

@keyframes logo-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.logo:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #1d4ed8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-400);
  position: relative;
  padding-bottom: 0.25rem;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}

.nav-links a.nav-active {
  background: linear-gradient(135deg, #6366f1, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary);
}

.nav-links a:not(.nav-active)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #9333ea);
  transition: width 0.3s;
}

.nav-links a:not(.nav-active):hover {
  background: linear-gradient(135deg, #6366f1, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}

.nav-links a:not(.nav-active):hover::after {
  width: 100%;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--purple-600));
  color: #fff;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

@media (min-width: 768px) {
  .btn-nav-cta {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
  }
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--indigo-600), var(--purple-600));
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
  transform: translateY(-2px);
}

.btn-nav-cta:active {
  transform: scale(0.95) translateY(0);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid rgba(139, 145, 155, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  /* hidden by default */
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

/* Full-page backdrop — closes drawer on outside click */
.mobile-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-drawer-backdrop.is-open {
  display: block;
}

.mobile-drawer a {
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 145, 155, 0.15);
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}

.mobile-drawer a:hover {
  background: linear-gradient(135deg, #6366f1, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(10px);
}

/* Main */
.main {
  position: relative;
  padding-top: 6rem;
}

.mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.main > section,
.main > div:not(.mesh) {
  position: relative;
  z-index: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background-image: url('../hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
  z-index: 0;
}

#hero-aurora-host {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

/* Mobile-specific hero background */
@media (max-width: 767px) {
  .hero {
    background-image: url('../hero-bg2.jpg'); /* Change to '../hero-bg-mobile.jpg' if you have a mobile-specific image */
    background-attachment: scroll; /* Better performance on mobile */
    background-size: cover;
    background-position: center top; /* Adjust position for mobile viewing */
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .hero {
    padding: 0 2rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    /* Text column can shrink (min-width:0); visual column has a floor so typing width doesn’t steal space from the glass panel */
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 1fr);
  }
}

.hero-content {
  z-index: 10;
  text-align: left;
  min-width: 0;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.5rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Hero typing effect (TextType-style) */
.hero-type {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Mobile: reserve 3 lines; desktop: 2 lines */
  min-height: 9rem;
  /* Tighter gaps between wrapped lines (unitless = multiplier of font size) */
  line-height: 1.0;
}

@media (min-width: 768px) {
  .hero-type {
    min-height: 9rem;
  }
}

.text-type__content {
  display: inline;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;


}

.text-type__cursor {
  margin-left: 0.125em;
  display: inline-block;
  font-weight: 700;
  animation: text-type-cursor-blink 0.5s ease-in-out infinite alternate;
}

@keyframes text-type-cursor-blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-type__cursor {
    animation: none;
    opacity: 1;
  }
}

.hero-lead {
  color: var(--on-surface-variant);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 0 2.5rem;
}

@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero-lead {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary-lg {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-headline);
  font-weight: 700;
  border-radius: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .btn-primary-lg {
    padding: 1rem 2rem;
  }
}

.btn-primary-lg:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.btn-primary-lg:active {
  transform: scale(0.95);
}

.btn-primary-lg .btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary), var(--indigo-400), var(--primary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  animation: shimmer 2s infinite;
}

.btn-primary-lg:hover .btn-shimmer {
  opacity: 1;
}

.btn-primary-lg span.relative-z {
  position: relative;
  z-index: 1;
}

.btn-outline-lg {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--outline-variant);
  color: var(--foreground);
  font-family: var(--font-headline);
  font-weight: 700;
  border-radius: 0.75rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

@media (min-width: 768px) {
  .btn-outline-lg {
    padding: 1rem 2rem;
  }
}

.btn-outline-lg:hover {
  background: var(--surface-container-highest);
  border-color: rgba(99, 102, 241, 0.5);
  transform: scale(1.05);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .trust-row {
    gap: 1.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: default;
}

.trust-item:hover {
  opacity: 1;
}

.trust-item span {
  font-family: var(--font-headline);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
    min-width: 0;
    align-self: stretch;
  }
}

.hero-visual-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.7s, box-shadow 0.7s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-visual-inner:hover {
  transform: rotate(0);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

.hero-visual-inner.glass-panel {
  border-radius: 1.2rem;
}

.hero-visual-inner img {
  border-radius: 0.95rem;
  width: 101%;
  height: 500px;
  aspect-ratio: 63 / 50;
  object-fit: cover;
  transition: transform 0.7s;
}

.hero-visual-inner:hover img {
  transform: scale(1.05);
}

.hero-visual-inner .img-overlay {
  position: absolute;
  inset: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(to top, rgba(14, 14, 15, 0.8), transparent);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  top: -2.5rem;
  right: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(99, 102, 241, 0.3);
}

.hero-blob-2 {
  bottom: -2.5rem;
  left: -2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(99, 102, 241, 0.2);
}

/* Banner */
.offer-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary);
  padding: 0.875rem 0;
}

.offer-banner .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--indigo-600), var(--primary), var(--purple-600));
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0.9;
}

.offer-banner > .animate-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.offer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  color: #fff;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .offer-inner {
    font-size: 0.875rem;
  }
}

.offer-inner a {
  padding: 0.375rem 1rem;
  background: #fff;
  color: var(--primary);
  border-radius: 0.5rem;
  font-size: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-inner a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* Trusted */
.section-trusted {
  padding: 4rem 0;
  background: rgba(14, 14, 15, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-trusted {
    padding: 5rem 0;
  }
}

.container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.trusted-label {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--outline);
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .trusted-label {
    margin-bottom: 3rem;
  }
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 768px) {
  .brand-row {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .brand-row {
    gap: 5rem;
  }
}

.brand-row span {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.4;
  cursor: default;
  transition: opacity 0.5s, color 0.5s, transform 0.5s;
}

@media (min-width: 768px) {
  .brand-row span {
    font-size: 1.5rem;
  }
}

.brand-row span:hover {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.1);
}

/* Excellence + Bento */
.section-excellence {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 5rem 1rem;
  width: 100%;
  margin: 0 auto;
  contain: layout style paint;
}

.section-excellence-plasma {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 150%;
  height: 200%;
  pointer-events: none;
  will-change: transform;
}

@media (max-width: 767px) {
  .section-excellence-plasma {
    width: 100%;
    height: 120%;
  }
}

.plasma-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-excellence .section-head,
.section-excellence .bento-grid {
  position: relative;
  z-index: 10;
  max-width: 1536px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-excellence {
    padding: 4rem 2rem;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-head {
    margin-bottom: 5rem;
  }
}

.section-head h2 {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-head h2 {
    font-size: 3rem;
  }
}

.section-head .rule {
  width: 5rem;
  height: 0.25rem;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 9999px;
}

.bento-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
  }
}

.bento-card {
  position: relative;
}

@media (min-width: 768px) {
  .bento-traffic {
    grid-column: span 4;
    grid-row: span 2;
  }
  .bento-geo {
    grid-column: span 8;
    grid-row: span 2;
  }
  .bento-ai {
    grid-column: span 8;
    grid-row: span 2;
  }
  .bento-domains {
    grid-column: span 4;
    grid-row: span 2;
  }
}

.bento-card .glow-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.bento-card:hover .glow-bg {
  opacity: 1;
}

.bento-card .inner-border {
  position: absolute;
  inset: 1px;
  border-radius: 1rem;
  /* background: rgba(22, 22, 24, 0.3); */
}

.bento-card .card-face {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 200px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: border-color 0.5s;
  background: rgba(22, 22, 24, 0.35);
}

@media (min-width: 768px) {
  .bento-card .card-face {
    padding: 1.75rem;
    min-height: 0;
  }
}

.bento-card:hover .card-face {
  border-color: rgba(99, 102, 241, 0.3);
}

.bento-card h3 {
  font-family: var(--font-headline);
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

.bento-card:hover h3 {
  color: var(--primary);
}

.bento-card p {
  color: var(--muted-text);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.icon-box-wrap {
  margin-bottom: 1.25rem;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
}

@media (min-width: 768px) {
  .icon-box-wrap {
    margin-bottom: 1.5rem;
  }
}

.icon-box-wrap .blur {
  position: absolute;
  inset: 0;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 9999px;
  filter: blur(16px);
  opacity: 0.6;
  transition: opacity 0.5s, transform 0.5s;
}

.bento-card:hover .icon-box-wrap .blur {
  opacity: 1;
  transform: scale(1.5);
}

.icon-box {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--card-inner-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}

.bento-card:hover .icon-box {
  border-color: rgba(99, 102, 241, 0.3);
}

.bento-card:hover .icon-box .icon-sm {
  transform: scale(1.1);
}

.icon-box .icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.bento-row {
  flex-direction: column;
}

@media (min-width: 768px) {
  .bento-geo .card-face,
  .bento-ai .card-face {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}

.bento-col {
  flex: 1;
}

.btn-sm-primary {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--font-headline);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn-sm-primary:hover {
  background: var(--indigo-500);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transform: scale(1.05);
}

.btn-sm-outline {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-family: var(--font-headline);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn-sm-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transform: scale(1.05);
}

.geo-svg-wrap {
  display: none;
  flex: 1;
  position: relative;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .geo-svg-wrap {
    display: flex;
  }
}

.geo-svg-wrap .blob {
  position: absolute;
  width: 12rem;
  height: 12rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  transition: transform 0.7s;
}

.bento-card:hover .geo-svg-wrap .blob {
  transform: scale(1.25);
}

.geo-svg {
  width: 100%;
  height: auto;
  opacity: 0.4;
  color: var(--primary);
  transition: opacity 0.5s;
}

.bento-card:hover .geo-svg {
  opacity: 0.7;
}

.ai-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ai-circle-wrap {
  position: relative;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .ai-circle-wrap {
    width: 8rem;
    height: 8rem;
  }
}

.bento-card:hover .ai-circle-wrap {
  transform: scale(1.1);
}

.ai-circle-wrap .ai-blur {
  position: absolute;
  inset: 0;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  filter: blur(24px);
  transition: background 0.5s;
}

.bento-card:hover .ai-circle-wrap .ai-blur {
  background: rgba(99, 102, 241, 0.3);
}

.ai-circle-wrap .ai-ring {
  position: absolute;
  inset: 0.75rem;
  border-radius: 50%;
  background: var(--card-inner-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s;
}

.bento-card:hover .ai-circle-wrap .ai-ring {
  border-color: rgba(99, 102, 241, 0.3);
}

.ai-circle-wrap .ai-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .ai-circle-wrap .ai-text {
    font-size: 2.25rem;
  }
}

/* Services provided */
.section-services {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.04) 50%, transparent 100%);
}

@media (min-width: 768px) {
  .section-services {
    padding: 4rem 0;
  }
}

.services-inner {
  max-width: 1200px;
}

.section-services .section-head {
  margin-bottom: 1.5rem;
}

.services-lead {
  text-align: center;
  color: var(--muted-text);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .services-lead {
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--card-inner);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-card h3 {
  font-family: var(--font-headline);
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted-text);
}

/* Ads placement platform — dual marquee */
.section-ads-platform {
  position: relative;
  min-height: 600px;
  padding: 1rem 0 5rem;
  background: #050508;
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  overflow: hidden;
}

.section-ads-platform .plasma-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ads-platform-glow {
  z-index: 1;
}

.section-ads-platform .ads-platform-inner,
.ads-marquee-row {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-ads-platform {
    padding: 0rem 0 1.5rem;
  }
}

.ads-platform-glow {
  pointer-events: none;
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 48rem);
  height: 14rem;
  background: radial-gradient(ellipse at center, rgba(224, 38, 255, 0.18) 0%, rgba(99, 102, 241, 0.08) 45%, transparent 70%);
  filter: blur(2px);
}

.ads-platform-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .ads-platform-inner {
    margin-bottom: 3rem;
  }
}

.ads-platform-overline {
  font-family: var(--font-headline);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.ads-platform-title {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.ads-platform-gradient {
  background: linear-gradient(90deg, #e026ff, #a855f7, #6366f1);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

.ads-platform-subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
}

.ads-marquee-row {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.ads-marquee-row:last-child {
  margin-bottom: 0;
}

.ads-marquee-row--offset {
  padding-left: clamp(1.5rem, 6vw, 4.5rem);
}

.ads-marquee-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ads-marquee-viewport:hover .ads-marquee-track {
  animation-play-state: paused;
}

.ads-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ads-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  flex-shrink: 0;
  padding-right: 1.25rem;
}

.ads-marquee-track--left {
  animation: ads-marquee-left 22s linear infinite;
}

.ads-marquee-track--right {
  animation: ads-marquee-right 26s linear infinite;
}

@keyframes ads-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ads-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ads-marquee-track--left,
  .ads-marquee-track--right {
    animation: none;
    transform: translateX(0);
  }
}

.ads-platform-card {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1rem 1.75rem;
  min-height: 4.5rem;
  border-radius: 1.375rem;
  background: linear-gradient(145deg, rgba(30, 27, 45, 0.95), rgba(12, 10, 22, 0.88));
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 0 1px rgba(224, 38, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

@media (min-width: 768px) {
  .ads-platform-card {
    padding: 1.125rem 2rem;
    min-height: 5rem;
    gap: 1.25rem;
    border-radius: 1.5rem;
  }
}

.ads-platform-card:hover {
  border-color: rgba(224, 38, 255, 0.55);
  box-shadow: 0 0 24px rgba(224, 38, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.ads-platform-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
}

.ads-platform-logo svg {
  display: block;
  width: 36px;
  height: 36px;
  max-width: 100%;
  max-height: 100%;
}

@media (min-width: 768px) {
  .ads-platform-logo {
    width: 3rem;
    height: 3rem;
  }

  .ads-platform-logo svg {
    width: 40px;
    height: 40px;
  }
}

.ads-platform-name {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .ads-platform-name {
    font-size: 1.125rem;
  }
}

/* Testimonial */
.section-proof {
  padding: 5rem 1rem;
  background: rgba(28, 27, 28, 0.3);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .section-proof {
    padding: 8rem 2rem;
  }
}

.proof-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.proof-bg .blob {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(100px);
}

.proof-bg .b1 {
  top: 0;
  left: 25%;
  background: rgba(99, 102, 241, 0.2);
}

.proof-bg .b2 {
  bottom: 0;
  right: 25%;
  background: rgba(99, 102, 241, 0.2);
}

.proof-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.proof-inner .glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem;
  height: 24rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .stars {
    margin-bottom: 2.5rem;
  }
}

.stars .star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  fill: var(--primary);
  transition: transform 0.3s;
}

.stars .star-icon:hover {
  transform: scale(1.25);
}

blockquote.quote {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 2.5rem;
  transition: color 0.5s;
}

@media (min-width: 768px) {
  blockquote.quote {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  blockquote.quote {
    font-size: 2.25rem;
  }
}

.quote-wrap:hover blockquote.quote {
  color: rgba(99, 102, 241, 0.9);
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  padding: 0.25rem;
  margin-bottom: 1rem;
  transition: border-color 0.5s, box-shadow 0.5s;
}

@media (min-width: 768px) {
  .author-avatar {
    width: 5rem;
    height: 5rem;
  }
}

.quote-wrap:hover .author-avatar {
  border-color: var(--indigo-400);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s;
}

.quote-wrap:hover .author-avatar img {
  transform: scale(1.05);
}

.author-name {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  transition: color 0.3s;
}

.quote-wrap:hover .author-name {
  color: var(--primary);
}

.author-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--outline);
  transition: color 0.3s;
}

.quote-wrap:hover .author-role {
  color: rgba(255, 255, 255, 0.6);
}

/* Process */
.section-process {
  padding: 5rem 1rem;
  background: rgba(14, 14, 15, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-process {
    padding: 7rem 2rem;
  }
}

.section-process .container {
  max-width: 1280px;
}

.section-process h2 {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4rem;
}

@media (min-width: 768px) {
  .section-process h2 {
    font-size: 2.25rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .section-process h2 {
    font-size: 3rem;
  }
}

.process-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--muted-text);
  margin: 0 0 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .process-subtitle {
    font-size: 1.25rem;
    margin-bottom: 5rem;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step .step-label {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-step:hover .step-label {
  color: var(--primary);
}

.process-icon-ring {
  position: relative;
  width: 7rem;
  height: 7rem;
  margin-bottom: 1.5rem;
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .process-icon-ring {
    width: 8rem;
    height: 8rem;
  }
}

.process-step:hover .process-icon-ring {
  transform: scale(1.1);
}

.process-icon-ring .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--primary), var(--indigo-500));
  padding: 3px;
  transition: box-shadow 0.5s;
}

.process-step:hover .process-icon-ring .ring {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.process-icon-ring .ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--card-inner);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-ring svg {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.process-step:hover .process-icon-ring svg {
  color: var(--primary);
}

.process-step h3 {
  font-family: var(--font-headline);
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

.process-step:hover h3 {
  color: var(--primary);
}

.process-step p {
  color: var(--muted-text);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 240px;
  margin: 0;
}

/* FAQ */
.section-faq {
  padding: 5rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(14, 14, 15, 0.4) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .section-faq {
    padding: 6rem 2rem;
  }
}

.faq-container {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .faq-title {
    font-size: 2.5rem;
  }
}

.faq-intro {
  text-align: center;
  color: var(--on-surface-variant);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 2.5rem;
}

@media (min-width: 768px) {
  .faq-intro {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: var(--card-inner);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item details:hover {
  border-color: rgba(99, 102, 241, 0.25);
}

.faq-item details[open] {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 24px rgba(99, 102, 241, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.faq-item details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item details[open] summary {
  color: rgba(255, 255, 255, 0.95);
}

.faq-a {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-a p {
  margin: 0;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted-text);
}

/* CTA */
.section-cta {
  padding: 5rem 1rem;
  max-width: 1536px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-cta {
    padding: 8rem 2rem;
  }
}

.cta-box {
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.7s;
}

@media (min-width: 768px) {
  .cta-box {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 6rem;
  }
}

.cta-box:hover {
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.15);
}

.cta-box .cta-bg-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.7s;
}

.cta-box:hover .cta-bg-img {
  opacity: 0.3;
}

.cta-box .cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s;
}

.cta-box:hover .cta-bg-img img {
  transform: scale(1.05);
}

.cta-box .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 15, 0.9), rgba(14, 14, 15, 0.5), transparent);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-headline);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 3.75rem;
  }
}

.cta-content .cta-lead {
  color: var(--on-surface-variant);
  font-size: 1rem;
  font-weight: 300;
  margin: 0 0 2.5rem;
}

@media (min-width: 768px) {
  .cta-content .cta-lead {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.btn-cta-final {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
  transition: box-shadow 0.5s, transform 0.5s;
}

@media (min-width: 768px) {
  .btn-cta-final {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
  }
}

.btn-cta-final:hover {
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.6);
  transform: scale(1.05);
}

.btn-cta-final:active {
  transform: scale(0.95);
}

.btn-cta-final .btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary), var(--indigo-400), var(--primary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  animation: shimmer 2s infinite;
}

.btn-cta-final:hover .btn-shimmer {
  opacity: 1;
}

.btn-cta-final span {
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  width: 100%;
  padding: 2rem 1rem;
  background: var(--slate-950);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 2rem;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    gap: 2rem;
  }
}

.footer-inner .logo {
  cursor: pointer;
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-social {
    gap: 2rem;
  }
}

.footer-social a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-500);
  opacity: 0.8;
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: var(--primary);
  opacity: 1;
  transform: scale(1.1);
}

/* CardSwap styles */
.card-swap-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
  padding: 2rem;
}

.card-swap-info {
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-swap-overline {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin: 0;
}

.card-swap-headline {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.05;
}

.card-swap-subheadline {
  margin: 0;
  color: var(--slate-400);
  line-height: 1.8;
  max-width: 36rem;
}

.card-swap-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-swap-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.card-swap-logo svg {
  width: 28px;
  height: 28px;
}

.card-swap-container {
  width: 120%;
  max-width: 900px;
  min-height: 820px;
  height: min(80vh, 900px);
  position: relative;
  perspective: 900px;
  overflow: visible;
  margin: 0 auto;
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 500px);
  max-width: 100%;
  min-height: 300px;
  border-radius: 12px;
  border: 1px solid #fff;
  background: #000;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.0rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.card h3 {
  margin: 0;
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: var(--font-headline);
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--slate-400);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .card-swap-wrapper {
    grid-template-columns: 1fr;
  }

  .card-swap-container {
    width: 100% !important;
    height: auto !important;
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .card-swap-container {
    transform: translateX(-12%) scale(0.8);
  }
}

@media (max-width: 480px) {
  .card-swap-container {
    transform: translateX(-12%) scale(0.6);
  }
}

/* Terms & Conditions */
.section-terms {
  padding: 6rem 2rem;
  min-height: 100vh;
}

.section-terms .container {
  max-width: 65ch;
  margin: 0 auto;
}

.section-terms h1 {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 2rem;
  background: linear-gradient(135deg, #6366f1, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .section-terms h1 {
    font-size: 4rem;
  }
}

.section-terms .rule {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--primary), var(--purple-600));
  margin: 0 auto 3rem;
  border-radius: 0.125rem;
}

.section-terms .terms-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted-text);
  margin: 0 0 4rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.terms-content {
  color: var(--foreground);
  line-height: 1.7;
}

.terms-content h2 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(139, 145, 155, 0.2);
}

.terms-content p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--muted-text);
}

.terms-content ul {
  margin: 1rem 0 1.5rem 2rem;
  padding: 0;
}

.terms-content li {
  margin: 0.5rem 0;
  color: var(--muted-text);
}

.terms-content strong {
  color: #fff;
  font-weight: 600;
}

.terms-date {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-text);
  margin: 4rem 0 2rem;
  font-style: italic;
}

/* Pricing Plans Section */
.section-pricing {
  padding: 5rem 1rem;
  background: rgba(14, 14, 15, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-pricing {
    padding: 7rem 2rem;
  }
}

.section-pricing .section-head {
  margin-bottom: 1rem;
}

.section-pricing h2 {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .section-pricing h2 {
    font-size: 3rem;
  }
}

.pricing-intro {
  text-align: center;
  color: var(--on-surface-variant);
  font-size: 1rem;
  margin: 0 0 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.8), rgba(25, 25, 28, 0.6));
  backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(20, 20, 22, 1), rgba(25, 25, 28, 0.8));
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.elite-highlight {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
}

.pricing-card.elite-highlight:hover {
  border-color: rgba(99, 102, 241, 0.8);
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
}

.pricing-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  font-size: 1.875rem;
  transition: transform 0.3s ease;
}

.pricing-icon.trial-icon {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

.pricing-icon.basic-icon {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.pricing-icon.pro-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.pricing-icon.elite-icon {
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotateY(10deg);
}

.pricing-plan-name {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-details {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 500;
}

.pricing-value {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.pricing-fee {
  background: linear-gradient(90deg, #818cf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.pricing-card button {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
