/* pAIq — Main Stylesheet
   Design: Warm, approachable, creator-focused. Mobile-first.
   Palette: Warm White bg, Warm Coral accent, Deep Charcoal text */

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #FAFAF8;
  --color-bg-alt: #F5F3EF;
  --color-bg-dark: #1A1A2E;
  --color-accent: #f43d00;
  --color-accent-hover: #D4502D;
  --color-text: #1C1C2E;
  --color-text-light: #6B6B80;
  --color-border: #E8E6E1;
  --color-white: #FFFFFF;
  --color-teal: #00B4A0;

  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  --max-width: 1140px;
  --section-pad: 80px 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===================== TYPOGRAPHY ===================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-light {
  color: var(--color-text-light);
}

.text-accent {
  color: var(--color-accent);
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-border);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ===================== NAVIGATION ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a.btn-primary {
  background: #F43D01;
  color: #FFFFFF;
  font-weight: 600;
  border-color: #F43D01;
}

.nav-links a.btn-primary:hover {
  background: #D93500;
  border-color: #D93500;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-cta {
  margin-left: 8px;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lang-option {
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-option:hover,
.lang-option.is-active {
  background: rgba(255, 255, 255, 0.86);
  color: #1a3bd4;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.18);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  padding: 100px 24px 80px;
  background: var(--color-bg);
  text-align: center;
}


.hero h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--color-text);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 1rem;
  color: var(--color-text-light);
}

.hero-img {
  margin: 60px auto 0;
  max-width: 860px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-inner {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4E 100%);
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== ANIMATED METRICS CARD ==================== */
.hero-metrics-card {
  background: #E3DACC;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.metric-item {
  flex: 1;
  text-align: center;
}

.metric-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.metric-label.pulsing {
  animation: labelPulse 0.5s ease-in-out infinite alternate;
}

@keyframes labelPulse {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.4;
  }
}

