@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

.wbl2-shell {
  --ink-900: #0A0820;
  --ink-800: #14102E;
  --ink-700: #1E1A3D;
  --ink-600: #2A2550;
  --ink-500: #4A4670;
  --ink-400: #6E6A8E;
  --ink-300: #9A96B8;
  --ink-200: #C4C0DC;
  --ink-100: #ECEAF6;
  --white: #FFFFFF;

  --accent-500: #8B5CF6;
  --accent-600: #7B4DE8;
  --accent-400: #A78BFA;

  --brand-gradient: linear-gradient(95deg, #C084FC 0%, #8B5CF6 50%, #38BDF8 100%);

  --success: #10B981;
  --warning: #F5A623;
  --danger: #E5484D;
  --info: #38BDF8;

  --bg-1: var(--ink-900);
  --bg-card: rgba(20, 16, 46, 0.72);
  --fg-1: var(--white);
  --fg-2: var(--white);
  --fg-3: rgba(255, 255, 255, 0.88);

  --border-soft: rgba(190, 161, 255, 0.14);
  --border-strong: rgba(190, 161, 255, 0.30);

  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  color-scheme: dark;
  background: none;
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.wbl2-shell::before,
.wbl2-shell::after {
  content: '';
  position: fixed;
  inset: -10vmax;
  pointer-events: none;
  z-index: 0;
}

.wbl2-shell::before {
  background:
    radial-gradient(38vmax 32vmax at 18% 22%, rgba(168, 85, 247, 0.32), transparent 60%),
    radial-gradient(34vmax 28vmax at 82% 14%, rgba(56, 189, 248, 0.22), transparent 62%),
    radial-gradient(40vmax 30vmax at 70% 78%, rgba(236, 72, 153, 0.18), transparent 65%),
    radial-gradient(28vmax 24vmax at 12% 88%, rgba(124, 58, 237, 0.22), transparent 60%);
  filter: blur(40px) saturate(1.05);
  animation: w2-aurora-drift 28s ease-in-out infinite alternate;
}

.wbl2-shell::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 55%),
    radial-gradient(120vmax 70vmax at 50% 110%, rgba(7, 2, 18, 0.55), transparent 60%);
  mix-blend-mode: screen;
}

@keyframes w2-aurora-drift {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(2.5vw, -1.5vh, 0) rotate(6deg) scale(1.05); }
  100% { transform: translate3d(-2vw, 2vh, 0) rotate(-4deg) scale(1.02); }
}

.wbl2-shell *,
.wbl2-shell *::before,
.wbl2-shell *::after {
  box-sizing: border-box;
}

.wbl2-shell h1,
.wbl2-shell h2,
.wbl2-shell h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--fg-1);
}

.wbl2-shell p {
  margin: 0;
}

.wbl2-shell a {
  color: inherit;
  text-decoration: none;
}

.wbl2-shell ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wbl2-shell button {
  font-family: inherit;
  cursor: pointer;
}

.w2-page {
  position: relative;
  overflow: hidden;
  background: none;
}

.w2-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.w2-container--narrow {
  width: min(860px, calc(100% - 48px));
}

.w2-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: w2-float 14s ease-in-out infinite alternate;
}

.w2-glow--a {
  top: -160px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 65%);
}

.w2-glow--b {
  top: 340px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 65%);
  animation-delay: -6s;
}

.w2-glow--cta {
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 520px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.30), transparent 65%);
}

@keyframes w2-float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 36px, 0); }
}

.w2-grad {
  background: var(--brand-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: w2-grad-shift 7s ease-in-out infinite alternate;
}

@keyframes w2-grad-shift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.w2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.w2-kicker--center {
  margin: 0 auto;
}

.w2-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.9);
  animation: w2-dot-breathe 2.6s ease-in-out infinite;
}

