@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --v3-gradient: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
  --v3-gradient-hero: linear-gradient(135deg, #0099ff 0%, #0055ff 100%);
  --v3-primary: #007aff;
  --v3-accent: #00c6ff;
  --v3-text-primary: #1a1f2e;
  --v3-text-secondary: #5a6175;
  --v3-text-light: #8b92a7;
  --v3-white: #ffffff;
  --v3-dark-start: #1a1f2e;
  --v3-dark-end: #2d3548;
  --v3-radius-sm: 12px;
  --v3-radius-md: 16px;
  --v3-radius-lg: 24px;
  --v3-radius-xl: 32px;
  --v3-radius-pill: 50px;
  --v3-font: 'Inter', 'SF Pro Display', 'Segoe UI', 'Roboto', system-ui, sans-serif;
  --v3-section-py: clamp(80px, 10vw, 140px);
  --v3-section-px: clamp(20px, 4vw, 48px);
  --v3-max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--v3-font);
  background: var(--v3-gradient-hero);
  color: var(--v3-text-primary);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
  min-block-size: 100dvh;
}

.v3-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--v3-gradient-hero);
}

.v3-bg::before,
.v3-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.v3-bg::before {
  inline-size: 50vw;
  block-size: 50vw;
  top: -15vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.v3-bg::after {
  inline-size: 40vw;
  block-size: 40vw;
  left: -10vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.15), transparent 70%);
}

/* ===== HEADER ===== */
.v3-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.v3-header.scrolled {
  background: rgba(0, 102, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.v3-header-inner {
  max-inline-size: var(--v3-max-width);
  margin-inline: auto;
  padding: 14px var(--v3-section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v3-logo {
  font-family: var(--v3-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--v3-white);
  letter-spacing: -0.04em;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v3-logo-icon {
  inline-size: 36px;
  block-size: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  object-fit: cover;
}

.v3-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.v3-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--v3-radius-pill);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.v3-nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--v3-white);
}

.v3-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.v3-header-status {
  display: none;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--v3-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
  white-space: nowrap;
}

.v3-header-status:hover {
  background: rgba(255, 255, 255, 0.18);
}

.v3-status-dot {
  inline-size: 8px;
  block-size: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.9);
  animation: v3StatusBlink 1.1s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes v3StatusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; box-shadow: 0 0 4px rgba(74, 222, 128, 0.35); }
}

.v3-cta {
  display: none;
  align-items: center;
  justify-content: center;
  appearance: none;
  background: var(--v3-white);
  color: var(--v3-primary);
  font-family: var(--v3-font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--v3-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.v3-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.v3-cta:active {
  transform: scale(0.97);
}

.v3-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  appearance: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.v3-burger-line {
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: var(--v3-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.v3-burger.active .v3-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.v3-burger.active .v3-burger-line:nth-child(2) {
  opacity: 0;
}

.v3-burger.active .v3-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.v3-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 102, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 24px 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-mobile-nav.active {
  transform: translateY(0);
}

.v3-mobile-link {
  color: var(--v3-white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--v3-radius-pill);
  transition: background 0.2s;
}

.v3-mobile-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.v3-cta--mobile {
  display: inline-flex;
  margin-block-start: 12px;
}

/* ===== HERO ===== */
.v3-hero {
  min-block-size: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--v3-section-px) var(--v3-section-py);
  position: relative;
}

.v3-hero-inner {
  max-inline-size: var(--v3-max-width);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.v3-hero-copy {
  text-align: center;
  color: var(--v3-white);
  position: relative;
  z-index: 1;
}

.v3-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-block-size: 36px;
  padding: 8px 20px;
  border-radius: var(--v3-radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--v3-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-block-end: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.v3-hero-badge-icon {
  inline-size: 16px;
  block-size: 16px;
  flex-shrink: 0;
}

.v3-hero-title {
  font-size: clamp(2.1rem, 7vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-block-end: 24px;
}

.v3-hero-text {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.7;
  opacity: 0.88;
  max-inline-size: 52ch;
  margin-inline: auto;
  margin-block-end: 0;
}

.v3-hero-alert {
  padding: 14px 16px;
  border-radius: var(--v3-radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--v3-white);
  opacity: 0.9;
  max-inline-size: 52ch;
  margin-inline: auto;
  margin-block-start: 12px;
  margin-block-end: 28px;
}

.v3-inline-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s;
}

.v3-inline-link:hover {
  border-bottom-color: var(--v3-white);
}

.v3-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-block-end: 32px;
}

.v3-btn-primary {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v3-white);
  color: var(--v3-primary);
  font-family: var(--v3-font);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 17px 40px;
  border-radius: var(--v3-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.v3-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.v3-btn-primary:active {
  transform: scale(0.97);
}

.v3-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--v3-white);
  font-family: var(--v3-font);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 17px 36px;
  border-radius: var(--v3-radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.v3-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.v3-btn-secondary:active {
  transform: scale(0.97);
}

.v3-btn-secondary--small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v3-primary);
  color: var(--v3-white);
  font-family: var(--v3-font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--v3-radius-pill);
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-block-start: 4px;
}

.v3-btn-secondary--small:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.v3-btn-secondary--small:active {
  transform: scale(0.97);
}

.v3-hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.v3-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.v3-hero-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--v3-white);
}

.v3-hero-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.7;
  color: var(--v3-white);
}