.metric-divider {
  width: 1px;
  height: 56px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

/* Activity feed */
.activity-feed {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  min-height: 28px;
  position: relative;
}

.activity-line {
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  transition: opacity 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-line.active {
  opacity: 1;
  position: relative;
}

/* Mobile: stack metrics vertically */
@media (max-width: 600px) {
  .hero-metrics-card {
    padding: 28px 20px;
  }

  .metrics-row {
    flex-direction: column;
    gap: 20px;
  }

  .metric-divider {
    width: 60px;
    height: 1px;
  }

  .metric-num {
    font-size: 2.2rem;
  }

  .activity-line {
    white-space: normal;
    font-size: 0.82rem;
  }
}

.mock-dashboard {
  width: 100%;
  max-width: 680px;
}

.mock-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  height: 12px;
  margin-bottom: 12px;
}

.mock-bar.w-60 {
  width: 60%;
}

.mock-bar.w-80 {
  width: 80%;
}

.mock-bar.w-45 {
  width: 45%;
}

.mock-bar.w-70 {
  width: 70%;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.mock-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.mock-card-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.mock-card-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.mock-card-num.accent {
  color: var(--color-accent);
}

.mock-card-num.teal {
  color: var(--color-teal);
}

/* ===================== SECTION LABEL ===================== */
.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

/* ===================== PROBLEM SECTION ===================== */
.section-problem {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dm-bubble {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  position: relative;
}

.dm-bubble.unanswered {
  opacity: 0.5;
  border-left: 3px solid var(--color-accent);
}

.dm-bubble .dm-time {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.dm-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEF0ED;
  border: 1px solid #F9CABB;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* ===================== SOLUTION / HOW IT WORKS ===================== */
.section-solution {
  background: var(--color-bg);
}

.section-solution .container {
  max-width: 800px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--color-text-light);
  margin: 0;
}

/* ===================== FEATURES ===================== */
.section-features {
  background: var(--color-bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #FEF0ED;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ===================== PRICING ===================== */
.section-pricing {
  background: var(--color-bg);
}

.pricing-note {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow 0.2s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--color-accent);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(232, 97, 74, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-cadence {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-teal);
  font-weight: 700;
  flex-shrink: 0;
}

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

.pricing-trial {
  text-align: center;
  margin-top: 40px;
  padding: 40px 32px 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.pricing-trial h3 {
  margin-bottom: 8px;
}

.pricing-trial p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* ===================== CTA SECTION ===================== */
.section-cta {
  background: var(--color-bg-dark);
  padding: var(--section-pad);
  text-align: center;
}

.section-cta h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 56px 24px 34px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin: 12px 0 20px;
  max-width: 280px;
}

.footer-brand .footer-meta {
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social svg,
.footer-social svg * {
  fill: currentColor;
  stroke: none;
}

.footer-social a[aria-label*="Instagram"] svg,
.footer-social a[aria-label*="Instagram"] svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--color-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: var(--color-text-light);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-bottom p,
.footer-bottom small {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin: 0;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 16px;
  font-size: 0.75rem;
  color: var(--color-text-light);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===================== INNER PAGES ===================== */
.page-hero {
  background: var(--color-bg-alt);
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--color-text-light);
  max-width: 540px;
  margin: 0;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.prose h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.prose p,
.prose li {
  color: var(--color-text);
  line-height: 1.75;
}

.prose ul,
.prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose li {
  margin-bottom: 6px;
}

.prose a {
  color: var(--color-accent);
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  color: var(--color-text);
}

.prose-date {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #FEF0ED;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--color-accent);
}

.contact-success-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h4 {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--color-text);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-accent);
}

.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 12px;
}

/* ===================== FAQ MINI ===================== */
.faq-mini {
  margin-top: 48px;
}

.faq-mini h3 {
  margin-bottom: 20px;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===================== SOCIAL PROOF ===================== */
.social-proof {
  background: var(--color-bg);
  padding: 40px 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.proof-stat {
  text-align: center;
}

.proof-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.proof-stat span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section-problem .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 640px) {
  :root {
    --section-pad: 60px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }

  .nav-cta {
    display: none;
  }

  .nav-lang {
    align-self: center;
  }

  .hero {
    padding: 72px 20px 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mock-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===================== HERO — CONCEPT 3: AGENT ACTIVITY FEED ===================== */
.hero-animation-wrap {
  margin: 60px auto 0;
  max-width: 600px;
}

.terminal-card {
  background: #1c1a17;
  border-radius: 16px;
  width: 100%;
  box-shadow:
    0 2px 8px rgba(26, 26, 26, 0.2),
    0 20px 60px rgba(26, 26, 26, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.t-titlebar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-traffic-lights {
  display: flex;
  gap: 6px;
  align-items: center;
}

.t-tl {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.t-red {
  background: #ff5f57;
}

.t-yellow {
  background: #febc2e;
}

.t-green {
  background: #28c840;
}

.t-title-text {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  margin-right: 44px;
}

.t-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #4ade80;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.t-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: t-live-pulse 1.8s ease-in-out infinite;
}

@keyframes t-live-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.t-log-area {
  padding: 20px;
  height: 240px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.t-log-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, #1c1a17, transparent);
  pointer-events: none;
}

.t-log-line {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 11px;
  line-height: 1.6;
  white-space: normal;
  word-wrap: break-word;
  /* Ensure extremely long words wrap if necessary */
  opacity: 0;
  transform: translateX(-4px);
  animation: t-line-in 0.35s ease forwards;
  flex-shrink: 0;
}

@keyframes t-line-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.t-ts {
  color: rgba(255, 255, 255, 0.2);
  margin-right: 12px;
  font-size: 10px;
  flex-shrink: 0;
}

.t-icon {
  margin-right: 8px;
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: #93c5fd;
  opacity: 0.96;
  filter: drop-shadow(0 0 6px rgba(147, 197, 253, 0.32));
}

.t-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.t-log-line.t-type-match .t-icon {
  color: #67e8f9;
}

.t-log-line.t-type-hot .t-icon {
  color: #bfdbfe;
}

.t-log-line.t-type-info .t-icon,
.t-log-line.t-type-followup .t-icon {
  color: rgba(147, 197, 253, 0.72);
}

.t-msg {
  flex: 1;
}

.t-log-line.t-type-in .t-msg {
  color: rgba(255, 255, 255, 0.82);
}

.t-log-line.t-type-analyze .t-msg {
  color: rgba(251, 191, 36, 0.85);
}

.t-log-line.t-type-match .t-msg {
  color: #4ade80;
}

.t-log-line.t-type-reply .t-msg {
  color: rgba(255, 255, 255, 0.65);
}

.t-log-line.t-type-hot .t-msg {
  color: #F43D01;
  font-weight: 600;
}

.t-log-line.t-type-followup .t-msg {
  color: rgba(255, 255, 255, 0.5);
}

.t-log-line.t-type-new .t-msg {
  color: rgba(255, 255, 255, 0.82);
}

.t-log-line.t-type-info .t-msg {
  color: rgba(255, 255, 255, 0.4);
}

.t-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: #F43D01;
  margin-left: 4px;
  animation: t-cursor-blink 1s step-end infinite;
  vertical-align: middle;
  border-radius: 1px;
  opacity: 0.8;
}

@keyframes t-cursor-blink {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 0;
  }
}

.t-footer {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  /* Allows stats to wrap on tiny screens securely */
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.t-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.t-stat-val {
  font-weight: 600;
  color: #F43D01;
  font-size: 11px;
  white-space: nowrap;
  /* Prevent number from wrapping */
}

.t-stat-label {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

.t-stat-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .t-log-area {
    height: 200px;
  }

  .t-log-line {
    font-size: 10px;
  }

  .t-title-text {
    display: none;
  }
}

/* ===================== SOLUTIONS — CONCEPT 2: DM CONVERSATION ===================== */
.dm-anim-wrap {
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 676px;
  align-items: flex-start;
}

.dm-phone-frame {
  --dm-phone-width: 342px;
  --dm-phone-height: 656px;
  position: relative;
  flex: 0 0 var(--dm-phone-width);
  width: var(--dm-phone-width);
  min-width: var(--dm-phone-width);
  max-width: var(--dm-phone-width);
  height: var(--dm-phone-height);
  min-height: var(--dm-phone-height);
  max-height: var(--dm-phone-height);
  padding: 10px;
  box-sizing: border-box;
  background:
    linear-gradient(145deg, #1f2937 0%, #050816 58%, #172554 100%);
  border-radius: 48px;
  box-shadow:
    0 34px 90px rgba(2, 6, 23, 0.34),
    0 10px 26px rgba(15, 23, 42, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 -22px 46px rgba(15, 23, 42, 0.35);
  overflow: visible;
  border: 1px solid rgba(219, 234, 254, 0.18);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.dm-phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 4;
  width: 96px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, rgba(30, 41, 59, 0.8) 0 4px, transparent 5px),
    linear-gradient(180deg, #020617, #111827);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 8px rgba(2, 6, 23, 0.32);
  transform: translateX(-50%);
}

.dm-phone-frame::after {
  content: '';
  position: absolute;
  inset: 12px auto 12px 8px;
  z-index: 0;
  width: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  opacity: 0.72;
}

.dm-phone-screen {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 39px;
  background: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.04),
    inset 0 22px 44px rgba(255, 255, 255, 0.82);
}

.dm-status-bar {
  flex: 0 0 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 23px 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.dm-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
}

.dm-signal {
  width: 16px;
  height: 10px;
  background:
    linear-gradient(to top, currentColor 0 35%, transparent 35%),
    linear-gradient(to top, currentColor 0 52%, transparent 52%),
    linear-gradient(to top, currentColor 0 70%, transparent 70%),
    linear-gradient(to top, currentColor 0 100%, transparent 100%);
  background-size: 3px 100%;
  background-repeat: no-repeat;
  background-position: 0 bottom, 4px bottom, 8px bottom, 12px bottom;
  opacity: 0.86;
}

.dm-wifi {
  width: 13px;
  height: 9px;
  border: 2px solid currentColor;
  border-top: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 12px 12px;
  transform: translateY(-1px);
  opacity: 0.78;
}

.dm-battery {
  position: relative;
  width: 18px;
  height: 9px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
  opacity: 0.86;
}

.dm-battery::before {
  content: '';
  position: absolute;
  inset: 1.5px 4px 1.5px 1.5px;
  border-radius: 1.5px;
  background: currentColor;
}

.dm-battery::after {
  content: '';
  position: absolute;
  top: 2px;
  right: -3.5px;
  width: 2px;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
}

.dm-chat-header {
  flex: 0 0 66px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  padding: 10px 14px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.dm-back-arrow {
  width: 28px;
  height: 28px;
  color: #1f2937;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dm-back-arrow svg,
.dm-header-icon svg,
.dm-composer-icon svg,
.dm-send-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.dm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #f97316, #ec4899 45%, #6366f1 100%) border-box;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.dm-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.dm-avatar-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.dm-chat-info {
  flex: 1;
  min-width: 0;
}

.dm-chat-name {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: 0;
}

.dm-chat-status {
  font-size: 11px;
  color: rgba(15, 23, 42, 0.48);
  margin-top: 2px;
}

.dm-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.dm-header-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: #2563eb;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.dm-messages {
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 18px 12px 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background:
    radial-gradient(circle at 22% 0%, rgba(219, 234, 254, 0.78), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  transition: opacity 0.6s ease;
  scrollbar-width: none;
}

.dm-messages::-webkit-scrollbar {
  display: none;
}

.dm-bubble-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dm-bubble-wrap.dm-visible {
  opacity: 1;
  transform: translateY(0);
}

.dm-bubble-wrap.dm-user {
  justify-content: flex-end;
}

.dm-bubble-wrap.dm-agent {
  justify-content: flex-start;
}

.dm-phone-frame .dm-bubble {
  max-width: 238px;
  box-sizing: border-box;
  padding: 10px 13px;
  border-radius: 19px;
  border: 0;
  box-shadow: none;
  font-size: 13px;
  line-height: 1.45;
  color: #111827;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.dm-phone-frame .dm-bubble-wrap.dm-user .dm-bubble {
  background: linear-gradient(135deg, #3797f0 0%, #2563eb 58%, #7c3aed 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.14);
}

.dm-phone-frame .dm-bubble-wrap.dm-agent .dm-bubble {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom-left-radius: 4px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.06);
}

.dm-agent-label {
  font-size: 9px;
  font-weight: 600;
  color: #F43D01;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding-left: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dm-agent-label.dm-visible {
  opacity: 1;
}

.dm-agent-meta {
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 34px);
}

.dm-typing-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dm-typing-wrap.dm-visible {
  opacity: 1;
}

.dm-typing-bubble {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 11px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.06);
}

.dm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.25);
  animation: dm-typing-bounce 1.2s ease-in-out infinite;
}

.dm-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dm-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dm-typing-bounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    background: rgba(26, 26, 26, 0.25);
  }

  30% {
    transform: translateY(-4px);
    background: #F43D01;
  }
}

.dm-mini-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #f97316, #ec4899 45%, #6366f1 100%) border-box;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-end;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1);
}

.dm-mini-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.dm-chat-input {
  flex: 0 0 64px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 10px 13px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dm-composer-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: #2563eb;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.dm-input-box {
  flex: 1;
  min-width: 0;
  height: 34px;
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.42);
}

.dm-send-btn {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 50%;
  background: #3797f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.24);
}

@media (max-width: 600px) {
  .dm-phone-frame {
    --dm-phone-width: 304px;
    --dm-phone-height: 584px;
  }

  .dm-anim-wrap {
    min-height: 604px;
  }

  .dm-phone-frame .dm-bubble {
    max-width: 210px;
    font-size: 12px;
  }

  .dm-chat-header {
    padding-inline: 12px;
    gap: 7px;
  }

  .dm-header-actions {
    gap: 2px;
  }
}

@media (max-width: 380px) {
  .dm-phone-frame {
    --dm-phone-width: 286px;
    --dm-phone-height: 554px;
  }

  .dm-anim-wrap {
    min-height: 574px;
  }

  .dm-phone-frame .dm-bubble {
    max-width: 198px;
  }
}

/* ==================== REFINEMENT 1: Stats bar icons ==================== */
.proof-icon {
  color: #F43D01;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 6px;
}

/* ==================== REFINEMENT 2: Solution section two-column layout ==================== */
.solution-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 24px;
}

.solution-text {
  flex: 0 0 60%;
  max-width: 60%;
}

.solution-anim {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 16px;
}

/* Stack vertically before tablet layouts get cramped */
@media (max-width: 980px) {
  .solution-columns {
    flex-direction: column;
    gap: 32px;
  }

  .solution-text,
  .solution-anim {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .solution-anim {
    justify-content: center;
    padding-top: 0;
  }
}

/* ==================== REFINEMENT 3: Highlight Underline ==================== */
.highlight-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -6px;
  bottom: -6px;
  height: 10px;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q50,10 100,2' stroke='%23F43D02' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M8,15 Q45,20 95,14' stroke='%23F43D02' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 100%;
}

/* ==================== WEBSITE V2: BLUE FROST STORY PASS ==================== */
body.v2-site {
  --color-bg: #d7eaff;
  --color-bg-alt: rgba(219, 234, 254, 0.74);
  --color-bg-dark: #080b18;
  --color-accent: #3b82f6;
  --color-accent-hover: #1d4ed8;
  --color-text: #17223a;
  --color-text-light: #64748b;
  --color-border: rgba(96, 165, 250, 0.24);
  --color-white: rgba(255, 255, 255, 0.72);
  --color-teal: #0ea5e9;
  --font-display: 'Syne', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg,
      #070b18 0%,
      #09122c 14%,
      #0d1f4d 30%,
      #173f75 44%,
      #6fa9e4 58%,
      #bdddfb 72%,
      #d8ecff 88%,
      #eaf6ff 100%);
  background-attachment: scroll;
  background-size: 100% 100%;
  color: var(--color-text);
}

body.v2-site::before {
  content: '';
  position: fixed;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.76;
  background:
    radial-gradient(ellipse 70% 50% at 72% 12%, rgba(96, 165, 250, 0.18), transparent 70%),
    radial-gradient(ellipse 70% 56% at 16% 30%, rgba(124, 158, 248, 0.14), transparent 68%),
    radial-gradient(ellipse 64% 44% at 54% 92%, rgba(103, 232, 249, 0.12), transparent 66%);
  mix-blend-mode: screen;
}

body.v2-site::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 120px);
  opacity: 0.36;
}

