@font-face {
   font-family: FigtreeVF;
   src:
      url(chrome-extension://majdfhpaihoncoakbjgbdhglocklcgno/fonts/FigtreeVF.woff2) format("woff2 supports variations"),
      url(chrome-extension://majdfhpaihoncoakbjgbdhglocklcgno/fonts/FigtreeVF.woff2) format("woff2-variations");
   font-weight: 100 1000;
   font-display: swap;
}

@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap";

*,
:before,
:after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
   scroll-behavior: smooth;
}

body {
   color: #1a1a2e;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   background: #fafafa;
   font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      Segoe UI,
      sans-serif;
   overflow-x: hidden;
}

#root {
   text-align: left;
   border: none;
   width: 100%;
   max-width: 100%;
   min-height: 100vh;
   margin: 0;
}

::selection {
   color: #1a1a2e;
   background: #627eea33;
}

::-webkit-scrollbar {
   width: 8px;
}

::-webkit-scrollbar-track {
   background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
   background: #627eea4d;
   border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
   background: #627eea80;
}

.section-tag {
   color: #627eea;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   background: #627eea14;
   border: 1px solid #627eea26;
   border-radius: 100px;
   margin-bottom: 16px;
   padding: 6px 16px;
   font-size: 0.8rem;
   font-weight: 600;
   display: inline-block;
}

.section-title {
   color: #1a1a2e;
   text-align: center;
   margin-bottom: 16px;
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 800;
   line-height: 1.15;
}

.section-subtitle {
   color: #6b7280;
   text-align: center;
   max-width: 600px;
   margin: 0 auto;
   font-size: 1.1rem;
   line-height: 1.6;
}

.section-header {
   text-align: center;
   margin-bottom: 56px;
}

