/* ===== HOME PAGE STYLES — Linear system ===== */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--space-24);
  padding-bottom: var(--space-20);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 14s ease-in-out infinite alternate,
             heroGlowPulse 6s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, 1%); }
  100% { transform: scale(1.14) translate(-2.5%, -1.5%); }
}

@keyframes heroGlowPulse {
  0%, 100% { filter: brightness(0.9) saturate(1.15); }
  50%      { filter: brightness(1.15) saturate(1.4); }
}

/* Drifting spotlight glow */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle 450px at 50% 50%,
    rgba(124, 140, 255, 0.40) 0%,
    rgba(99, 102, 241, 0.18) 30%,
    transparent 65%);
  mix-blend-mode: screen;
  animation: heroSpotlightDrift 15s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

@keyframes heroSpotlightDrift {
  0%   { transform: translate(-25%, -15%); }
  25%  { transform: translate(20%, -10%); }
  50%  { transform: translate(25%, 15%); }
  75%  { transform: translate(-15%, 20%); }
  100% { transform: translate(-25%, -15%); }
}

/* Floating particles — sit ABOVE the dark overlay so they read on the page */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background: #a5b4ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #7c8cff, 0 0 20px rgba(124, 140, 255, 0.75);
  animation: heroParticleFloat linear infinite;
}

@keyframes heroParticleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}

/* Respect reduced motion — dampen image/spotlight only; let particles fade gently */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .hero-spotlight {
    animation: none !important;
  }
}

/* Linear dark overlay — deep near-black */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 10, 0.72) 0%,
    rgba(8, 9, 10, 0.52) 40%,
    rgba(8, 9, 10, 0.82) 80%,
    rgba(8, 9, 10, 0.98) 100%
  );
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(4, 8, 20, 0.78) 0%,
    rgba(4, 8, 20, 0.62) 40%,
    rgba(4, 8, 20, 0.86) 80%,
    rgba(4, 8, 20, 0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}

/* Hero headline — Linear aggressive tracking */
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 590;
  font-feature-settings: "cv01", "ss03";
  color: #fff;
  line-height: 1.05;
  letter-spacing: var(--ls-hero);
  margin-top: var(--space-2);
}

.hero-subline {
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  max-width: 60ch;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-2);
}

/* Hero stats bar — Linear frosted glass */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 590;
  font-feature-settings: "cv01", "ss03";
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: var(--ls-display);
}

.hero-stat-label {
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  max-width: 14ch;
  line-height: 1.3;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.28);
  font-size: var(--text-xs);
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ── TRUST BAR ── */
.trust-bar {
  padding-block: var(--space-10);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface-2);
}

.trust-bar-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 590;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
}

.trust-logos span {
  font-size: var(--text-sm);
  font-weight: 510;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.trust-logos span:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-primary-highlight);
}

/* ── MISSION ── */
.mission {
  background: var(--color-bg);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mission-text { max-width: 56ch; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 590;
  font-feature-settings: "cv01", "ss03";
  line-height: 1.1;
  letter-spacing: var(--ls-display);
  color: var(--color-text);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.75;
  margin-top: var(--space-4);
}

.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-header .badge      { margin-bottom: var(--space-4); }
.section-header .section-title { margin-bottom: 0; }

.mission-lead {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.mission-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.mission-body strong { color: var(--color-text); font-weight: 510; }

.mission-visual {
  position: relative;
}

.mission-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Mission floating card — Linear surface */
.mission-card {
  position: absolute;
  bottom: calc(-1 * var(--space-6));
  left: calc(-1 * var(--space-8));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  max-width: 300px;
}

.mission-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-success-highlight);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-card-title {
  font-size: var(--text-sm);
  font-weight: 590;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.mission-card-body {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── AI IMPACT ── */
.ai-impact {
  background: var(--color-surface-2);
}

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

/* Linear card: very subtle surface, precise border */
.impact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-interactive),
    transform  var(--transition-interactive),
    border-color var(--transition-fast);
}

.impact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.impact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.impact-card h3 {
  font-size: var(--text-lg);
  font-weight: 590;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: var(--ls-heading);
}

.impact-card p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.impact-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  max-width: none;
}

.impact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ── FULL BLEED ── */
.full-bleed-section {
  position: relative;
  height: clamp(300px, 40vw, 520px);
  overflow: hidden;
}