body.v2-site > * {
  position: relative;
  z-index: 1;
}

.v2-site .paiq-shader-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.94;
}

.v2-site .cookie-consent {
  position: fixed !important;
  left: 50%;
  right: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1000 !important;
  width: min(920px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgba(8, 17, 39, 0.92), rgba(16, 43, 94, 0.84)),
    rgba(8, 17, 39, 0.86);
  border: 1px solid rgba(191, 219, 254, 0.32);
  border-radius: 18px;
  box-shadow:
    0 22px 60px rgba(7, 11, 24, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.v2-site .cookie-consent-copy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(248, 251, 255, 0.84);
}

.v2-site .cookie-consent-copy a {
  color: #93c5fd;
  font-weight: 800;
  text-decoration: none;
}

.v2-site .cookie-consent-copy a:hover {
  color: #dbeafe;
}

.v2-site .cookie-consent-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v2-site .cookie-consent-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.v2-site .cookie-consent-btn:hover {
  transform: translateY(-1px);
}

.v2-site .cookie-consent-btn-secondary {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(219, 234, 254, 0.34);
}

.v2-site .cookie-consent-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(219, 234, 254, 0.54);
}

.v2-site .cookie-consent-btn-primary {
  color: #06122a;
  background: linear-gradient(135deg, #f8fbff, #93c5fd);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(96, 165, 250, 0.28);
}

.v2-site .cookie-consent-btn-primary:hover {
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
}

.v2-site h1,
.v2-site h2,
.v2-site h3,
.v2-site h4 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.v2-site h1 {
  font-size: 3.75rem;
  line-height: 0.98;
}

.v2-site h2 {
  font-size: 2.65rem;
  line-height: 1.05;
}

.v2-site .nav {
  background: rgba(8, 11, 24, 0.74) !important;
  border-bottom: 1px solid rgba(147, 197, 253, 0.18) !important;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 100;
}

.v2-site .nav-logo {
  letter-spacing: 0;
}

.v2-site .nav-logo img {
  height: 52px;
  width: auto;
  filter:
    drop-shadow(0 0 14px rgba(147, 197, 253, 0.36))
    drop-shadow(0 6px 14px rgba(37, 99, 235, 0.18));
}
.v2-site .nav-links a {
  color: rgba(240, 246, 255, 0.72) !important;
}

.v2-site .nav-links a:hover {
  color: #ffffff !important;
}

.v2-site .nav-toggle span {
  background: rgba(255, 255, 255, 0.82) !important;
}

.v2-site .btn {
  min-height: 48px;
  border-radius: 14px;
  letter-spacing: 0;
}

.v2-site .btn-primary,
.v2-site .nav-links a.btn-primary {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #1a3bd4 !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    0 16px 38px rgba(37, 99, 235, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.v2-site .btn-primary:hover,
.v2-site .nav-links a.btn-primary:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #1232b8 !important;
}

.v2-site .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 249, 255, 0.9);
  border-color: rgba(147, 197, 253, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.v2-site .btn-outline:hover {
  background: rgba(147, 197, 253, 0.18);
  border-color: rgba(219, 234, 254, 0.64);
}

.v2-site .hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 118px 24px 92px;
  background: transparent !important;
  text-align: left;
}

.v2-site .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 20, 0.16) 0%, transparent 40%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(219, 234, 254, 0.035) 0 1px, transparent 1px 118px);
  opacity: 0.48;
}

.v2-site .hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 76px;
  align-items: center;
}

.v2-site .hero-copy {
  position: relative;
  max-width: 720px;
}

.v2-site .hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(147, 197, 253, 0.08)),
    rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(191, 219, 254, 0.26);
  box-shadow:
    0 14px 30px rgba(2, 6, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.v2-site .hero h1,
.v2-site .hero-sub,
.v2-site .hero-note {
  max-width: 680px;
  margin-left: 0;
  margin-right: 0;
  color: #ffffff;
}

.v2-site .hero h1 em,
.v2-site .text-accent {
  color: #93c5fd;
}

.v2-site .hero-sub {
  max-width: 620px;
  color: rgba(235, 245, 255, 0.76);
  margin-bottom: 28px;
}

.v2-site .hero-actions {
  justify-content: flex-start;
}

.v2-site .hero-note {
  color: rgba(235, 245, 255, 0.56);
  margin-top: 14px;
}

.v2-site .hero-skill-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 620px;
}

.v2-site .hero-skill-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(245, 249, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(147, 197, 253, 0.08)),
    rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(191, 219, 254, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(2, 6, 23, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.v2-site .highlight-underline::after {
  height: 9px;
  bottom: -5px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.1), rgba(103, 232, 249, 0.62), rgba(96, 165, 250, 0.08)) !important;
  border-radius: 999px;
}

.v2-site .hero-animation-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0;
}