@keyframes w2-dot-breathe {
  0%, 100% { box-shadow: 0 0 6px rgba(139, 92, 246, 0.6); }
  50% { box-shadow: 0 0 14px 3px rgba(139, 92, 246, 0.85); }
}

.w2-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.w2-btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
}

.w2-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}

.w2-btn--primary:hover::after {
  left: 130%;
}

.w2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.45);
}

.w2-btn--ghost {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-1);
}

.w2-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent-400);
  background: rgba(139, 92, 246, 0.10);
}

.w2-btn__arrow {
  transition: transform 0.25s var(--ease);
}

.w2-btn:hover .w2-btn__arrow {
  transform: translateX(3px);
}

.w2-intro {
  position: relative;
  padding: 96px 0 0;
  text-align: center;
}

.w2-intro .w2-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.w2-intro__title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  opacity: 0;
  animation: w2-enter 0.8s var(--ease) 0.05s forwards;
}

.w2-intro__sub {
  max-width: 60ch;
  color: var(--fg-2);
  font-size: 18px;
  line-height: 1.65;
  opacity: 0;
  animation: w2-enter 0.8s var(--ease) 0.15s forwards;
}

.w2-hero {
  position: relative;
  padding: 96px 0 72px;
}

.w2-intro + .w2-hero {
  padding-top: 44px;
}

.w2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.w2-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.w2-hero__copy > * {
  opacity: 0;
  animation: w2-enter 0.8s var(--ease) forwards;
}

.w2-hero__copy > *:nth-child(2) { animation-delay: 0.15s; }
.w2-hero__copy > *:nth-child(3) { animation-delay: 0.25s; }
.w2-hero__copy > *:nth-child(4) { animation-delay: 0.35s; }
.w2-hero__copy > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes w2-enter {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes w2-enter-visual {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.w2-hero__title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.w2-hero__sub {
  max-width: 54ch;
  color: var(--fg-2);
  font-size: 18px;
  line-height: 1.65;
}

.w2-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.w2-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.w2-hero__meta-item,
.w2-cta__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fg-3);
  font-size: 13.5px;
  font-weight: 600;
}

.w2-hero__meta-item svg,
.w2-cta__meta-item svg {
  color: var(--success);
}

.w2-hero__visual {
  position: relative;
  perspective: 1100px;
  opacity: 0;
  animation: w2-enter-visual 0.9s var(--ease) 0.35s forwards;
}

.w2-browser {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(5, 3, 20, 0.55);
  overflow: hidden;
  transition: transform 0.35s var(--ease);
  will-change: transform;
}

.w2-browser__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.w2-browser__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-600);
}

.w2-browser__dot:nth-child(1) { background: rgba(229, 72, 77, 0.75); }
.w2-browser__dot:nth-child(2) { background: rgba(245, 166, 35, 0.75); }
.w2-browser__dot:nth-child(3) { background: rgba(16, 185, 129, 0.75); }

.w2-browser__url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg-3);
  font-size: 12px;
  font-weight: 500;
}

.w2-browser__body {
  padding: 14px;
}

.w2-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 12px;
}

.w2-stage__main {
  position: relative;
  min-height: 250px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(300px 180px at 30% 20%, rgba(139, 92, 246, 0.35), transparent 65%),
    linear-gradient(150deg, var(--ink-700), var(--ink-900));
  overflow: hidden;
}

.w2-stage__speaker {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.w2-stage__name {
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(5, 3, 20, 0.55);
  color: var(--fg-2);
  font-size: 12px;
  font-weight: 600;
}

.w2-stage__viewers {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(5, 3, 20, 0.55);
  color: var(--fg-2);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.w2-stage__captions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 9px;
  background: rgba(5, 3, 20, 0.65);
  color: var(--fg-2);
  font-size: 12.5px;
  line-height: 1.4;
}

.w2-stage__captions:empty {
  display: none;
}

.w2-stage__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.w2-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-500), #C084FC);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.w2-avatar--lg {
  width: 76px;
  height: 76px;
  font-size: 22px;
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.25);
}