.v3-hero-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.v3-hero-glow {
  position: absolute;
  inset: 8% 5% 5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(0, 198, 255, 0.08) 40%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.v3-hero-frame {
  position: relative;
  inline-size: min(85vw, 480px);
  border-radius: 20px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    0 32px 80px rgba(0, 50, 150, 0.3),
    0 8px 24px rgba(0, 100, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.v3-hero-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  inline-size: 90px;
  block-size: 6px;
  border-radius: var(--v3-radius-pill);
  background: rgba(255, 255, 255, 0.15);
}

.v3-hero-image {
  display: block;
  inline-size: 100%;
  block-size: auto;
  border-radius: 14px;
}

/* ===== SECTION INNER ===== */
.v3-section {
  padding-block: var(--v3-section-py);
}

.v3-section-inner {
  max-inline-size: var(--v3-max-width);
  margin-inline: auto;
  padding-inline: var(--v3-section-px);
}

.v3-section-header {
  text-align: center;
  margin-block-end: 48px;
}

.v3-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--v3-primary);
  background: rgba(0, 122, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--v3-radius-pill);
  margin-block-end: 16px;
}

.v3-eyebrow--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.v3-section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.v3-section-title--light {
  color: var(--v3-white);
}

/* ===== FEATURES ===== */
.v3-features {
  background: #f5f8fb;
}

/* ===== MAP SECTION ===== */
.v3-map {
  background: var(--v3-gradient-hero);
}

.v3-map-container {
  position: relative;
  max-inline-size: 900px;
  margin-inline: auto;
  aspect-ratio: 701 / 300;
  border-radius: var(--v3-radius-lg);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.v3-world-map {
  inline-size: 100%;
  block-size: 100%;
  display: block;
  object-fit: contain;
}

.v3-map-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.v3-map-marker {
  position: absolute;
  inline-size: 12px;
  block-size: 12px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.v3-map-marker:hover {
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 5;
}

.v3-map-marker--online::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.3);
  animation: v3MapPulse 2s ease-out infinite;
}

.v3-map-marker--offline {
  background: #6b7280;
  box-shadow: 0 0 6px rgba(107, 114, 128, 0.4);
}

.v3-map-marker--offline::before {
  display: none;
}

@keyframes v3MapPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.v3-map-tooltip {
  position: absolute;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: var(--v3-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 0.2s ease;
  z-index: 20;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-inline-size: 90%;
}

.v3-map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

.v3-map-tooltip.active {
  opacity: 1;
}

.v3-map-tooltip-status {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
  margin-block-start: 2px;
}

.v3-map-tooltip-status--online {
  color: #4ade80;
  opacity: 1;
}

.v3-map-tooltip-status--offline {
  color: #f87171;
  opacity: 1;
}

.v3-map-stats {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-block-start: 24px;
}

.v3-map-stats-value {
  font-weight: 800;
  font-size: 1.3rem;
  color: #4ade80;
}

@media (max-width: 640px) {
  .v3-map-container {
    aspect-ratio: 16 / 10;
    border-radius: var(--v3-radius-md);
  }

  .v3-map-marker {
    inline-size: 10px;
    block-size: 10px;
  }

  .v3-map-marker--online::before {
    inset: -4px;
  }

  .v3-map-tooltip {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

.v3-features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
}

.v3-feature-card {
  background: var(--v3-white);
  border-radius: var(--v3-radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.v3-feature-icon {
  inline-size: 48px;
  block-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--v3-radius-sm);
  background: linear-gradient(135deg, var(--v3-primary), var(--v3-accent));
  color: var(--v3-white);
  margin-block-end: 16px;
}

.v3-feature-icon svg {
  inline-size: 24px;
  block-size: 24px;
}

.v3-feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--v3-text-primary);
  margin-block-end: 8px;
}

.v3-feature-stat {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v3-primary);
  letter-spacing: -0.03em;
  margin-block-end: 8px;
}