.v2-site .terminal-card,
.v2-site .glass-card-inner,
.v2-site .feature-card,
.v2-site .pricing-card,
.v2-site .pricing-trial,
.v2-site .dm-phone-frame {
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.v2-site .terminal-card {
  background:
    linear-gradient(145deg, rgba(6, 14, 34, 0.72), rgba(14, 28, 72, 0.58)) !important;
  border: 1px solid rgba(147, 197, 253, 0.26);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 42px rgba(59, 130, 246, 0.2);
}

.v2-site .t-titlebar,
.v2-site .t-footer {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(147, 197, 253, 0.14);
}

.v2-site .t-log-area::after {
  background: linear-gradient(to top, rgba(7, 13, 32, 0.95), transparent);
}

.v2-site .t-stat-val,
.v2-site .t-cursor,
.v2-site .dm-send-btn {
  background: #60a5fa;
}

.v2-site .t-stat-val {
  color: #93c5fd;
  background: transparent;
}

.v2-site .t-log-line.t-type-hot .t-msg,
.v2-site .dm-agent-label,
.v2-site .proof-icon {
  color: #93c5fd;
}

.v2-site .stats-glass-section {
  background: transparent !important;
  border: 0 !important;
}

.v2-site .stats-glass-section::before,
.v2-site .section-tech::before {
  display: none !important;
}

.v2-site .stats-flip-label {
  color: rgba(219, 234, 254, 0.62) !important;
}

.v2-site .glass-card-3d::after {
  box-shadow:
    2px 2px 0 rgba(219, 234, 254, 0.12),
    6px 8px 24px rgba(2, 6, 23, 0.42),
    0 0 32px rgba(96, 165, 250, 0.32) !important;
}

.v2-site .glass-card-inner {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(59, 130, 246, 0.12)),
    rgba(12, 26, 65, 0.5) !important;
  border-color: rgba(219, 234, 254, 0.42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(96, 165, 250, 0.26),
    0 18px 42px rgba(0, 0, 0, 0.2) !important;
}

.v2-site .glass-stat-number {
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(147, 197, 253, 0.78) !important;
}

.v2-site .section-problem {
  background: transparent !important;
  border: 0 !important;
}

.v2-site .section-problem h2,
.v2-site .section-problem p,
.v2-site .section-problem .dm-bubble strong {
  color: #f8fbff !important;
}

.v2-site .section-problem .section-label {
  color: #93c5fd;
}

.v2-site .section-problem p[style],
.v2-site .section-problem .dm-time {
  color: rgba(235, 245, 255, 0.68) !important;
}

.v2-site #typewriter,
.v2-site .cursor {
  color: #93c5fd !important;
}

.v2-site .problem-visual .dm-bubble {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(59, 130, 246, 0.08)),
    rgba(10, 21, 50, 0.52) !important;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-left: 1px solid rgba(147, 197, 253, 0.2);
  box-shadow:
    0 18px 38px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.v2-site .problem-visual .dm-bubble.unanswered {
  opacity: 0.72;
  border-left: 3px solid rgba(96, 165, 250, 0.62);
}

.v2-site .dm-count {
  background: rgba(96, 165, 250, 0.12) !important;
  border-color: rgba(147, 197, 253, 0.32) !important;
  color: #dbeafe !important;
}

.v2-site .section-solution {
  background: transparent !important;
  border: 0 !important;
}

.v2-site .section-solution .container {
  max-width: var(--max-width);
}

.v2-site .section-solution h2,
.v2-site .section-solution .step-content h3 {
  color: #f8fbff;
}

.v2-site .section-solution .step-content p {
  color: rgba(245, 249, 255, 0.76);
}

.v2-site .section-solution .section-label {
  color: #bfdbfe;
}

.v2-site .section-solution p[style] {
  color: rgba(245, 249, 255, 0.78) !important;
}

.v2-site .step {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(219, 234, 254, 0.22);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.v2-site .step-num {
  background: rgba(255, 255, 255, 0.9);
  color: #1a3bd4;
  box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.42) inset;
}

.v2-site .dm-phone-frame {
  background:
    linear-gradient(145deg, rgba(30, 41, 59, 0.96), rgba(2, 6, 23, 0.98) 58%, rgba(30, 64, 175, 0.96));
  border: 1px solid rgba(219, 234, 254, 0.28);
  box-shadow:
    0 32px 86px rgba(2, 6, 23, 0.38),
    0 0 42px rgba(96, 165, 250, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -22px 46px rgba(15, 23, 42, 0.38);
}

.v2-site .dm-phone-screen {
  background: #f8fbff;
  border-color: rgba(255, 255, 255, 0.8);
}

.v2-site .dm-status-bar,
.v2-site .dm-chat-header,
.v2-site .dm-chat-input {
  background: rgba(255, 255, 255, 0.96);
}

.v2-site .dm-phone-frame .dm-bubble-wrap.dm-agent .dm-bubble,
.v2-site .dm-typing-bubble {
  background: rgba(255, 255, 255, 0.94);
}

.v2-site .dm-messages {
  background:
    radial-gradient(circle at 18% 0%, rgba(186, 230, 253, 0.6), transparent 34%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(226, 242, 255, 0.96));
}

.v2-site .dm-phone-frame .dm-bubble-wrap.dm-user .dm-bubble {
  background: linear-gradient(135deg, #3797f0 0%, #2563eb 58%, #7c3aed 100%);
}

.v2-site .section-neo {
  position: relative;
  overflow: hidden;
  padding: 112px 24px 104px;
  background: transparent !important;
  border: 0 !important;
}

.v2-site .section-neo::before {
  content: '';
  position: absolute;
  inset: 8% 0 auto;
  width: min(920px, 92vw);
  height: 420px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.24), transparent 56%),
    radial-gradient(circle at 28% 34%, rgba(103, 232, 249, 0.18), transparent 34%);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.v2-site .neo-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.95fr);
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
}

.v2-site .neo-copy {
  max-width: 560px;
}

.v2-site .section-neo .section-label {
  color: #bfdbfe !important;
}

.v2-site .neo-copy h2 {
  color: #f8fbff;
  margin-bottom: 18px;
}

.v2-site .neo-copy p:not(.section-label) {
  color: rgba(245, 249, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.v2-site .neo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(178px, 220px) minmax(245px, 1fr);
  gap: 28px;
  align-items: center;
  width: min(100%, 640px);
  min-height: 300px;
  padding: 24px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(59, 130, 246, 0.08) 46%, rgba(8, 15, 34, 0.52)),
    rgba(8, 15, 34, 0.62);
  border: 1px solid rgba(219, 234, 254, 0.32);
  box-shadow:
    0 34px 90px rgba(2, 6, 23, 0.34),
    0 0 54px rgba(96, 165, 250, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(59, 130, 246, 0.22);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.v2-site .neo-card::before,
.v2-site .neo-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.v2-site .neo-card::before {
  inset: 1px;
  border-radius: 19px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.26), transparent 16%),
    radial-gradient(circle at 94% 10%, rgba(147, 197, 253, 0.28), transparent 14%);
  opacity: 0.9;
}

.v2-site .neo-card::after {
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.34), transparent 64%);
  filter: blur(4px);
}

.v2-site .neo-portrait-wrap {
  position: relative;
  width: min(220px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(147, 197, 253, 0.18) 48%, rgba(30, 64, 175, 0.44));
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.38),
    0 0 42px rgba(96, 165, 250, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.v2-site .neo-portrait-wrap::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(219, 234, 254, 0.5);
  box-shadow: inset 0 0 26px rgba(147, 197, 253, 0.2);
  pointer-events: none;
}

.v2-site .neo-portrait {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.v2-site .neo-card-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.v2-site .neo-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-site .neo-card h3 {
  color: #f8fbff;
  font-size: 2.25rem;
  margin: 0 0 16px;
}

.v2-site .neo-mode-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  width: min(100%, 296px);
}

.v2-site .neo-mode-icon {
  border: 1px solid rgba(219, 234, 254, 0.52);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-family: inherit;
  color: #f8fbff;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(219, 234, 254, 0.2) 48%, rgba(96, 165, 250, 0.1) 100%),
    rgba(15, 23, 42, 0.18);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.18),
    0 0 26px rgba(96, 165, 250, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(96, 165, 250, 0.24);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.v2-site.modal-open {
  overflow: hidden;
}

.v2-site .neo-mode-icon span {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 800;
}

.v2-site .neo-mode-icon::after {
  content: '';
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(18deg);
  transition: transform 0.45s ease;
}

.v2-site .neo-mode-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 22px 44px rgba(37, 99, 235, 0.24),
    0 0 34px rgba(96, 165, 250, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(96, 165, 250, 0.28);
}

.v2-site .neo-mode-icon:hover::after {
  transform: translateX(260%) rotate(18deg);
}

.v2-site .neo-mode-icon svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.v2-site .neo-mode-icon-end svg {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  stroke-width: 1.5;
}

.v2-site .neo-widget-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-block;
  fill: none;
  stroke: #f8fbff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #f8fbff;
  filter: drop-shadow(0 0 8px rgba(147, 197, 253, 0.58));
}

.v2-site .neo-card p {
  color: rgba(235, 245, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 330px;
}

.v2-site .neo-widget-slot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  width: min(100%, 296px);
  justify-content: center;
  padding: 0 16px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(219, 234, 254, 0.22) 48%, rgba(96, 165, 250, 0.12) 100%),
    rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(219, 234, 254, 0.52);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.16),
    0 0 32px rgba(96, 165, 250, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(96, 165, 250, 0.24);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.v2-site .neo-millis-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  opacity: 0.01;
  background: transparent;
}

.v2-site .neo-widget-face {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  pointer-events: none;
}

.v2-site .neo-widget-slot::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
  inset: -45% auto -45% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(18deg);
  transition: transform 0.45s ease;
}

.v2-site .neo-widget-slot:hover::after {
  transform: translateX(340%) rotate(18deg);
}

.v2-site .neo-mode-icon-end {
  font-family: inherit;
  color: #fff7ed;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(254, 226, 226, 0.18) 48%, rgba(239, 68, 68, 0.18) 100%),
    rgba(69, 10, 10, 0.18);
  border-color: rgba(254, 202, 202, 0.52);
}

.v2-site .neo-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.v2-site .neo-chat-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.v2-site .neo-chat-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.v2-site .neo-chat-dialog {
  position: relative;
  width: min(100%, 520px);
  min-height: min(720px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(59, 130, 246, 0.09) 46%, rgba(8, 15, 34, 0.7)),
    rgba(8, 15, 34, 0.84);
  border: 1px solid rgba(219, 234, 254, 0.34);
  box-shadow:
    0 34px 90px rgba(2, 6, 23, 0.52),
    0 0 54px rgba(96, 165, 250, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: #f8fbff;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.v2-site .neo-chat-thread {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-height: 270px;
  max-height: min(440px, 48vh);
  overflow-y: auto;
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid rgba(219, 234, 254, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(59, 130, 246, 0.14), transparent 36%),
    rgba(15, 23, 42, 0.24);
}

.v2-site .neo-chat-bubble {
  width: fit-content;
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 16px;
  color: #f8fbff;
  font-size: 0.94rem;
  line-height: 1.45;
}

.v2-site .neo-chat-bubble-bot {
  justify-self: start;
  border-bottom-left-radius: 6px;
  background: rgba(59, 130, 246, 0.22);
  border: 1px solid rgba(147, 197, 253, 0.26);
}

.v2-site .neo-chat-bubble-user {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: rgba(248, 251, 255, 0.18);
  border: 1px solid rgba(248, 251, 255, 0.28);
}

.v2-site .neo-chat-modal.is-open .neo-chat-dialog {
  transform: translateY(0) scale(1);
}

.v2-site .neo-chat-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(219, 234, 254, 0.3);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.28);
  cursor: pointer;
}