.w2-avatar--b { background: linear-gradient(135deg, #38BDF8, #6366F1); }
.w2-avatar--c { background: linear-gradient(135deg, #F5A623, #E5484D); }

.w2-badge-live {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(229, 72, 77, 0.16);
  border: 1px solid rgba(229, 72, 77, 0.35);
  color: #FF8A8E;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.w2-badge-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  animation: w2-pulse 1.6s ease-in-out infinite;
}

@keyframes w2-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.55); }
  60% { box-shadow: 0 0 0 7px rgba(229, 72, 77, 0); }
}

.w2-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.w2-chat__head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg-3);
  font-size: 12px;
  font-weight: 700;
}

.w2-chat__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
  min-height: 108px;
  padding: 11px 13px;
  overflow: hidden;
}

.w2-chat__msg {
  color: var(--fg-2);
  font-size: 12px;
  line-height: 1.45;
  animation: w2-rise 0.4s var(--ease);
}

.w2-chat__who {
  margin-right: 5px;
  color: var(--accent-400);
  font-weight: 700;
}

@keyframes w2-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.w2-minipoll {
  padding: 12px 13px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.w2-minipoll__q {
  color: var(--fg-1);
  font-size: 12.5px;
  font-weight: 700;
}

.w2-minipoll__bar {
  position: relative;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.w2-minipoll__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w2-fill, 0%);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.45), rgba(139, 92, 246, 0.25));
  animation: w2-fill 1.1s var(--ease) both;
}

.w2-minipoll__fill--alt {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.35), rgba(56, 189, 248, 0.18));
}

@keyframes w2-fill {
  from { width: 0; }
}

.w2-minipoll__bar em {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--fg-2);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 600;
}

.w2-minipoll--wide .w2-minipoll__bar {
  height: 30px;
}

.w2-section {
  position: relative;
  padding: 88px 0;
}

.w2-section--benefits {
  padding-top: 40px;
}

.w2-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
  text-align: center;
}

.w2-section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.w2-section__sub {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.65;
}

.w2-section__sub--center {
  max-width: 62ch;
  margin: 0 auto;
}

.w2-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.w2-benefit {
  padding: 30px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.w2-benefit:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 44px rgba(5, 3, 20, 0.45);
}

.w2-benefit__icon,
.w2-sov__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 13px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
}

.w2-sov__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 11px;
}

.w2-benefit__title {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.w2-benefit__desc {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.65;
}

.w2-feature {
  padding: 56px 0;
}

.w2-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.w2-feature--flip .w2-feature__copy {
  order: 2;
}

.w2-feature--flip .w2-feature__visual {
  order: 1;
}

.w2-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.w2-feature__copy .w2-section__title {
  font-size: clamp(26px, 3vw, 36px);
}

.w2-feature__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.w2-feature__item {
  display: flex;
  gap: 14px;
}

.w2-feature__item-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
}

.w2-feature__item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.w2-feature__item-body strong {
  color: var(--fg-1);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
}

.w2-feature__item-body em {
  color: var(--fg-3);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.w2-card-mock {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 64px rgba(5, 3, 20, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.w2-badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
  font-size: 11.5px;
  font-weight: 700;
}

.w2-badge-soft--ok {
  border-color: rgba(16, 185, 129, 0.30);
  background: rgba(16, 185, 129, 0.10);
  color: #4ADE80;
}

.w2-mock-register__banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(240px 130px at 80% 0%, rgba(139, 92, 246, 0.35), transparent 65%),
    linear-gradient(150deg, var(--ink-700), var(--ink-900));
}

.w2-mock-register__banner strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.w2-mock-register__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.w2-mock-field {
  padding: 12px 15px;
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-3);
  font-size: 13.5px;
}

.w2-mock-submit {
  padding: 12px 15px;
  border-radius: 11px;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.w2-mock-register__foot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-3);
  font-size: 12.5px;
  font-weight: 600;
}