.v3-feature-desc {
  color: var(--v3-text-secondary);
  line-height: 1.65;
  font-size: 0.96rem;
}

.v3-device-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-start: 12px;
}

.v3-device-chip {
  min-block-size: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--v3-radius-pill);
  background: #f0f5ff;
  color: var(--v3-primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.v3-server-chip-offline {
  background: #fff1f1;
  color: #d13232;
}

.v3-server-flag {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.v3-server-chip-label {
  line-height: 1.2;
}

.v3-server-chip-status {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.9;
}

/* ===== APP SECTION ===== */
.v3-app {
  background: var(--v3-gradient-hero);
}

.v3-app-card {
  border-radius: var(--v3-radius-xl);
  overflow: hidden;
}

.v3-app-inner {
  background: linear-gradient(145deg, #1a1f2e 0%, #2d3548 100%);
  padding: 24px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.v3-app-inner::before {
  content: '';
  position: absolute;
  inline-size: 60%;
  block-size: 120%;
  top: -30%;
  right: -15%;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.v3-app-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.v3-app-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v3-app-icon {
  inline-size: 56px;
  block-size: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
}

.v3-app-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

.v3-app-subtitle {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-block-start: 2px;
}

.v3-app-btn {
  appearance: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #34C759, #28a745);
  color: #fff;
  font-family: var(--v3-font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  align-self: flex-start;
}

.v3-app-btn:active {
  transform: scale(0.97);
}

.v3-app-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.v3-app-btn svg {
  inline-size: 20px;
  block-size: 20px;
  flex-shrink: 0;
}

.v3-app-support {
  margin-block-start: 4px;
}

.v3-app-support-label {
  display: block;
  font-size: 0.82rem;
  opacity: 0.6;
  margin-block-end: 8px;
}

.v3-app-screens {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
  padding-block-end: 8px;
  margin-block-start: 16px;
}

.v3-app-screens::-webkit-scrollbar {
  block-size: 3px;
}

.v3-app-screens::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.v3-app-screen {
  flex: 0 0 auto;
  inline-size: 140px;
  scroll-snap-align: start;
  aspect-ratio: 9 / 16;
  border-radius: var(--v3-radius-sm);
  overflow: hidden;
  appearance: none;
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
}

.v3-app-screen img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--v3-radius-sm);
  pointer-events: none;
  background: #2a2f3e;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.v3-app-screen img.loaded {
  opacity: 1;
}

.v3-app-screen:last-child {
  margin-inline-end: 20px;
}

/* ===== PRICING ===== */
.v3-pricing {
  background: #f5f8fb;
}

.v3-pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
}

.v3-pricing-loading {
  text-align: center;
  color: var(--v3-text-secondary);
  padding: 48px 0;
  font-size: 1rem;
}

.v3-pricing-card {
  background: var(--v3-white);
  border-radius: var(--v3-radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v3-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.v3-pricing-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--v3-text-primary);
}

.v3-pricing-desc {
  color: var(--v3-text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.v3-pricing-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v3-primary);
}

.v3-pricing-buy {
  appearance: none;
  background: linear-gradient(135deg, #00C6FF, #0072FF);
  color: var(--v3-white);
  font-family: var(--v3-font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--v3-radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block-start: auto;
}

.v3-pricing-buy:active {
  transform: scale(0.97);
}

/* ===== FAQ ===== */
.v3-faq {
  background: var(--v3-gradient-hero);
}

.v3-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-inline-size: 720px;
  margin-inline: auto;
}

.v3-faq-item {
  border-radius: var(--v3-radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.v3-faq-item[open] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.v3-faq-question {
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--v3-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v3-faq-question::-webkit-details-marker {
  display: none;
}

.v3-faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--v3-white);
  opacity: 0.7;
}

.v3-faq-item[open] .v3-faq-question::after {
  content: '\2013';
}

.v3-faq-answer {
  margin-block-start: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ===== FOOTER ===== */
.v3-footer {
  background: #0a0e1a;
  color: rgba(255, 255, 255, 0.7);
  padding-block-start: 64px;
}

.v3-footer-inner {
  max-inline-size: var(--v3-max-width);
  margin-inline: auto;
  padding-inline: var(--v3-section-px);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.v3-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v3-logo--footer {
  color: var(--v3-white);
  text-shadow: none;
}

.v3-footer-tagline {
  font-size: 0.95rem;
  opacity: 0.7;
}

.v3-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}

.v3-footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v3-white);
  margin-block-end: 14px;
}

.v3-footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  padding-block: 4px;
  transition: color 0.2s;
}

.v3-footer-link:hover {
  color: var(--v3-white);
}

.v3-footer-bottom {
  border-block-start: 1px solid rgba(255, 255, 255, 0.08);
  margin-block-start: 48px;
  padding: 20px var(--v3-section-px);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ===== BOTTOM BAR (mobile sticky CTA) ===== */
.v3-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 12px 16px 18px;
  background: linear-gradient(180deg, rgba(0, 100, 255, 0) 0%, rgba(0, 100, 255, 0.2) 24%, rgba(0, 100, 255, 0.35) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.v3-bottom-cta {
  display: block;
  width: 100%;
  max-inline-size: 480px;
  margin-inline: auto;
  appearance: none;
  background: var(--v3-gradient);
  color: white;
  padding: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: var(--v3-radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
  transition: transform 0.2s;
  font-family: var(--v3-font);
}

.v3-bottom-cta:active {
  transform: scale(0.98);
}

/* ===== MODAL (PLANS) ===== */
.v3-modal {
  position: fixed;
  top: 0;
  left: 0;
  inline-size: 100%;
  block-size: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.v3-modal.active {
  display: flex;
  opacity: 1;
}

.v3-modal-content {
  background: var(--v3-white);
  inline-size: 100%;
  max-inline-size: 480px;
  border-radius: var(--v3-radius-lg) var(--v3-radius-lg) 0 0;
  padding: var(--v3-section-px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-block-size: 85vh;
  overflow-y: auto;
}

.v3-modal.active .v3-modal-content {
  transform: translateY(0);
}

.v3-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-block-end: 24px;
  gap: 12px;
}

.v3-modal-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--v3-text-primary);
}

.v3-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--v3-text-secondary);
  padding: 4px;
}

.v3-modal-close svg {
  inline-size: 24px;
  block-size: 24px;
}

.v3-modal-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v3-plan-card {
  inline-size: 100%;
  background: #f5f8fa;
  border: 2px solid transparent;
  border-radius: var(--v3-radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--v3-font);
  appearance: none;
}

.v3-plan-card:active {
  background: #eef2f6;
  transform: scale(0.98);
}

.v3-plan-card.selected {
  border-color: var(--v3-primary);
  background: rgba(0, 122, 255, 0.05);
}

.v3-plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-inline-size: 0;
}

.v3-plan-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--v3-text-primary);
}