.v2-site .neo-chat-close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.86);
}

.v2-site .neo-chat-close span:first-child {
  transform: rotate(45deg);
}

.v2-site .neo-chat-close span:last-child {
  transform: rotate(-45deg);
}

.v2-site .neo-chat-kicker {
  margin: 0 0 10px;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.v2-site .neo-chat-dialog h3 {
  color: #f8fbff;
  font-size: 2rem;
  margin: 0 46px 10px 0;
}

.v2-site .neo-chat-intro {
  color: rgba(235, 245, 255, 0.72);
  margin: 0 0 24px;
}

.v2-site .neo-chat-form {
  display: grid;
  gap: 9px;
}

.v2-site .neo-chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 10px;
  border: 1px solid rgba(219, 234, 254, 0.24);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.38);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.v2-site .neo-chat-form textarea {
  width: 100%;
  min-height: 48px;
  max-height: 130px;
  border: 0;
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(2, 6, 23, 0.2);
  color: #f8fbff;
  font: inherit;
  outline: none;
  resize: vertical;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.v2-site .neo-chat-form textarea:focus {
  background: rgba(2, 6, 23, 0.3);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.v2-site .neo-chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(219, 234, 254, 0.58);
  border-radius: 16px;
  color: #0b3eea;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(191, 219, 254, 0.72) 46%, rgba(59, 130, 246, 0.5)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 30px rgba(37, 99, 235, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.v2-site .neo-chat-send:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 38px rgba(37, 99, 235, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.v2-site .neo-chat-send:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.v2-site .neo-chat-send svg {
  width: 18px;
  height: 18px;
}

.v2-site .neo-chat-status {
  min-height: 20px;
  margin: 0;
  color: rgba(235, 245, 255, 0.76);
  font-size: 0.88rem;
}

.v2-site .neo-chat-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.v2-site .neo-pulse {
  width: 11px;
  height: 11px;
  min-width: 11px;
  flex: 0 0 11px;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.5);
  animation: neoPulse 1.8s ease-out infinite;
}

@keyframes neoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.5);
  }

  100% {
    box-shadow: 0 0 0 14px rgba(103, 232, 249, 0);
  }
}

@media (max-width: 1100px) {
  .v2-site section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .v2-site .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .v2-site .neo-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .v2-site .neo-copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .v2-site .neo-card {
    max-width: 640px;
    margin: 0 auto;
  }
}

.v2-site .section-neo,
.v2-site .section-tech,
.v2-site .section-features,
.v2-site .section-pricing,
.v2-site .section-cta,
.v2-site .footer {
  background: transparent !important;
  border-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

.v2-site .section-tech {
  padding-top: 92px !important;
}

.v2-site .tech-label,
.v2-site .section-features .section-label,
.v2-site .section-pricing .section-label {
  color: #2563eb !important;
}

.v2-site .section-features .section-label {
  color: #93c5fd !important;
}

.v2-site .section-features {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 108px;
  background: transparent !important;
  isolation: isolate;
  --spotlight-size: 320px;
}

.v2-site .section-features::before {
  content: none;
}

.v2-site .section-features::after {
  content: none;
}

.v2-site .section-features .container {
  position: relative;
  max-width: 1120px;
}

.v2-site .section-features .section-label {
  color: rgba(219, 234, 254, 0.82) !important;
}

.v2-site .section-features h2 {
  color: #12203a !important;
  margin-left: auto;
  margin-right: auto;
}

.v2-site .features-grid {
  position: relative;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(236px, auto);
  gap: 24px;
  margin-top: 54px;
}

.v2-site .tech-title,
.v2-site .section-features h2,
.v2-site .section-pricing h2,
.v2-site .section-cta h2 {
  color: #17223a !important;
}

.v2-site .tech-ticker-wrap::before,
.v2-site .tech-ticker-wrap::after {
  content: none !important;
  display: none !important;
}

.v2-site .tech-logo-pill,
.v2-site .feature-card,
.v2-site .pricing-card,
.v2-site .pricing-trial {
  border-radius: var(--radius-lg) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(219, 234, 254, 0.44)) !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  box-shadow:
    0 22px 54px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(96, 165, 250, 0.12) inset !important;
}

.v2-site .tech-logo-pill {
  box-shadow:
    0 8px 18px rgba(37, 99, 235, 0.08),
    0 0 0 1px rgba(96, 165, 250, 0.1) inset !important;
}

.v2-site .feature-card:hover,
.v2-site .pricing-card:hover,
.v2-site .tech-logo-pill:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 68px rgba(37, 99, 235, 0.18),
    0 0 0 1px rgba(96, 165, 250, 0.2) inset !important;
}

.v2-site .tech-logo-pill:hover {
  box-shadow:
    0 12px 24px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(96, 165, 250, 0.18) inset !important;
}

.v2-site .feature-card {
  position: relative;
  overflow: hidden;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(219, 234, 254, 0.6) !important;
  border-radius: 18px !important;
  padding: 24px;
  --mx: 50%;
  --my: 50%;
  --spot-opacity: 0.18;
  --border-glow: rgba(147, 197, 253, 0.95);
  --border-glow-soft: rgba(125, 211, 252, 0.52);
  background:
    radial-gradient(260px 260px at var(--mx) var(--my), rgba(255, 255, 255, calc(var(--spot-opacity) * 0.22)), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(186, 230, 253, 0.5) 48%, rgba(96, 165, 250, 0.3)) !important;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    0 26px 54px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.34) inset;
  transform: translateY(0);
  touch-action: none;
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.v2-site .feature-card:nth-child(1),
.v2-site .feature-card:nth-child(5) {
  grid-column: span 6;
}

.v2-site .feature-card:nth-child(2),
.v2-site .feature-card:nth-child(3),
.v2-site .feature-card:nth-child(4) {
  grid-column: span 3;
}

.v2-site .feature-card:nth-child(6) {
  grid-column: span 3;
}

.v2-site .feature-card:nth-child(2) {
  --border-glow: rgba(56, 189, 248, 0.95);
  --border-glow-soft: rgba(125, 211, 252, 0.52);
}

.v2-site .feature-card:nth-child(4) {
  --border-glow: rgba(45, 212, 191, 0.88);
  --border-glow-soft: rgba(20, 184, 166, 0.44);
}

.v2-site .feature-card:nth-child(5) {
  --border-glow: rgba(167, 139, 250, 0.92);
  --border-glow-soft: rgba(139, 92, 246, 0.38);
}

.v2-site .feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  background:
    radial-gradient(240px 240px at var(--mx) var(--my), #ffffff, var(--border-glow) 26%, var(--border-glow-soft) 48%, transparent 72%) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--spot-opacity);
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.v2-site .feature-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -30px 54px rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

.v2-site .feature-card:hover {
  border-color: rgba(255, 255, 255, 0.86) !important;
  box-shadow:
    0 34px 78px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(191, 219, 254, 0.36) inset;
}

.v2-site .feature-card:hover {
  transform: translateY(-6px);
}

.v2-site .feature-card:hover::before {
  opacity: 1;
}

.v2-site .feature-card > * {
  position: relative;
  z-index: 1;
}

.v2-site .feature-icon {
  --skill-accent: #2563eb;
  --skill-accent-soft: rgba(37, 99, 235, 0.14);
  width: 62px;
  min-width: 62px;
  height: 62px;
  padding: 0;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), var(--skill-accent-soft)) !important;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--skill-accent);
  border-radius: 999px;
  box-shadow:
    0 18px 38px rgba(37, 99, 235, 0.16),
    0 0 0 1px rgba(96, 165, 250, 0.16) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -12px 24px rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  isolation: isolate;
}

.v2-site .feature-icon::before,
.v2-site .feature-icon::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.v2-site .feature-icon::before {
  inset: -9px;
  background: conic-gradient(from 150deg, transparent, var(--skill-accent-soft), transparent 62%);
  opacity: 0.88;
  z-index: -1;
}

.v2-site .feature-icon::after {
  right: 5px;
  top: 5px;
  width: 9px;
  height: 9px;
  background: var(--skill-accent);
  box-shadow: 0 0 18px var(--skill-accent);
}

.v2-site .feature-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 7px 12px rgba(37, 99, 235, 0.22));
}

.v2-site .feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 24px 48px rgba(37, 99, 235, 0.24),
    0 0 0 1px rgba(96, 165, 250, 0.2) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -12px 24px rgba(37, 99, 235, 0.1);
}