.w2-mock-stage__screen {
  position: relative;
  padding: 48px 22px 22px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(260px 150px at 25% 15%, rgba(139, 92, 246, 0.30), transparent 65%),
    linear-gradient(150deg, var(--ink-700), var(--ink-900));
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.w2-mock-stage__slide {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
}

.w2-mock-line {
  display: block;
  height: 9px;
  width: var(--w2-w, 60%);
  border-radius: 999px;
  background: rgba(196, 192, 220, 0.22);
}

.w2-mock-line:first-child {
  background: linear-gradient(90deg, rgba(192, 132, 252, 0.6), rgba(56, 189, 248, 0.5));
}

.w2-mock-stage__cams {
  display: flex;
  gap: 10px;
}

.w2-mock-stage__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.w2-mock-stage__foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fg-3);
  font-size: 12.5px;
  font-weight: 600;
}

.w2-mock-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.w2-mock-q__votes {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-400);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.w2-mock-q__text {
  flex: 1;
  color: var(--fg-2);
  font-size: 13.5px;
  line-height: 1.45;
}

.w2-mock-analytics__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w2-mock-analytics__head strong {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 800;
}

.w2-mock-analytics__bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  padding: 0 4px;
}

.w2-mock-analytics__bars span {
  flex: 1;
  height: var(--w2-h, 40%);
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.75), rgba(139, 92, 246, 0.18));
  transform-origin: bottom;
  animation: w2-grow 1s var(--ease) both;
}

.w2-mock-analytics__bars span:nth-child(6) {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.8), rgba(56, 189, 248, 0.2));
}

@keyframes w2-grow {
  from { transform: scaleY(0); }
}

.w2-mock-analytics__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.w2-mock-analytics__kpis span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.w2-mock-analytics__kpis strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.w2-mock-analytics__kpis em {
  color: var(--fg-3);
  font-size: 12px;
  font-style: normal;
}

.w2-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.w2-tabs__btn {
  padding: 11px 22px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.w2-tabs__btn:hover {
  border-color: var(--border-strong);
  color: var(--fg-1);
}

.w2-tabs__btn.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.35);
}

.w2-tabs__panel {
  display: none;
  padding: 38px 40px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
}

.w2-tabs__panel.is-active {
  display: block;
  animation: w2-rise 0.4s var(--ease);
}

.w2-tabs__panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.w2-tabs__title {
  margin-bottom: 12px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.w2-tabs__desc {
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.7;
}

.w2-tabs__points {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.w2-tabs__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--fg-2);
  font-size: 14.5px;
  font-weight: 600;
}

.w2-tabs__points svg {
  flex: none;
  margin-top: 3px;
  color: var(--success);
}

.w2-sov {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.w2-sov__card {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.w2-sov__card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.w2-sov__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-400);
  opacity: 0.65;
}

.w2-sov__title {
  margin-bottom: 8px;
  font-size: 15.5px;
  font-weight: 800;
}

.w2-sov__desc {
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.6;
}

.w2-sec__ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  margin-bottom: 52px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, rgba(20, 16, 46, 0.4) 100%);
}

.w2-sec__cert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.w2-sec__cert:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.w2-sec__cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
}

.w2-sec__cert-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.w2-sec__cert-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.w2-sec__cert-sub {
  font-style: normal;
  font-size: 11.5px;
  color: var(--fg-2);
  margin-top: 2px;
}

.w2-sec__cert-tick {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  color: var(--success);
}

.w2-sec__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.w2-sec__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.w2-sec__feature:nth-child(3n) {
  border-right: 0;
}

.w2-sec__feature:nth-last-child(-n+3) {
  border-bottom: 0;
}

.w2-sec__feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
}

.w2-sec__feature-title {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 800;
}

.w2-sec__feature-desc {
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.6;
}