.v3-plan-desc {
  font-size: 0.8rem;
  color: var(--v3-text-secondary);
  line-height: 1.45;
}

.v3-plan-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--v3-primary);
  flex-shrink: 0;
  margin-inline-start: 12px;
}

.v3-modal-submit {
  inline-size: 100%;
  background: var(--v3-primary);
  color: var(--v3-white);
  border: none;
  padding: 16px;
  border-radius: var(--v3-radius-md);
  font-weight: 700;
  font-size: 1rem;
  margin-block-start: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  transition: transform 0.2s;
  font-family: var(--v3-font);
}

.v3-modal-submit:disabled {
  opacity: 0.5;
}

.v3-modal-submit:active {
  transform: scale(0.98);
}

/* ===== SCREENSHOT MODAL ===== */
.v3-screenshot-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.v3-screenshot-modal.active {
  display: flex;
  opacity: 1;
}

.v3-screenshot-modal img {
  max-inline-size: 100%;
  max-block-size: 90vh;
  inline-size: auto;
  block-size: auto;
  border-radius: var(--v3-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.v3-screenshot-close {
  position: absolute;
  top: 20px;
  right: 20px;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}

.v3-screenshot-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.v3-screenshot-close svg {
  inline-size: 24px;
  block-size: 24px;
}

/* ===== SCROLL ANIMATIONS ===== */
.v3-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.v3-reveal--fade {
  opacity: 0;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-reveal--fade.in-view {
  opacity: 1;
}

.v3-reveal--scale {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-reveal--scale.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.v3-reveal--slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-reveal--slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.v3-reveal--slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-reveal--slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.v3-feature-card.v3-reveal,
.v3-faq-item.v3-reveal {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: no-preference) {
  .v3-feature-card.v3-reveal:nth-child(1) { transition-delay: 0s; }
  .v3-feature-card.v3-reveal:nth-child(2) { transition-delay: 0.1s; }
  .v3-feature-card.v3-reveal:nth-child(3) { transition-delay: 0.2s; }
  .v3-feature-card.v3-reveal:nth-child(4) { transition-delay: 0.3s; }

  .v3-faq-item.v3-reveal:nth-child(1) { transition-delay: 0s; }
  .v3-faq-item.v3-reveal:nth-child(2) { transition-delay: 0.07s; }
  .v3-faq-item.v3-reveal:nth-child(3) { transition-delay: 0.14s; }
  .v3-faq-item.v3-reveal:nth-child(4) { transition-delay: 0.21s; }
  .v3-faq-item.v3-reveal:nth-child(5) { transition-delay: 0.28s; }
  .v3-faq-item.v3-reveal:nth-child(6) { transition-delay: 0.35s; }

  .v3-hero-stats.v3-reveal {
    transition-delay: 0.2s;
  }

  .v3-hero-preview.v3-reveal {
    transition-delay: 0.15s;
  }

  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .v3-reveal {
      animation: v3FadeSlideUp auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 80%;
    }

    .v3-reveal--fade {
      animation: v3FadeIn auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 75%;
    }

    .v3-reveal--scale {
      animation: v3FadeScaleUp auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 80%;
    }

    .v3-reveal--slide-left {
      animation: v3SlideFromLeft auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 80%;
    }

    .v3-reveal--slide-right {
      animation: v3SlideFromRight auto linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 80%;
    }

    @keyframes v3FadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
    }

    @keyframes v3FadeIn {
      from {
        opacity: 0;
      }
    }

    @keyframes v3FadeScaleUp {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
    }

    @keyframes v3SlideFromLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
    }

    @keyframes v3SlideFromRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
    }

    .v3-reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .v3-reveal--fade.in-view {
      opacity: 1;
      transform: none;
    }

    .v3-reveal--scale.in-view {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .v3-reveal--slide-left.in-view {
      opacity: 1;
      transform: translateX(0);
    }

    .v3-reveal--slide-right.in-view {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .v3-reveal,
  .v3-reveal--fade,
  .v3-reveal--scale,
  .v3-reveal--slide-left,
  .v3-reveal--slide-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ===== RESPONSIVE: TABLET (640px+) ===== */
@media (min-width: 640px) {
  .v3-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v3-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* ===== RESPONSIVE: DESKTOP (960px+) ===== */
@media (min-width: 960px) {
  .v3-burger {
    display: none;
  }

  .v3-nav {
    display: flex;
  }

  .v3-cta {
    display: inline-flex;
  }

  .v3-header-status {
    display: inline-flex;
  }

  .v3-hero-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    text-align: left;
    align-items: center;
    gap: 64px;
  }

  .v3-hero-copy {
    text-align: left;
  }

  .v3-hero-text {
    max-inline-size: 56ch;
    margin-inline: 0;
  }

  .v3-hero-alert {
    max-inline-size: 56ch;
    margin-inline: 0;
  }

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

  .v3-hero-stats {
    justify-content: flex-start;
  }

  .v3-hero-preview {
    inline-size: 440px;
  }

  .v3-hero-frame {
    inline-size: 100%;
    border-radius: 24px;
    padding: 8px;
  }

  .v3-hero-frame::before {
    display: none;
  }

  .v3-hero-image {
    border-radius: 16px;
  }

  .v3-hero-title {
    font-size: clamp(2.4rem, 3.6vw, 4rem);
  }

  .v3-section-title {
    font-size: 2.5rem;
  }

  .v3-feature-card {
    padding: 32px;
  }

  .v3-app-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 28px;
    align-items: center;
    padding: 40px;
  }

  .v3-app-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    overflow-x: visible;
    padding-block-end: 0;
  }

  .v3-app-screen {
    inline-size: auto;
    aspect-ratio: 9 / 16;
    margin-inline-end: 0 !important;
  }

  .v3-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v3-modal {
    align-items: center;
    padding: 32px;
  }

  .v3-modal-content {
    max-inline-size: 940px;
    inline-size: min(940px, 100%);
    border-radius: 28px;
    max-block-size: min(88vh, 900px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(18px) scale(0.98);
  }

  .v3-modal.active .v3-modal-content {
    transform: translateY(0) scale(1);
  }

  .v3-modal-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .v3-footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v3-bottom-bar {
    display: none;
  }

  .v3-reveal:nth-child(2) { transition-delay: 0.1s; }
  .v3-reveal:nth-child(3) { transition-delay: 0.2s; }
  .v3-reveal:nth-child(4) { transition-delay: 0.3s; }
}

/* ===== RESPONSIVE: WIDE (1280px+) ===== */
@media (min-width: 1280px) {
  .v3-section-title {
    font-size: 2.8rem;
  }

  .v3-hero-inner {
    grid-template-columns: 1fr 480px;
    gap: 80px;
  }

  .v3-hero-preview {
    inline-size: 480px;
  }

  .v3-app-inner {
    padding: 48px;
  }

  .v3-footer-inner {
    grid-template-columns: 1fr 2fr;
    gap: 64px;
  }

  .v3-modal-content {
    max-inline-size: 1040px;
  }

  .v3-modal-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 420px) {
  .v3-hero-title {
    font-size: 1.7rem;
  }

  .v3-hero-text {
    font-size: 0.94rem;
  }

  .v3-btn-primary,
  .v3-btn-secondary {
    padding: 15px 24px;
    font-size: 0.96rem;
  }

  .v3-logo {
    font-size: 1.3rem;
  }

  .v3-header-status {
    display: none;
  }
}

/* === Cookie consent === */
.v3-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.06);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.v3-cookie-banner.is-active {
  transform: translateY(0);
  opacity: 1;
}

.v3-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.v3-cookie-text {
  font-size: 0.9rem;
  color: #1a1f2e;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.v3-cookie-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: #007aff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.v3-cookie-btn:hover {
  background: #0056b3;
}

.v3-cookie-btn:active {
  transform: scale(0.96);
}

@media (max-width: 640px) {
  .v3-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 10px;
  }
  .v3-cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* === Skeleton image loaders === */
@keyframes v3-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.v3-skeleton-img {
  display: block;
  position: relative;
  background: linear-gradient(90deg, 
    rgba(0, 114, 255, 0.06) 0%, 
    rgba(0, 114, 255, 0.14) 40%, 
    rgba(0, 114, 255, 0.06) 80%, 
    rgba(0, 114, 255, 0.06) 100%);
  background-size: 300% 100%;
  animation: v3-shimmer 2s ease-in-out infinite;
  overflow: hidden;
  border-radius: var(--v3-radius-md);
}

.v3-skeleton-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.6s ease;
  opacity: 0;
}

.v3-skeleton-img.loaded {
  animation: none;
  background: transparent;
}

.v3-skeleton-img.loaded img {
  opacity: 1;
}

/* Hero-specific skeleton sizing */
.v3-skeleton-img--hero {
  width: 100%;
  aspect-ratio: 380 / 760;
}

/* App screenshot skeleton sizing */
.v3-skeleton-img--screen {
  width: 100%;
  aspect-ratio: 140 / 249;
}

/* === Scroll to top === */
.v3-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, box-shadow 0.2s ease;
}