.v2-site .feature-icon,
.v2-site .feature-icon svg,
.v2-site .feature-icon::before {
  transition: transform 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.v2-site .feature-card:hover .feature-icon::before {
  opacity: 1;
  transform: rotate(42deg);
}

.v2-site .feature-card:hover .feature-icon svg {
  transform: scale(1.04);
}

.v2-site .feature-card h3,
.v2-site .pricing-plan,
.v2-site .pricing-price,
.v2-site .pricing-trial h3 {
  color: #17223a;
}

.v2-site .feature-card h3 {
  max-width: 13ch;
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.12;
}

.v2-site .feature-card:nth-child(1) h3,
.v2-site .feature-card:nth-child(5) h3 {
  max-width: none;
}

.v2-site .feature-card p,
.v2-site .pricing-desc,
.v2-site .pricing-cadence,
.v2-site .pricing-note,
.v2-site .pricing-trial p,
.v2-site .footer-brand p,
.v2-site .footer-bottom p,
.v2-site .footer-bottom small,
.v2-site .footer-col a,
.v2-site .footer-legal a,
.v2-site .footer-disclaimer {
  color: #5f6f89 !important;
}

.v2-site .feature-card p {
  max-width: 52ch;
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.62;
}

.v2-site .feature-card:nth-child(2) p,
.v2-site .feature-card:nth-child(3) p,
.v2-site .feature-card:nth-child(4) p,
.v2-site .feature-card:nth-child(6) p {
  line-height: 1.55;
}

.v2-site .pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.42) !important;
  box-shadow:
    0 30px 76px rgba(37, 99, 235, 0.2),
    0 0 0 1px rgba(96, 165, 250, 0.3) inset !important;
}

.v2-site .section-pricing {
  perspective: 1400px;
}

.v2-site .section-pricing .pricing-grid {
  perspective: 1400px;
}

.v2-site .pricing-grid.pricing-fan-ready .pricing-card {
  will-change: transform, opacity, filter;
  transition:
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s ease,
    filter 1s ease,
    box-shadow 0.32s ease;
}

@media (min-width: 901px) {
  .v2-site .pricing-grid.pricing-fan-ready:not(.is-pricing-open) .pricing-card {
    opacity: 0.72;
    filter: saturate(0.9) blur(0.2px);
  }

  .v2-site .pricing-grid.pricing-fan-ready:not(.is-pricing-open) .pricing-card:nth-child(1) {
    transform: translate3d(108%, 12px, -42px) rotate(-2.5deg) scale(0.94);
    z-index: 1;
  }

  .v2-site .pricing-grid.pricing-fan-ready:not(.is-pricing-open) .pricing-card:nth-child(2) {
    opacity: 0.94;
    transform: translate3d(0, 0, 18px) scale(1.02);
    z-index: 3;
  }

  .v2-site .pricing-grid.pricing-fan-ready:not(.is-pricing-open) .pricing-card:nth-child(3) {
    transform: translate3d(-108%, 12px, -42px) rotate(2.5deg) scale(0.94);
    z-index: 2;
  }

  .v2-site .pricing-grid.pricing-fan-ready.is-pricing-open .pricing-card:nth-child(1) {
    transition-delay: 0.08s;
  }

  .v2-site .pricing-grid.pricing-fan-ready.is-pricing-open .pricing-card:nth-child(2) {
    transition-delay: 0.22s;
  }

  .v2-site .pricing-grid.pricing-fan-ready.is-pricing-open .pricing-card:nth-child(3) {
    transition-delay: 0.36s;
  }
}

.v2-site .pricing-grid.pricing-fan-ready.is-pricing-open .pricing-card {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.v2-site .pricing-badge {
  background: #2563eb !important;
}

.v2-site .section-pricing .btn-primary,
.v2-site .section-pricing .btn-outline,
.v2-site .section-cta .btn-primary {
  background: #1d4ed8 !important;
  color: #ffffff !important;
  border-color: #1d4ed8 !important;
}

.v2-site .section-pricing .btn-outline {
  background: rgba(255, 255, 255, 0.42) !important;
  color: #1d4ed8 !important;
  border-color: rgba(37, 99, 235, 0.32) !important;
}

.v2-site .section-cta {
  text-align: center;
}

.v2-site .section-cta p {
  color: #5f6f89 !important;
}

.v2-site .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-width: 1px;
  transform: translateZ(0);
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.v2-site .btn::before,
.v2-site .btn::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.v2-site .btn::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.10) 38%, rgba(59, 130, 246, 0.08) 100%);
  opacity: 0.72;
}

.v2-site .btn::after {
  width: 46%;
  height: 180%;
  top: -40%;
  left: -64%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  filter: blur(8px);
  opacity: 0;
  transform: rotate(18deg);
  transition: left 0.55s ease, opacity 0.3s ease;
}

.v2-site .btn:hover {
  transform: translateY(-2px);
}

.v2-site .btn:hover::after {
  left: 112%;
  opacity: 0.72;
}

.v2-site .btn:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.92);
  outline-offset: 3px;
}

.v2-site .btn-primary,
.v2-site .nav-links a.btn-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 242, 255, 0.72) 44%, rgba(147, 197, 253, 0.38) 100%) !important;
  color: #1737d1 !important;
  border-color: rgba(255, 255, 255, 0.88) !important;
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.24),
    0 0 34px rgba(147, 197, 253, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(96, 165, 250, 0.32),
    inset 8px 0 18px rgba(255, 255, 255, 0.18),
    inset -8px 0 18px rgba(96, 165, 250, 0.12) !important;
}

.v2-site .btn-primary:hover,
.v2-site .nav-links a.btn-primary:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(239, 247, 255, 0.84) 44%, rgba(147, 197, 253, 0.46) 100%) !important;
  color: #0f2bb7 !important;
  border-color: rgba(255, 255, 255, 1) !important;
  box-shadow:
    0 22px 56px rgba(37, 99, 235, 0.30),
    0 0 42px rgba(147, 197, 253, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(96, 165, 250, 0.38),
    inset 10px 0 22px rgba(255, 255, 255, 0.22),
    inset -10px 0 22px rgba(96, 165, 250, 0.16) !important;
}

.v2-site .btn-outline {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(147, 197, 253, 0.08) 48%, rgba(15, 23, 42, 0.16)) !important;
  color: rgba(248, 251, 255, 0.92) !important;
  border-color: rgba(191, 219, 254, 0.42) !important;
  box-shadow:
    0 16px 38px rgba(2, 6, 23, 0.20),
    0 0 24px rgba(96, 165, 250, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(96, 165, 250, 0.20) !important;
}

.v2-site .btn-outline:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.20), rgba(147, 197, 253, 0.14) 48%, rgba(37, 99, 235, 0.14)) !important;
  color: #ffffff !important;
  border-color: rgba(219, 234, 254, 0.66) !important;
  box-shadow:
    0 20px 46px rgba(2, 6, 23, 0.24),
    0 0 30px rgba(96, 165, 250, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -1px 0 rgba(96, 165, 250, 0.28) !important;
}

.v2-site .section-pricing .btn-primary,
.v2-site .section-cta .btn-primary {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.86), rgba(96, 165, 250, 0.56) 48%, rgba(255, 255, 255, 0.24) 100%) !important;
  color: #ffffff !important;
  border-color: rgba(219, 234, 254, 0.70) !important;
  text-shadow: 0 1px 10px rgba(15, 23, 42, 0.22);
  box-shadow:
    0 22px 54px rgba(37, 99, 235, 0.24),
    0 0 38px rgba(96, 165, 250, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -1px 0 rgba(29, 78, 216, 0.34),
    inset 10px 0 24px rgba(255, 255, 255, 0.14) !important;
}

.v2-site .section-pricing .btn-outline {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(219, 234, 254, 0.38) 48%, rgba(96, 165, 250, 0.16) 100%) !important;
  color: #1d4ed8 !important;
  border-color: rgba(96, 165, 250, 0.42) !important;
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(96, 165, 250, 0.24) !important;
}

.v2-site .footer-logo img {
  filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.14));
}

.v2-site .footer {
  padding: 72px 24px 40px;
}

.v2-site .footer-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(219, 234, 254, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 30px 76px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(96, 165, 250, 0.12) inset;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.v2-site .footer-inner::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), transparent 66%);
  pointer-events: none;
}

.v2-site .footer-inner > * {
  position: relative;
  z-index: 1;
}

.v2-site .footer-col h4 {
  color: #2563eb;
}

.v2-site .footer-brand p,
.v2-site .footer-brand .footer-meta {
  margin-left: auto;
  margin-right: auto;
}