.w2-ai {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.w2-ai__card {
  display: flex;
  gap: 15px;
  padding: 20px 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.w2-ai__card:hover {
  border-color: var(--border-strong);
  background: rgba(139, 92, 246, 0.06);
}

.w2-ai__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
}

.w2-ai__title {
  margin-bottom: 5px;
  font-size: 15.5px;
  font-weight: 700;
}

.w2-ai__desc {
  color: var(--fg-3);
  font-size: 13.5px;
  line-height: 1.55;
}

.w2-fx__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.w2-fx__filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.w2-fx__filter:hover {
  border-color: var(--border-strong);
  color: var(--fg-1);
}

.w2-fx__filter.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.35);
}

.w2-fx__count {
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}

.w2-fx__filter.is-active .w2-fx__count {
  background: rgba(255, 255, 255, 0.22);
}

.w2-fx__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.w2-fx__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.w2-fx__card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: rgba(139, 92, 246, 0.06);
}

.w2-fx__card.is-hidden {
  display: none;
}

.w2-fx.is-filtering .w2-fx__card:not(.is-hidden) {
  animation: w2-fx-in 0.45s var(--ease) both;
  animation-delay: var(--w2-fx-delay, 0ms);
}

@keyframes w2-fx-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.w2-fx__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(139, 92, 246, 0.10);
  color: var(--accent-400);
}

.w2-fx__body {
  min-width: 0;
}

.w2-fx__name {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-1);
}

.w2-fx__desc {
  display: block;
  margin-top: 2px;
  color: var(--fg-3);
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.45;
}

.w2-section--stats {
  padding: 56px 0;
}

.w2-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 44px 40px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(420px 200px at 15% 0%, rgba(139, 92, 246, 0.16), transparent 65%),
    var(--bg-card);
  backdrop-filter: blur(12px);
}

.w2-stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.w2-stats__value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.w2-stats__label {
  color: var(--fg-3);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.w2-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.w2-quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 28px 26px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.w2-quote:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.w2-quote__mark {
  color: var(--accent-400);
  opacity: 0.8;
}

.w2-quote__text {
  flex: 1;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.7;
}

.w2-quote__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.w2-quote__author strong {
  color: var(--fg-1);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.w2-quote__author em {
  color: var(--fg-3);
  font-size: 13px;
  font-style: normal;
}

.w2-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;
}

.w2-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.w2-faq__heading {
  margin: 0;
  font-size: inherit;
}

.w2-faq__item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.w2-faq__item.is-open {
  border-color: var(--border-strong);
}

.w2-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--fg-1);
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  text-align: left;
}