.full-bleed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,9,10,0.88) 0%, rgba(8,9,10,0.42) 60%, rgba(8,9,10,0.12) 100%);
  display: flex;
  align-items: center;
}

.full-bleed-quote {
  max-width: 600px;
}

.full-bleed-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 510;
  color: #fff;
  line-height: 1.4;
  margin-bottom: var(--space-4);
  max-width: 50ch;
  letter-spacing: var(--ls-heading);
}

.full-bleed-quote cite {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  font-style: normal;
}

/* ── PROCESS ── */
.process {
  background: var(--color-bg);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
}

.process-connector {
  width: 1px;
  height: var(--space-6);
  background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%);
  margin-left: 31px;
  opacity: 0.25;
}

/* Step number — Linear indigo circle */
.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 590;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(94,106,210,0.35);
}

.step-content h3 {
  font-size: var(--text-lg);
  font-weight: 590;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  padding-top: var(--space-3);
  letter-spacing: var(--ls-heading);
}

.step-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.step-duration {
  font-size: var(--text-xs);
  font-weight: 590;
  color: var(--color-primary);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--color-surface-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-interactive),
    transform  var(--transition-interactive),
    border-color var(--transition-fast);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

.testimonial-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 590;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 590;
  color: var(--color-text);
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ── STATS — deep near-black band ── */
.stats-section {
  background: #08090a;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 590;
  font-feature-settings: "cv01", "ss03";
  color: #fff;
  line-height: 1;
  letter-spacing: var(--ls-display);
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.38);
  max-width: 14ch;
  text-align: center;
  line-height: 1.3;
}

/* ── CTA SECTION — Linear indigo gradient ── */
.cta-section {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.cta-inner {
  background: linear-gradient(135deg, #0f1011 0%, #191a1b 100%);
  border: 1px solid rgba(94,106,210,0.25);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-12), 6vw, var(--space-20));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(94,106,210,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-4);
  background: rgba(94,106,210,0.15);
  border: 1px solid rgba(94,106,210,0.35);
  border-radius: var(--radius-full);
  color: #828fff;
  font-size: var(--text-xs);
  font-weight: 590;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 590;
  font-feature-settings: "cv01", "ss03";
  color: #fff;
  max-width: 18ch;
  line-height: 1.1;
  letter-spacing: var(--ls-display);
}