.v2-site .footer-social,
.v2-site .footer-col ul,
.v2-site .footer-legal {
  justify-content: center;
}

.v2-site .footer-col ul {
  align-items: center;
}

.v2-site .footer-col a:hover,
.v2-site .footer-legal a:hover {
  color: #1d4ed8 !important;
}

.v2-site .footer-social a {
  color: #1d4ed8;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(191, 219, 254, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(96, 165, 250, 0.14) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.v2-site .footer-social a:hover {
  color: #0f2bb7;
  border-color: rgba(96, 165, 250, 0.52);
  box-shadow:
    0 20px 42px rgba(37, 99, 235, 0.22),
    0 0 0 1px rgba(96, 165, 250, 0.2) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.v2-site .footer-bottom {
  border-top-color: rgba(96, 165, 250, 0.22);
  justify-content: center;
  text-align: center;
}

/* ==================== LEGAL PAGES: V2 GLASS SYSTEM ==================== */
body.v2-site.legal-page {
  background:
    linear-gradient(180deg,
      #070b18 0%,
      #09142f 24%,
      #164174 46%,
      #9dcaf2 68%,
      #dceeff 100%);
}

.legal-page .paiq-shader-canvas {
  opacity: 0.72;
}

.legal-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 24px 60px;
  background: transparent !important;
  border: 0 !important;
}

.legal-page .page-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: min(980px, 92vw);
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.22), transparent 68%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 64px;
  align-items: end;
}

.legal-hero-copy {
  max-width: 720px;
}

.legal-page .page-hero .section-label {
  color: #bfdbfe;
}

.legal-page .page-hero h1 {
  margin-bottom: 18px;
  color: #ffffff;
}

.legal-page .page-hero p:not(.section-label) {
  max-width: 620px;
  color: rgba(235, 245, 255, 0.76);
  font-size: 1.1rem;
  line-height: 1.7;
}

.legal-hero-card,
.legal-page .prose,
.legal-page .prose-date {
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.legal-hero-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(59, 130, 246, 0.08)),
    rgba(8, 15, 34, 0.42);
  border: 1px solid rgba(219, 234, 254, 0.28);
  box-shadow:
    0 30px 76px rgba(2, 6, 23, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.legal-hero-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(219, 234, 254, 0.16);
}

.legal-hero-card div:first-child {
  padding-top: 0;
}