.v3-scroll-top.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.v3-scroll-top:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.v3-scroll-top:active {
  transform: scale(0.92);
}

.v3-scroll-top svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 640px) {
  .v3-scroll-top {
    bottom: 80px;
    right: 16px;
  }
}

/* ===== CONNECT MODAL ===== */
.v3-connect-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v3-connect-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--v3-radius-md);
  background: #f5f8fa;
  border: 2px solid transparent;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.v3-connect-card:hover {
  border-color: var(--v3-primary);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.15);
}

.v3-connect-card:active {
  transform: scale(0.98);
}

.v3-connect-icon {
  inline-size: 48px;
  block-size: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--v3-radius-sm);
  background: linear-gradient(135deg, var(--v3-primary), var(--v3-accent));
  color: var(--v3-white);
}

.v3-connect-icon svg {
  inline-size: 24px;
  block-size: 24px;
}

.v3-connect-icon--tg {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.v3-connect-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-inline-size: 0;
}

.v3-connect-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--v3-text-primary);
}

.v3-connect-desc {
  font-size: 0.85rem;
  color: var(--v3-text-secondary);
  line-height: 1.4;
}

@media (min-width: 960px) {
  .v3-connect-options {
    flex-direction: row;
    gap: 16px;
  }

  .v3-connect-card {
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 12px;
  }
}