.cta-body {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  max-width: 56ch;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-footnote {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  max-width: none;
}

/* ── RESOURCE BANNER ── */
.resource-banner {
  padding-block: var(--space-6);
  background: linear-gradient(90deg, #08090a 0%, #0f1011 100%);
  border-top: 1px solid rgba(94,106,210,0.18);
  border-bottom: 1px solid rgba(94,106,210,0.18);
}

.resource-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.resource-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-banner-text {
  flex: 1;
  min-width: 200px;
}

.resource-banner-label {
  font-size: 10px;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.resource-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 590;
  color: #fff;
  margin-bottom: var(--space-1);
  line-height: 1.3;
  letter-spacing: var(--ls-heading);
}

.resource-banner-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  line-height: 1.5;
}

.resource-banner-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .mission-inner        { grid-template-columns: 1fr; }
  .mission-visual       { order: -1; }
  .mission-card         { left: var(--space-4); bottom: calc(-1 * var(--space-4)); }
  .impact-grid          { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .hero-stat-divider    { display: none; }
  .hero-stats           { gap: var(--space-6); }
}

@media (max-width: 600px) {
  .hero-headline        { font-size: var(--text-2xl); }
  .hero-ctas            { flex-direction: column; width: 100%; }
  .hero-ctas .btn       { width: 100%; justify-content: center; }
  .stats-row            { gap: var(--space-6); }
  .stat-divider         { display: none; }
  .cta-actions          { flex-direction: column; width: 100%; }
  .cta-actions .btn     { width: 100%; justify-content: center; }
  .full-bleed-quote blockquote { font-size: var(--text-lg); }
}

/* ── DASHBOARD PREVIEW SECTION ─────────────────────────────────────────────── */
.dashboard-preview-section {
  padding: var(--space-20) 0;
  background: var(--color-surface-raised, #0d0d1a);
}
.dashboard-preview-section .section-title { margin-bottom: var(--space-4); }
.dashboard-iframe-wrap {
  margin: var(--space-8) auto 0;
  max-width: 960px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  background: #0a0a14;
}
.dashboard-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: none;
}
.dashboard-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  max-width: 860px;
  margin-inline: auto;
}
.dashboard-benefit { text-align: center; }
.dashboard-benefit-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text, #f0f0f0);
  margin-bottom: var(--space-2);
}
.dashboard-benefit p { font-size: var(--text-sm); color: var(--color-text-muted, #9ca3af); line-height: 1.6; }

/* ── ARIA SECTION ───────────────────────────────────────────────────────────── */
.aria-section {
  padding: var(--space-20) 0;
  background: var(--color-bg, #080810);
}
.aria-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.aria-body { color: var(--color-text-muted, #9ca3af); line-height: 1.7; }
.aria-examples {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.aria-quote {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 6px;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: #c4b5fd;
  font-style: italic;
}
.aria-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}
.aria-pill {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: var(--text-xs, 12px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.aria-price {
  font-size: var(--text-sm);
  color: var(--color-text-muted, #9ca3af);
  margin-top: var(--space-3);
}
/* device card */
.aria-device-card {
  background: #0d0918;
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 18px;
  padding: var(--space-6);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,58,237,0.1);
}
.aria-device-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.aria-orb-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.aria-orb {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a78bfa, #7c3aed);
  animation: aria-pulse 2.4s ease-in-out infinite;
}
.aria-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.4);
  animation: aria-ring 2.4s ease-in-out infinite;
}
.aria-orb-ring-2 { inset: -30%; border-color: rgba(124,58,237,0.2); animation-delay: 0.6s; }
@keyframes aria-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.92)} }
@keyframes aria-ring  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.15)} }
.aria-device-label {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(167,139,250,0.7);
}
.aria-chat { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-4); }
.aria-bubble {
  padding: var(--space-2) var(--space-3);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 88%;
}
.aria-bubble-user {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.aria-bubble-ai {
  background: rgba(124,58,237,0.18);
  color: #c4b5fd;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.aria-status-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  color: rgba(124,58,237,0.6);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}
.aria-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  animation: aria-blink 1.2s ease-in-out infinite;
}
@keyframes aria-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── SERVICES TIERS SECTION ─────────────────────────────────────────────────── */
.services-tiers-section {
  padding: var(--space-20) 0;
  background: var(--color-surface-raised, #0d0d1a);
}
.services-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.services-tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--space-6);
}
.services-tier.tier-featured {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.07);
}
.tier-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold, #f5a623);
  margin-bottom: var(--space-3);
}
.tier-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text, #f0f0f0);
  margin-bottom: var(--space-2);
}
.tier-desc { font-size: var(--text-sm); color: var(--color-text-muted, #9ca3af); margin-bottom: var(--space-4); }
.tier-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.tier-items li {
  font-size: var(--text-sm);
  color: var(--color-text, #e5e7eb);
  padding-left: var(--space-5);
  position: relative;
}
.tier-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold, #f5a623);
  font-weight: 700;
}

/* ── OWNERSHIP MODELS SECTION ───────────────────────────────────────────────── */
.ownership-section {
  padding: var(--space-20) 0;
  background: var(--color-bg, #080810);
}
.ownership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.ownership-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--space-6);
}
.ownership-card-featured {
  border-color: rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.05);
}
.ownership-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text, #f0f0f0);
  margin-bottom: var(--space-2);
}
.ownership-card p { font-size: var(--text-sm); color: var(--color-text-muted, #9ca3af); margin-bottom: var(--space-4); line-height: 1.6; }
.ownership-detail {
  font-size: 13px;
  color: var(--color-text-muted, #9ca3af);
  margin-bottom: var(--space-1);
}
.ownership-detail span { font-weight: 600; color: var(--color-text, #e5e7eb); }
.ownership-price {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-gold, #f5a623);
}

/* ── NEW SECTION RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .aria-inner             { grid-template-columns: 1fr; }
  .services-tiers-grid    { grid-template-columns: 1fr; }
  .ownership-grid         { grid-template-columns: 1fr; }
  .dashboard-benefits     { grid-template-columns: 1fr; }
  .dashboard-iframe-wrap iframe { height: 360px; }
}