.legal-hero-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-hero-card span {
  color: rgba(235, 245, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero-card strong,
.legal-hero-card a {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: right;
}

.legal-page .prose {
  max-width: 920px;
  margin: 0 auto 88px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(219, 234, 254, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 86px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(96, 165, 250, 0.12) inset;
}

.legal-page .prose-date {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 16px;
  color: #64748b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.legal-page .prose h2 {
  color: #17223a;
  border-bottom-color: rgba(96, 165, 250, 0.22);
}

.legal-page .prose h3,
.legal-page .prose strong {
  color: #17223a;
}

.legal-page .prose p,
.legal-page .prose li {
  color: #475569;
}

.legal-page .prose a {
  color: #1d4ed8;
  font-weight: 700;
}

.legal-page .subprocessor-table-wrap {
  width: 100%;
  margin: 24px 0 36px;
  overflow-x: auto;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.legal-page .subprocessor-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.88rem;
}

.legal-page .subprocessor-table th,
.legal-page .subprocessor-table td {
  box-sizing: border-box;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(96, 165, 250, 0.18);
  color: #475569;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.legal-page .subprocessor-table th:nth-child(1),
.legal-page .subprocessor-table td:nth-child(1) {
  width: 17%;
}

.legal-page .subprocessor-table th:nth-child(2),
.legal-page .subprocessor-table td:nth-child(2) {
  width: 24%;
}

.legal-page .subprocessor-table th:nth-child(3),
.legal-page .subprocessor-table td:nth-child(3) {
  width: 27%;
}

.legal-page .subprocessor-table th:nth-child(4),
.legal-page .subprocessor-table td:nth-child(4) {
  width: 15%;
}

.legal-page .subprocessor-table th:nth-child(5),
.legal-page .subprocessor-table td:nth-child(5) {
  width: 17%;
}

.legal-page .subprocessor-table th {
  color: #17223a;
  font-weight: 800;
  background: rgba(219, 234, 254, 0.58);
}

.legal-page .subprocessor-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-page .footer {
  margin-top: 0;
}

body.v2-site.contact-page {
  background:
    linear-gradient(180deg,
      #070b18 0%,
      #081127 24%,
      #102b5e 52%,
      #d9ecff 100%);
  overflow-x: hidden;
}

.contact-page .paiq-shader-canvas {
  opacity: 0.42;
}

.contact-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 24px 70px;
  background:
    radial-gradient(circle at 18% 8%, rgba(124, 158, 248, 0.36), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(147, 197, 253, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(7, 11, 24, 0.96), rgba(8, 17, 39, 0.82)) !important;
  border: 0 !important;
}

.contact-page .page-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: min(1080px, 94vw);
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.24), transparent 68%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 64px;
  align-items: end;
}

.contact-hero-copy {
  max-width: 780px;
}

.contact-page .page-hero .section-label,
.contact-page .contact-info > .section-label,
.contact-page .contact-form-wrap > .section-label {
  color: #bfdbfe;
}

.contact-page .page-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #ffffff !important;
}

.contact-page .page-hero p:not(.section-label) {
  max-width: 650px;
  color: rgba(235, 245, 255, 0.8) !important;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-hero-card,
.contact-page .contact-info,
.contact-page .contact-form-wrap,
.contact-page .faq-mini {
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.contact-hero-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(59, 130, 246, 0.1)),
    rgba(8, 15, 34, 0.62);
  border: 1px solid rgba(219, 234, 254, 0.28);
  box-shadow:
    0 30px 76px rgba(2, 6, 23, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.contact-hero-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(219, 234, 254, 0.16);
}

.contact-hero-card div:first-child {
  padding-top: 0;
}

.contact-hero-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-hero-card span {
  color: rgba(235, 245, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-card strong,
.contact-hero-card a {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: right;
}

.contact-page .contact-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.76fr);
  gap: clamp(28px, 5vw, 56px);
  max-width: 1120px;
  padding: 38px 24px 96px;
  align-items: start;
}

.contact-page .contact-info,
.contact-page .contact-form-wrap {
  border-radius: 24px;
  border: 1px solid rgba(219, 234, 254, 0.24);
  box-shadow:
    0 34px 86px rgba(2, 6, 23, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.contact-page .contact-info {
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(circle at 12% 0%, rgba(147, 197, 253, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.74), rgba(15, 45, 92, 0.5));
}

.contact-page .contact-info h2 {
  margin-bottom: 14px;
  color: #f8fbff;
}

.contact-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(235, 245, 255, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-page .contact-item {
  position: relative;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(219, 234, 254, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-page .contact-icon {
  color: #1d4ed8;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(219, 234, 254, 0.52));
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 16px;
  box-shadow:
    0 14px 34px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.contact-page .contact-item h4 {
  color: #93c5fd;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact-item p {
  color: #f8fbff;
  font-weight: 700;
}

.contact-page .contact-item .contact-item-note {
  margin-top: 6px;
  color: rgba(235, 245, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-page .contact-item a {
  color: #bfdbfe;
}

.contact-page .faq-mini {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(219, 234, 254, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-page .faq-mini h3 {
  color: #f8fbff;
}

.contact-page .faq-item {
  border-bottom-color: rgba(219, 234, 254, 0.18);
}

.contact-page .faq-q {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f8fbff;
  font-family: var(--font-body);
  text-align: left;
}

.contact-page .faq-q::after {
  color: #2563eb;
}

.contact-page .faq-q[aria-expanded="true"] {
  color: #1d4ed8;
}

.contact-page .faq-q[aria-expanded="true"]::after {
  content: "-";
}

.contact-page .faq-a {
  display: none;
  padding-top: 8px;
  color: rgba(235, 245, 255, 0.68);
}

.contact-page .faq-a.is-open {
  display: block;
}

.contact-page .contact-form-wrap {
  position: sticky;
  top: 96px;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 18% 0%, rgba(147, 197, 253, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.76), rgba(15, 45, 92, 0.54));
}

.contact-page .contact-form-wrap h3 {
  margin-bottom: 24px;
  color: #f8fbff;
}

.contact-page .form-group label {
  color: #bfdbfe;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .form-group input,
.contact-page .form-group textarea,
.contact-page .form-group select {
  min-height: 48px;
  color: #17223a;
  background: rgba(241, 247, 255, 0.94);
  border-color: rgba(191, 219, 254, 0.34);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus,
.contact-page .form-group select:focus {
  border-color: rgba(37, 99, 235, 0.58);
  box-shadow:
    0 0 0 4px rgba(147, 197, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-page .form-group textarea {
  min-height: 140px;
}

.contact-page .form-note {
  color: rgba(235, 245, 255, 0.66);
  text-align: center;
}

.contact-page .contact-submit {
  width: 100%;
  justify-content: center;
}

.contact-page .contact-success {
  display: none;
  padding: 20px 0;
  text-align: center;
}

.contact-page .contact-success-icon {
  color: #1d4ed8;
}

.contact-page .contact-success h3 {
  margin-bottom: 8px;
}

.contact-page .contact-success p {
  color: rgba(235, 245, 255, 0.68);
}

.contact-page .footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .v2-site .hero .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .v2-site .hero {
    min-height: auto;
    padding-top: 92px;
    text-align: center;
  }

  .v2-site .hero h1,
  .v2-site .hero-sub,
  .v2-site .hero-note,
  .v2-site .hero-copy,
  .v2-site .hero-animation-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .v2-site .hero-actions {
    justify-content: center;
  }

  .v2-site .hero-kicker {
    justify-content: center;
  }

  .v2-site .hero-skill-strip {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .v2-site .neo-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .v2-site .neo-copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .v2-site .neo-card {
    max-width: 680px;
    margin: 0 auto;
  }

  .v2-site .section-solution h2,
  .v2-site .section-solution .step-content h3 {
    color: #f8fbff;
  }

  .v2-site .section-solution .step-content p,
  .v2-site .section-solution p[style] {
    color: rgba(245, 249, 255, 0.78) !important;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-hero-card {
    max-width: 520px;
  }

  .contact-hero-inner,
  .contact-page .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .contact-hero-copy,
  .contact-hero-card,
  .contact-page .contact-info,
  .contact-page .contact-form-wrap {
    min-width: 0;
    width: 100%;
  }

  .contact-hero-card {
    max-width: 520px;
  }

  .contact-page .contact-form-wrap {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  body.v2-site::before {
    background-size: 900px 560px;
    background-position: center 28vh;
    opacity: 0.42;
  }

  .v2-site h1 {
    font-size: 2.45rem;
  }

  .v2-site h2 {
    font-size: 2rem;
  }

  .v2-site .nav-links.open {
    background: rgba(8, 11, 24, 0.94) !important;
    border-bottom: 1px solid rgba(147, 197, 253, 0.18);
  }

  .v2-site .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .v2-site .btn {
    width: 100%;
    justify-content: center;
  }

  .v2-site .cookie-consent {
    width: calc(100vw - 24px);
    left: 50%;
    right: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
  }

  .v2-site .cookie-consent-copy {
    font-size: 0.88rem;
  }

  .v2-site .cookie-consent-actions {
    width: 100%;
  }

  .v2-site .cookie-consent-btn {
    flex: 1;
    padding: 0 12px;
  }

  .legal-page .page-hero {
    padding: 92px 18px 42px;
  }

  .legal-page .page-hero h1 {
    font-size: 2.35rem;
  }

  .legal-page .page-hero p:not(.section-label) {
    font-size: 1rem;
  }

  .legal-hero-card {
    padding: 16px;
  }

  .legal-hero-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .legal-hero-card strong,
  .legal-hero-card a {
    text-align: left;
  }

  .legal-page .prose {
    margin: 0 18px 64px;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .legal-page .subprocessor-table-wrap {
    margin: 20px 0 34px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-page .subprocessor-table,
  .legal-page .subprocessor-table thead,
  .legal-page .subprocessor-table tbody,
  .legal-page .subprocessor-table tr,
  .legal-page .subprocessor-table th,
  .legal-page .subprocessor-table td {
    display: block;
    width: 100% !important;
    min-width: 0;
  }

  .legal-page .subprocessor-table {
    font-size: 0.94rem;
  }

  .legal-page .subprocessor-table thead {
    position: absolute;
    width: 1px !important;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .legal-page .subprocessor-table tbody {
    display: grid;
    gap: 14px;
  }

  .legal-page .subprocessor-table tr {
    padding: 16px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(219, 234, 254, 0.42)),
      rgba(255, 255, 255, 0.44);
    box-shadow:
      0 18px 42px rgba(37, 99, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .legal-page .subprocessor-table td {
    display: grid;
    grid-template-columns: minmax(0, 104px) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.16);
    color: #25324b;
    line-height: 1.45;
  }

  .legal-page .subprocessor-table td:first-child {
    padding-top: 0;
  }

  .legal-page .subprocessor-table td:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .legal-page .subprocessor-table td::before {
    content: attr(data-label);
    color: #2563eb;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .contact-page .page-hero {
    padding: 92px 18px 42px;
  }

  .contact-page .page-hero h1 {
    font-size: 2.35rem;
    max-width: min(100%, 298px);
  }

  .contact-page .page-hero p:not(.section-label) {
    max-width: min(100%, 298px);
    font-size: 1rem;
  }

  .contact-hero-actions {
    flex-direction: column;
    max-width: min(100%, 298px);
  }

  .contact-hero-actions .btn {
    max-width: 100%;
  }

  .contact-hero-card {
    padding: 16px;
    max-width: min(100%, 298px);
  }

  .contact-hero-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-hero-card strong,
  .contact-hero-card a {
    text-align: left;
  }

  .contact-page .contact-grid {
    padding: 22px 18px 72px;
  }

  .contact-page .contact-info,
  .contact-page .contact-form-wrap {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .contact-page .contact-item {
    padding: 16px;
  }

  .contact-page .faq-mini {
    padding: 20px;
  }

  .v2-site .section-neo {
    padding: 82px 18px 76px;
  }

  .v2-site .neo-card {
    grid-template-columns: 1fr;
    padding: 20px;
    text-align: center;
  }

  .v2-site .neo-portrait-wrap {
    width: min(240px, 68vw);
    margin: 0 auto;
  }

  .v2-site .neo-widget-slot {
    justify-content: center;
    width: 100%;
  }

  .v2-site .neo-chat-dialog {
    min-height: min(680px, calc(100vh - 36px));
    padding: 26px 18px 18px;
  }

  .v2-site .neo-chat-composer {
    grid-template-columns: 1fr;
  }

  .v2-site .neo-chat-send {
    width: 100%;
  }

  .v2-site .footer-brand {
    text-align: center;
  }

  .v2-site .footer-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .v2-site .footer-brand p,
  .v2-site .footer-brand .footer-meta {
    margin-left: auto;
    margin-right: auto;
  }

  .v2-site .footer-social {
    justify-content: center;
  }

  .v2-site .footer-col {
    text-align: center;
  }

  .v2-site .footer-col ul {
    align-items: center;
  }

  .v2-site .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .v2-site .footer-legal {
    justify-content: center;
  }

  .v2-site .footer-disclaimer {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .v2-site .glass-card-container {
    width: 152px !important;
    height: 118px !important;
  }
}

@media (max-width: 900px) {
  .v2-site .section-features {
    padding: 82px 18px 88px;
  }

  .v2-site .section-features::before {
    background-size: auto;
  }

  .v2-site .section-features::after {
    opacity: 0.72;
  }

  .v2-site .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 18px;
  }

  .v2-site .feature-card,
  .v2-site .feature-card:nth-child(1),
  .v2-site .feature-card:nth-child(2),
  .v2-site .feature-card:nth-child(3),
  .v2-site .feature-card:nth-child(4),
  .v2-site .feature-card:nth-child(5),
  .v2-site .feature-card:nth-child(6) {
    grid-column: auto;
    min-height: 230px;
  }

  .v2-site .feature-card:nth-child(1):hover,
  .v2-site .feature-card:nth-child(2):hover,
  .v2-site .feature-card:nth-child(3):hover,
  .v2-site .feature-card:nth-child(4):hover,
  .v2-site .feature-card:nth-child(5):hover,
  .v2-site .feature-card:nth-child(6):hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  .v2-site .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v2-site .feature-card {
    min-height: auto;
    padding: 22px;
    justify-content: flex-start;
  }

  .v2-site .feature-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-site .feature-card,
  .v2-site .feature-card::before,
  .v2-site .feature-icon,
  .v2-site .feature-icon svg,
  .v2-site .feature-icon::before {
    transition: none;
  }

  .v2-site .feature-card:nth-child(2),
  .v2-site .feature-card:nth-child(5),
  .v2-site .feature-card:hover,
  .v2-site .feature-card:nth-child(1):hover,
  .v2-site .feature-card:nth-child(2):hover,
  .v2-site .feature-card:nth-child(3):hover,
  .v2-site .feature-card:nth-child(4):hover,
  .v2-site .feature-card:nth-child(5):hover,
  .v2-site .feature-card:nth-child(6):hover {
    transform: none;
  }
}