.w2-faq__toggle {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  color: var(--accent-400);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.w2-faq__item.is-open .w2-faq__toggle {
  transform: rotate(45deg);
  background: rgba(139, 92, 246, 0.12);
}

.w2-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.w2-faq__item.is-open .w2-faq__a {
  grid-template-rows: 1fr;
}

.w2-faq__a p {
  overflow: hidden;
  padding: 0 24px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.7;
}

.w2-faq__item.is-open .w2-faq__a p {
  padding-bottom: 22px;
}

.w2-cta {
  position: relative;
  padding: 104px 0 120px;
  text-align: center;
}

.w2-cta .w2-container--narrow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.w2-cta__title {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.w2-cta__sub {
  max-width: 56ch;
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.65;
}

.w2-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.w2-cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

[data-w2-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
  transition-delay: var(--w2-delay, 0ms);
}

[data-w2-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

[data-w2-reveal] .w2-mock-analytics__bars span {
  animation: none;
  transform: scaleY(0);
}

[data-w2-reveal].is-visible .w2-mock-analytics__bars span {
  animation: w2-grow 0.9s var(--ease) both;
  transform: none;
}

.w2-mock-analytics__bars span:nth-child(2) { animation-delay: 0.07s; }
.w2-mock-analytics__bars span:nth-child(3) { animation-delay: 0.14s; }
.w2-mock-analytics__bars span:nth-child(4) { animation-delay: 0.21s; }
.w2-mock-analytics__bars span:nth-child(5) { animation-delay: 0.28s; }
.w2-mock-analytics__bars span:nth-child(6) { animation-delay: 0.35s; }
.w2-mock-analytics__bars span:nth-child(7) { animation-delay: 0.42s; }
.w2-mock-analytics__bars span:nth-child(8) { animation-delay: 0.49s; }

[data-w2-reveal] .w2-minipoll__fill {
  width: 0;
  animation: none;
}

[data-w2-reveal].is-visible .w2-minipoll__fill {
  width: var(--w2-fill, 0%);
  animation: w2-fill 1.1s var(--ease) both;
}

.w2-spot {
  position: relative;
}

.w2-spot::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--w2-mx, 50%) var(--w2-my, 50%), rgba(167, 139, 250, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.w2-spot:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .wbl2-shell *,
  .wbl2-shell *::before,
  .wbl2-shell *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0.01ms !important;
  }

  [data-w2-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  [data-w2-reveal] .w2-mock-analytics__bars span {
    transform: none;
  }

  [data-w2-reveal] .w2-minipoll__fill {
    width: var(--w2-fill, 0%);
  }

  .w2-hero__copy > *,
  .w2-hero__visual {
    opacity: 1;
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .w2-hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .w2-benefits,
  .w2-sov,
  .w2-ai,
  .w2-quotes,
  .w2-sec__ribbon,
  .w2-sec__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .w2-sec__feature {
    border-right: 0;
  }

  .w2-sec__feature:nth-child(odd) {
    border-right: 1px solid var(--border-soft);
  }

  .w2-sec__feature:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--border-soft);
  }

  .w2-sec__feature:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .w2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .w2-feature__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .w2-feature--flip .w2-feature__copy {
    order: 1;
  }

  .w2-feature--flip .w2-feature__visual {
    order: 2;
  }

  .w2-tabs__panel-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

@media (max-width: 640px) {
  .w2-intro {
    padding: 64px 0 0;
  }

  .w2-hero {
    padding: 64px 0 48px;
  }

  .w2-intro + .w2-hero {
    padding-top: 32px;
  }

  .w2-section {
    padding: 60px 0;
  }

  .w2-benefits,
  .w2-sov,
  .w2-ai,
  .w2-quotes,
  .w2-stats,
  .w2-sec__ribbon,
  .w2-sec__features {
    grid-template-columns: 1fr;
  }

  .w2-sec__feature {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border-soft) !important;
  }

  .w2-sec__feature:last-child {
    border-bottom: 0 !important;
  }

  .w2-stage {
    grid-template-columns: 1fr;
  }

  .w2-tabs__panel {
    padding: 26px 22px;
  }

  .w2-fx__grid {
    grid-template-columns: 1fr;
  }

  .w2-fx__filter {
    padding: 8px 14px;
    font-size: 12.5px;
  }

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

  .w2-cta {
    padding: 72px 0 84px;
  }
}

.w2-plinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.w2-plink {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  color: var(--fg-1);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.w2-plink:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 50px rgba(7, 2, 18, 0.45);
}

.w2-plink--featured {
  border-color: rgba(139, 92, 246, 0.4);
  background:
    linear-gradient(160deg, rgba(139, 92, 246, 0.12), transparent 60%),
    var(--bg-card);
}

.w2-plink__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(120deg, var(--accent-500), var(--accent-600));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.35);
}

.w2-plink__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 auto;
}

.w2-plink__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}

.w2-plink__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.w2-plink__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-400);
}

.w2-plink__arrow {
  transition: transform 0.25s var(--ease);
}

.w2-plink:hover .w2-plink__arrow {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .w2-plinks {
    grid-template-columns: 1fr;
  }

  .w2-plink {
    flex-wrap: wrap;
    gap: 16px;
  }

  .w2-plink__cta {
    width: 100%;
  }
}