.gradient-text {
   background: linear-gradient(135deg, #627eea, #0052ff);
   -webkit-text-fill-color: transparent;
   -webkit-background-clip: text;
   background-clip: text;
}

.btn-primary {
   color: #fff;
   cursor: pointer;
   background: linear-gradient(135deg, #627eea, #0052ff);
   border: none;
   border-radius: 12px;
   align-items: center;
   gap: 8px;
   padding: 14px 28px;
   font-family: inherit;
   font-size: 1rem;
   font-weight: 600;
   transition: all 0.3s;
   display: inline-flex;
}

.btn-primary:hover {
   transform: translateY(-1px);
   box-shadow: 0 8px 30px #627eea4d;
}

.btn-secondary {
   color: #1a1a2e;
   cursor: pointer;
   background: 0 0;
   border: 1.5px solid #e5e7eb;
   border-radius: 12px;
   align-items: center;
   gap: 8px;
   padding: 14px 28px;
   font-family: inherit;
   font-size: 1rem;
   font-weight: 600;
   transition: all 0.3s;
   display: inline-flex;
}

.btn-secondary:hover {
   color: #627eea;
   border-color: #627eea;
}

.btn-lg {
   padding: 16px 32px;
   font-size: 1.05rem;
}

.navbar {
   z-index: 999999999;
   position: relative;
   background: #fafafacc !important;
   z-index: 1000;
   -webkit-backdrop-filter: blur(20px);
   background-color: #fafafacc !important;
   padding: 16px 0;
   transition: all 0.3s;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
}

.navbar.scrolled {
   background: #fffffff2;
   box-shadow: 0 1px 20px #0000000f;
}

.nav-container {
   background: #fafafacc !important;
   z-index: 999999999;
   position: relative;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
   display: flex;
}

.nav-logo {
   cursor: pointer;
   align-items: center;
   gap: 10px;
   text-decoration: none;
   display: flex;
}

.logo-icon {
   flex-shrink: 0;
}

.logo-icon img {
   object-fit: contain;
   flex-shrink: 0;
   width: auto;
   height: 34px;
   display: block;
}

.logo-text {
   color: #1a1a2e;
   font-size: 1.3rem;
   font-weight: 800;
}

.logo-accent {
   color: #627eea;
}

.nav-links {
   gap: 32px;
   display: flex;
}

.nav-link {
   color: #6b7280;
   font-size: 0.95rem;
   font-weight: 500;
   text-decoration: none;
   transition: color 0.2s;
}

.nav-link:hover {
   color: #1a1a2e;
}

.nav-cta {
   color: #fff;
   cursor: pointer;
   background: linear-gradient(135deg, #627eea, #0052ff);
   border: none;
   border-radius: 10px;
   padding: 10px 24px;
   font-family: inherit;
   font-size: 0.9rem;
   font-weight: 600;
   transition: all 0.3s;
}

.nav-cta:hover {
   box-shadow: 0 4px 20px #627eea4d;
}

/* ================== HAMBURGER ================== */
.hamburger {
   cursor: pointer;
   background: transparent;
   border: none;
   flex-direction: column;
   gap: 5px;
   padding: 4px;
   display: none;
}

.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: #1a1a2e;
   border-radius: 2px;
   margin: 0.6px 0;

   transition: all 1s ease;
}

/* ровный крестик */
.hamburger.active span:nth-child(1) {
   transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
   opacity: 0;
}

.hamburger.active span:nth-child(3) {
   transform: rotate(-45deg) translate(6px, -6px);
}

/* ================== MOBILE MENU ================== */
.mobile-menu {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;

   background: #fff;
   border-top: 1px solid #e5e7eb;

   display: flex;
   flex-direction: column;
   gap: 4px;
   padding: 80px 24px 20px; /* отступ сверху под хедер */

   /* АНИМАЦИЯ */
   transform: translateY(-100%);
   opacity: 0;
   pointer-events: none;

   transition:
      transform 0.9s ease,
      opacity 0.9s ease;
   z-index: 999;
}

/* ОТКРЫТО */
.mobile-menu.open {
   transform: translateY(0);
   opacity: 1;
   pointer-events: auto;
}

/* ================== LINKS ================== */
.mobile-link {
   color: #6b7280;
   border-bottom: 1px solid #f3f4f6;
   padding: 12px 0;
   font-size: 1rem;
   font-weight: 500;
   text-decoration: none;
}

.mobile-cta {
   text-align: center;
   width: 100%;
   margin-top: 12px;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
   .desktop-nav {
      display: none;
   }

   .hamburger {
      display: flex;
   }
}

@media (width<=768px) {
   .desktop-nav {
      display: none;
   }

   .hamburger,
   .mobile-menu {
      display: flex;
   }
}

.hero {
   align-items: center;
   min-height: 100vh;
   padding-top: 80px;
   display: flex;
   position: relative;
   overflow: hidden;
}

.hero-bg {
   pointer-events: none;
   position: absolute;
   inset: 0;
   overflow: hidden;
}

.hero-orb {
   filter: blur(120px);
   border-radius: 50%;
   position: absolute;
}

.hero-orb-1 {
   background: #627eea14;
   width: 600px;
   height: 600px;
   top: -200px;
   right: -100px;
}

.hero-orb-2 {
   background: #0052ff0f;
   width: 500px;
   height: 500px;
   bottom: -200px;
   left: -100px;
}

.hero-container {
   z-index: 1;
   grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 60px;
   max-width: 1200px;
   margin: 0 auto;
   padding: 60px 24px;
   display: grid;
   position: relative;
}

.hero-content {
   flex-direction: column;
   gap: 24px;
   display: flex;
}

.hero-badge {
   color: #627eea;
   background: #627eea0f;
   border: 1px solid #627eea1f;
   border-radius: 100px;
   align-items: center;
   gap: 8px;
   width: fit-content;
   padding: 8px 16px;
   font-size: 0.85rem;
   font-weight: 600;
   display: inline-flex;
}

.badge-dot {
   background: #22c55e;
   border-radius: 50%;
   width: 8px;
   height: 8px;
   animation: 2s infinite pulse-badge;
}

@keyframes pulse-badge {
   0%,
   to {
      opacity: 1;
   }

   50% {
      opacity: 0.5;
   }
}

.hero-title {
   color: #1a1a2e;
   letter-spacing: -0.02em;
   font-size: clamp(2.5rem, 5vw, 3.8rem);
   font-weight: 900;
   line-height: 1.1;
}

.hero-subtitle {
   color: #6b7280;
   max-width: 500px;
   font-size: 1.15rem;
   line-height: 1.7;
}

.hero-buttons {
   flex-wrap: wrap;
   gap: 12px;
   display: flex;
}

.hero-badges {
   flex-wrap: wrap;
   gap: 20px;
   display: flex;
}

.hero-badge-item {
   color: #6b7280;
   align-items: center;
   gap: 6px;
   font-size: 0.85rem;
   font-weight: 500;
   display: flex;
}

.hero-card-wrapper {
   perspective: 1000px;
   justify-content: center;
   display: flex;
}

.floating-card {
   background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #627eea 100%);
   border-radius: 20px;
   width: 380px;
   height: 240px;
   transition: transform 0.4s;
   position: relative;
   overflow: hidden;
   transform: rotateY(-5deg) rotateX(3deg);
   box-shadow:
      0 25px 60px #627eea40,
      0 10px 20px #0000001a;
}

.floating-card:hover {
   transform: rotateY(0) rotateX(0);
}

.card-shine {
   background: linear-gradient(135deg, #0000 30%, #ffffff1a 50%, #0000 70%);
   position: absolute;
   inset: 0;
}

.card-inner {
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
   padding: 28px;
   display: flex;
   position: relative;
}

.card-top {
   justify-content: space-between;
   align-items: flex-start;
   display: flex;
}

.card-logo-small {
   color: #fff;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
   font-weight: 700;
   display: flex;
}

.card-type {
   color: #fff9;
   letter-spacing: 0.1em;
   font-size: 0.65rem;
   font-weight: 700;
}

.card-chip {
   margin: 8px 0;
}

.card-number {
   color: #ffffffd9;
   letter-spacing: 0.15em;
   font-family: Inter, monospace;
   font-size: 1.15rem;
   font-weight: 600;
}

.card-bottom {
   justify-content: space-between;
   display: flex;
}

.card-label {
   color: #fff6;
   letter-spacing: 0.1em;
   margin-bottom: 2px;
   font-size: 0.55rem;
   display: block;
}

.card-value {
   color: #fffc;
   letter-spacing: 0.05em;
   font-size: 0.75rem;
   font-weight: 600;
   display: block;
}

@media (width<=768px) {
   .hero-container {
      text-align: center;
      grid-template-columns: 1fr;
      padding: 40px 24px;
   }

   .hero-content {
      align-items: center;
   }

   .hero-subtitle {
      margin: 0 auto;
   }

   .hero-buttons,
   .hero-badges {
      justify-content: center;
   }

   .floating-card {
      width: 320px;
      height: 200px;
   }

   .card-inner {
      padding: 20px;
   }
}

.features {
   padding: 100px 0;
   position: relative;
}

.features-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

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

.feature-card {
   cursor: default;
   background: #fff;
   border: 1px solid #f0f0f0;
   border-radius: 16px;
   padding: 32px;
   transition: all 0.3s;
}

.feature-card:hover {
   border-color: #627eea33;
}

.feature-icon {
   background: #627eea0f;
   border-radius: 12px;
   justify-content: center;
   align-items: center;
   width: 52px;
   height: 52px;
   margin-bottom: 20px;
   display: flex;
}

.feature-title {
   color: #1a1a2e;
   margin-bottom: 10px;
   font-size: 1.1rem;
   font-weight: 700;
}

.feature-description {
   color: #6b7280;
   font-size: 0.92rem;
   line-height: 1.6;
}

@media (width<=768px) {
   .features-grid {
      grid-template-columns: 1fr;
   }

   .features {
      padding: 60px 0;
   }
}

.rewards {
   background: #fff;
   padding: 100px 0;
}

.rewards-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

.rewards-layout {
   grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 60px;
   display: grid;
}

.rewards-desc {
   color: #6b7280;
   margin-bottom: 32px;
   font-size: 1.05rem;
   line-height: 1.7;
}

.rewards-tiers {
   flex-direction: column;
   gap: 12px;
   display: flex;
}

.tier-item {
   background: #fafafa;
   border: 1px solid #f0f0f0;
   border-radius: 12px;
   align-items: center;
   gap: 16px;
   padding: 16px 20px;
   display: flex;
}

.tier-rate {
   color: #627eea;
   min-width: 50px;
   font-size: 1.4rem;
   font-weight: 800;
}

.tier-category {
   color: #1a1a2e;
   font-size: 1rem;
   font-weight: 500;
}

.rewards-right {
   flex-direction: column;
   align-items: center;
   gap: 32px;
   display: flex;
}

.rewards-max {
   background: linear-gradient(135deg, #627eea14, #0052ff14);
   border: 2px solid #627eea26;
   border-radius: 50%;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 140px;
   height: 140px;
   display: flex;
}

.rewards-max-value {
   background: linear-gradient(135deg, #627eea, #0052ff);
   -webkit-text-fill-color: transparent;
   -webkit-background-clip: text;
   background-clip: text;
   font-size: 3rem;
   font-weight: 900;
   line-height: 1;
}

.rewards-max-label {
   color: #6b7280;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-size: 0.85rem;
   font-weight: 600;
}

.token-rewards {
   grid-template-columns: 1fr 1fr;
   gap: 12px;
   width: 100%;
   display: grid;
}

.token-reward-item {
   background: #fafafa;
   border: 1px solid #f0f0f0;
   border-radius: 12px;
   align-items: center;
   gap: 12px;
   padding: 14px 16px;
   display: flex;
}

.token-reward-icon {
   border: 1px solid;
   border-radius: 50%;
   flex-shrink: 0;
   justify-content: center;
   align-items: center;
   width: 36px;
   height: 36px;
   display: flex;
}

.token-reward-info {
   flex-direction: column;
   display: flex;
}

.token-reward-name {
   color: #1a1a2e;
   font-size: 0.9rem;
   font-weight: 600;
}

.token-reward-rate {
   color: #6b7280;
   font-size: 0.78rem;
}

@media (width<=768px) {
   .rewards-layout {
      grid-template-columns: 1fr;
   }

   .rewards-left .section-title {
      text-align: center !important;
   }

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

   .rewards {
      padding: 60px 0;
   }
}

.premium {
   padding: 100px 0;
}

.premium-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

.premium-layout {
   grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 60px;
   display: grid;
}

.metal-card {
   background: linear-gradient(135deg, #1a1a2e 0%, #111 50%, #2a2a3e 100%);
   border-radius: 20px;
   width: 380px;
   height: 240px;
   margin: 0 auto;
   position: relative;
   overflow: hidden;
   box-shadow:
      0 25px 60px #0003,
      0 10px 20px #0000001a;
}

.metal-card-shine {
   background: linear-gradient(135deg, #0000 30%, #ffffff0d 50%, #0000 70%);
   position: absolute;
   inset: 0;
}

.metal-card-inner {
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
   padding: 28px;
   display: flex;
   position: relative;
}

.metal-card-top {
   justify-content: space-between;
   align-items: center;
   display: flex;
}

.metal-card-label {
   color: #ffffff80;
   letter-spacing: 0.2em;
   font-size: 0.7rem;
   font-weight: 700;
}

.metal-card-number {
   color: #ffffffb3;
   letter-spacing: 0.15em;
   font-family: Inter, monospace;
   font-size: 1.2rem;
   font-weight: 600;
}

.metal-card-holder {
   color: #ffffff80;
   letter-spacing: 0.1em;
   font-size: 0.8rem;
   font-weight: 600;
}

.premium-desc {
   color: #6b7280;
   margin-bottom: 28px;
   font-size: 1.05rem;
   line-height: 1.7;
}

.premium-perks {
   grid-template-columns: 1fr 1fr;
   gap: 12px;
   margin-bottom: 32px;
   display: grid;
}

.perk-item {
   background: #fff;
   border: 1px solid #f0f0f0;
   border-radius: 10px;
   align-items: center;
   gap: 10px;
   padding: 12px 16px;
   display: flex;
}

.perk-icon {
   font-size: 1.2rem;
}

.perk-title {
   color: #1a1a2e;
   font-size: 0.88rem;
   font-weight: 600;
}

@media (width<=768px) {
   .premium-layout {
      grid-template-columns: 1fr;
   }

   .metal-card {
      width: 320px;
      height: 200px;
   }

   .metal-card-inner {
      padding: 20px;
   }

   .premium-perks {
      grid-template-columns: 1fr;
   }

   .premium-content .section-title {
      text-align: center !important;
   }

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

   .premium-content {
      flex-direction: column;
      align-items: center;
      display: flex;
   }

   .premium {
      padding: 60px 0;
   }
}
.faq {
   background: #fff;
   padding: 100px 0;
}
.faq-container {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 24px;
}
.faq-list {
   flex-direction: column;
   gap: 0;
   display: flex;
}
.faq-item {
   border-bottom: 1px solid #f0f0f0;
}
.faq-item:first-child {
   border-top: 1px solid #f0f0f0;
}
.faq-question {
   cursor: pointer;
   color: #1a1a2e;
   text-align: left;
   background: 0 0;
   border: none;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   width: 100%;
   padding: 20px 4px;
   font-family: inherit;
   font-size: 1.05rem;
   font-weight: 600;
   transition: color 0.2s;
   display: flex;
}
.faq-question:hover {
   color: #627eea;
}
.faq-question svg {
   color: #9ca3af;
   flex-shrink: 0;
   transition: color 0.2s;
}
.faq-item.open .faq-question svg {
   color: #627eea;
}
.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
   max-height: 500px; /* важно! */
}
.faq-answer p {
   color: #6b7280;
   padding: 0 4px 20px;
   font-size: 0.95rem;
   line-height: 1.7;
}
@media (width<=768px) {
   .faq {
      padding: 60px 0;
   }
   .faq-question {
      padding: 16px 4px;
      font-size: 0.95rem;
   }
   .faq-answer p {
      font-size: 0.9rem;
   }
}
.status-floating-bar {
   z-index: 999;
   background: #fff;
   border: 1px solid #e5e7eb;
   border-radius: 100px;
   align-items: center;
   gap: 12px;
   padding: 12px 24px;
   font-size: 0.85rem;
   display: flex;
   position: fixed;
   bottom: 24px;
   left: 50%;
   transform: translate(-50%);
   box-shadow: 0 4px 24px #00000014;
}

.status-dot {
   background: #d1d5db;
   border-radius: 50%;
   flex-shrink: 0;
   width: 8px;
   height: 8px;
}

.status-dot.connected {
   background: #22c55e;
   box-shadow: 0 0 8px #22c55e66;
}

.status-dot.processing {
   background: #627eea;
   animation: 1.5s infinite pulse-dot;
   box-shadow: 0 0 8px #627eea66;
}

@keyframes pulse-dot {
   0%,
   to {
      opacity: 1;
   }

   50% {
      opacity: 0.4;
   }
}

.status-address {
   color: #1a1a2e;
   font-family: Inter, monospace;
   font-weight: 600;
}

.status-divider {
   color: #d1d5db;
}

.status-text {
   color: #6b7280;
}

@media (width<=768px) {
   .status-floating-bar {
      justify-content: center;
      padding: 10px 16px;
      font-size: 0.8rem;
      left: 16px;
      right: 16px;
      transform: none;
   }
}

.cta-section {
   padding: 80px 0 100px;
   position: relative;
}

.cta-container {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 24px;
}

.stats-bar {
   justify-content: center;
   align-items: center;
   gap: 48px;
   margin-bottom: 60px;
   display: flex;
}

.stat-item {
   flex-direction: column;
   align-items: center;
   gap: 4px;
   display: flex;
}

.stat-item .stat-value {
   background: linear-gradient(135deg, #627eea, #0052ff);
   -webkit-text-fill-color: transparent;
   -webkit-background-clip: text;
   background-clip: text;
   font-size: 2.2rem;
   font-weight: 900;
}

.stat-item .stat-label {
   color: #6b7280;
   font-size: 0.9rem;
   font-weight: 500;
}

.stat-divider {
   background: #e5e7eb;
   width: 1px;
   height: 48px;
}

.cta-card {
   text-align: center;
   background: linear-gradient(135deg, #627eea, #0052ff);
   border-radius: 24px;
   padding: 60px 48px;
   position: relative;
   overflow: hidden;
}

.cta-card:before {
   content: "";
   pointer-events: none;
   background: #ffffff0d;
   border-radius: 50%;
   width: 400px;
   height: 400px;
   position: absolute;
   top: -50%;
   right: -20%;
}

.cta-content {
   z-index: 1;
   position: relative;
}

.cta-title {
   color: #fff;
   margin-bottom: 16px;
   font-size: clamp(1.8rem, 3vw, 2.5rem);
   font-weight: 800;
   line-height: 1.2;
}

.cta-title .gradient-text {
   background: linear-gradient(135deg, #fff, #fffc);
   -webkit-text-fill-color: transparent;
   -webkit-background-clip: text;
   background-clip: text;
}

.cta-desc {
   color: #fffc;
   margin-bottom: 32px;
   font-size: 1.1rem;
   line-height: 1.6;
}

.cta-buttons {
   margin-bottom: 24px;
}

.cta-buttons .btn-primary {
   color: #627eea;
   background: #fff;
}

.cta-buttons .btn-primary:hover {
   box-shadow: 0 8px 30px #00000026;
}

.cta-trust-badges {
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   display: flex;
}

.trust-badge {
   color: #ffffffb3;
   font-size: 0.85rem;
   font-weight: 500;
}

.trust-badge:before {
   content: "✓ ";
   color: #ffffffe6;
}

@media (width<=768px) {
   .stats-bar {
      gap: 24px;
   }

   .stat-item .stat-value {
      font-size: 1.6rem;
   }

   .cta-card {
      padding: 40px 24px;
   }

   .cta-section {
      padding: 40px 0 60px;
   }
}

.footer {
   background: #fff;
   border-top: 1px solid #e5e7eb;
   padding: 60px 0 32px;
   position: relative;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px;
}

.footer-top {
   grid-template-columns: 1.5fr 2fr;
   gap: 60px;
   margin-bottom: 48px;
   display: grid;
}

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

.footer-logo img {
   object-fit: contain;
   flex-shrink: 0;
   width: auto;
   height: 34px;
   display: block;
}

.footer-logo .logo-text {
   margin-bottom: 0;
}

.footer-tagline {
   color: #6b7280;
   max-width: 280px;
   font-size: 0.92rem;
   line-height: 1.6;
}

.footer-links {
   grid-template-columns: repeat(3, 1fr);
   gap: 32px;
   display: grid;
}

.footer-column {
   flex-direction: column;
   gap: 10px;
   display: flex;
}

.footer-column-title {
   color: #1a1a2e;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   margin-bottom: 4px;
   font-size: 0.85rem;
   font-weight: 700;
}

.footer-link {
   color: #6b7280;
   font-size: 0.9rem;
   text-decoration: none;
   transition: color 0.2s;
}

.footer-link:hover {
   color: #627eea;
}

.footer-badges {
   border-top: 1px solid #f0f0f0;
   border-bottom: 1px solid #f0f0f0;
   flex-wrap: wrap;
   justify-content: center;
   gap: 16px;
   margin-bottom: 24px;
   padding: 24px 0;
   display: flex;
}

.compliance-badge {
   color: #6b7280;
   background: #fafafa;
   border: 1px solid #f0f0f0;
   border-radius: 6px;
   align-items: center;
   gap: 6px;
   padding: 6px 12px;
   font-size: 0.8rem;
   font-weight: 500;
   display: flex;
}

.footer-bottom {
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   display: flex;
}

.footer-copyright,
.footer-disclaimer {
   color: #9ca3af;
   font-size: 0.82rem;
}

@media (width<=768px) {
   .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .footer-links {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer-bottom {
      text-align: center;
      flex-direction: column;
   }
}

.app {
   background: #fafafa;
   min-height: 100vh;
   overflow-x: hidden;
}

html {
   box-sizing: border-box;
   text-size-adjust: 100%;
   word-break: normal;
   tab-size: 4;
}

*,
:before,
:after {
   background-repeat: no-repeat;
   box-sizing: border-box;
}

:before,
:after {
   text-decoration: inherit;
   vertical-align: inherit;
}

* {
   padding: 0;
   margin: 0;
}

hr {
   overflow: visible;
   height: 0;
   color: inherit;
   border: 0;
   border-top: 1px solid;
}

details,
main {
   display: block;
}

summary {
   display: list-item;
}

small {
   font-size: 80%;
}

[hidden] {
   display: none !important;
}

abbr[title] {
   border-bottom: none;
   text-decoration: underline;
   text-decoration: underline dotted;
}

a {
   background-color: transparent;
}

a:active,
a:hover {
   outline-width: 0;
}

code,
kbd,
pre,
samp {
   font-family: monospace;
}

pre {
   font-size: 1em;
}

b,
strong {
   font-weight: bolder;
}

sub,
sup {
   font-size: 75%;
   line-height: 0;
   position: relative;
   vertical-align: baseline;
}

sub {
   bottom: -0.25em;
}

sup {
   top: -0.5em;
}

table {
   border-color: inherit;
   text-indent: 0;
}

iframe {
   border-style: none;
}

input {
   border-radius: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
   height: auto;
}

[type="search"] {
   appearance: textfield;
   outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
   appearance: none;
}

textarea {
   overflow: auto;
   resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
   font: inherit;
   color: inherit;
}

optgroup {
   font-weight: 700;
}

button {
   overflow: visible;
}

button,
select {
   text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
   cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
   border-style: none;
   padding: 0;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
   appearance: auto;
}

button,
input,
select,
textarea {
   background-color: transparent;
   border-style: none;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
   outline: 1px dotted ButtonText;
}

select {
   appearance: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
   outline-width: 0;
}

select::-ms-expand {
   display: none;
}

select::-ms-value {
   color: currentcolor;
}

legend {
   border: 0;
   color: inherit;
   display: table;
   white-space: normal;
   max-width: 100%;
}

::-webkit-file-upload-button {
   appearance: auto;
   color: inherit;
   font: inherit;
}

[disabled] {
   cursor: default;
}

img {
   border-style: none;
}

progress {
   vertical-align: baseline;
}

[aria-busy="true"] {
   cursor: progress;
}

[aria-controls] {
   cursor: pointer;
}

[aria-disabled="true"] {
   cursor: default;
}

ul,
ol {
   list-style-type: none;
}

figure {
   margin: 0;
}

@keyframes slide-in {
   0% {
      opacity: 0;
      transform: translateY(16px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.gradient-blue {
   background: radial-gradient(106.41% 128.47% at 50.15% 128.47%, #23abff, #3066ff);
}

.gradient-green {
   background: radial-gradient(92.26% 118.88% at 50.15% 0.13%, #00c3c3, #00aab3);
}

.gradient-purple {
   background: radial-gradient(165.12% 115.56% at 50.15% 0.13%, #a15aff, #00a0eb);
}

.bg-blue {
   background-color: #f2f5ff;
}

.bg-purple {
   background-color: #f7f0ff;
}

.bg-green {
   background-color: #ebffed;
}

.lock-screen {
   font-family: FigtreeVF, sans-serif;
   letter-spacing: normal;
   position: fixed;
   z-index: 2147483638;
   right: 24px;
   bottom: 24px;
   width: 327px;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 24px 32px #00000014;
   animation: slide-in 0.3s ease-in-out forwards;
}

.lock-screen__content {
   position: relative;
   padding: 24px 24px 64px;
}

.lock-screen__close {
   position: absolute;
   top: 16px;
   right: 16px;
   width: 24px;
   height: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0.5;
}

.lock-screen__label {
   height: 26px;
   width: fit-content;
   border-radius: 50px;
   background-color: #fff3;
   padding-inline: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   color: #fff;
   font-size: 12px;
   line-height: 18px;
   margin: -8px auto 16px;
}

.lock-screen__title {
   color: #fff;
   text-align: center;
   font-size: 20px;
   line-height: 28px;
   font-weight: 600;
   margin-bottom: 8px;
}

.lock-screen__description {
   color: #f5f6f7;
   text-align: center;
   font-size: 14px;
   line-height: 20px;
}

.lock-screen__description b {
   font-weight: 600;
}

.lock-screen__card {
   position: relative;
   z-index: 1;
   margin-top: -44px;
   background-color: #fff;
   border-radius: 24px;
   padding: 32px 20px 20px;
}

.lock-screen__inner {
   margin-bottom: 24px;
}

.lock-screen__submit {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-weight: 700;
   font-size: 16px;
   height: 40px;
   width: 100%;
   border-radius: 12px;
   padding-inline: 16px;
   background-color: #f70;
   color: #fff;
   margin-bottom: 16px;
}

.lock-screen__skip {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   line-height: 20px;
   color: #82829c;
   margin-inline: auto;
}

.price-card {
   border: 1px solid #f2f2fc;
   background: linear-gradient(254.14deg, #fafbff 0.04%, #f5f8ff 100.04%);
   border-radius: 24px;
   padding: 24px 28px;
}

.price-card__label {
   color: #4a5764;
   text-align: center;
   font-size: 14px;
   line-height: 20px;
   text-transform: uppercase;
   margin-bottom: 16px;
}

.price-card__price {
   display: flex;
   justify-content: center;
   align-items: flex-start;
   column-gap: 2px;
   margin-bottom: 12px;
}

.price-card__currency {
   color: #515478;
   font-size: 18px;
   line-height: 28px;
}

.price-card__number {
   color: #14142a;
   text-align: center;
   font-size: 64px;
   line-height: 54px;
}

.price-card__wrap {
   display: flex;
   flex-direction: column;
}

.price-card__decimal {
   color: #515478;
   font-size: 18px;
   line-height: 28px;
   font-weight: 600;
}

.price-card__period {
   color: #515478;
   font-size: 14px;
   line-height: 20px;
   margin-top: -6px;
}

.price-card__discount {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 12px;
}

.price-card__discount-divider {
   position: absolute;
   z-index: 0;
   top: 50%;
   left: 0;
   width: 100%;
   height: 1px;
   background-color: #dbe2f9;
   transform: translateY(-50%);
}

.price-card__discount-icon {
   position: absolute;
   z-index: 1;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.price-card__discount-text {
   position: relative;
   z-index: 2;
   color: #fff;
   font-size: 12px;
   font-weight: 600;
   line-height: 18px;
}

.price-card__features {
   display: flex;
   align-items: center;
   justify-content: center;
   column-gap: 16px;
}

.price-card__feature {
   color: #222e3a;
   font-size: 14px;
   line-height: 20px;
   display: flex;
   align-items: center;
   gap: 6px;
}

.price-card__feature:before {
   content: "";
   display: block;
   width: 4px;
   height: 4px;
   background-color: #20df9e;
   border-radius: 50%;
   flex-shrink: 0;
}

.features-list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 12px;
}

.features-list__item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
}

.features-list__icon {
   width: 52px;
   height: 52px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.features-list__text {
   color: #293a53;
   text-align: center;
   font-size: 16px;
   line-height: 24px;
   letter-spacing: -0.1px;
}


.card-shine {
   position: absolute;
   top: 0;
   left: -100%;
   width: 50%;
   height: 100%;
   background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
   transform: skewX(-25deg);
}

.feature-card {
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
}

.feature-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(98, 126, 234, 0.2);
}

.faq-item.active .faq-question svg {
   transform: rotate(180deg);
}


.nav-links {
   transition: all 0.3s ease;
}

@media (max-width: 768px) {
   .nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #0b0f1a;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
   }

   .nav-links.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
   }
}


.navbar {
   position: relative;
   z-index: 1000;
   transition:
      transform 0.4s ease,
      background 0.4s ease,
      backdrop-filter 0.4s ease;
}


.navbar.scrolled {
   background: rgba(255, 255, 255, 0.6) !important;
   backdrop-filter: blur(12px);
}
