*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0e1a;
  --surface: #13162a;
  --surface2: #1a1d2e;
  --surface3: #22263a;
  --border: #2a2f4a;

  --primary: #6c63ff;
  --primary2: #9d97ff;
  --green: #06d6a0;
  --blue: #4cc9f0;
  --yellow: #ffd166;

  --text: #eef0ff;
  --muted: #7c84aa;
  --muted2: #555d82;

  --radius: 18px;
  --radius-lg: 28px;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.15), transparent 34%),
    radial-gradient(circle at bottom right, rgba(6, 214, 160, 0.10), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--primary);
  color: white;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 100;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 14, 26, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(42, 47, 74, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 22%),
    linear-gradient(135deg, var(--primary), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 0 34px rgba(108, 99, 255, 0.35);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 34px rgba(108, 99, 255, 0.35);
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  font-size: 0.7rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
  background: rgba(108, 99, 255, 0.16);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 24px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.26;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-purple {
  width: 520px;
  height: 520px;
  background: var(--primary);
  top: -130px;
  left: -120px;
}

.orb-green {
  width: 420px;
  height: 420px;
  background: var(--green);
  right: -120px;
  bottom: -80px;
  animation-delay: -4s;
}

.orb-blue {
  width: 300px;
  height: 300px;
  background: var(--blue);
  left: 52%;
  top: 42%;
  animation-delay: -8s;
}

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(34px, 44px, 0) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(108, 99, 255, 0.35);
  background: rgba(108, 99, 255, 0.13);
  color: var(--primary2);
  padding: 7px 17px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2.4rem, 5.4vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary2), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 12px 42px rgba(108, 99, 255, 0.38);
}

.btn-primary:hover {
  box-shadow: 0 18px 54px rgba(108, 99, 255, 0.52);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--primary2);
  background: rgba(108, 99, 255, 0.08);
}

.trust-row {
  margin: 58px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(19, 22, 42, 0.74);
  border: 1px solid rgba(42, 47, 74, 0.82);
  backdrop-filter: blur(10px);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

/* GENERAL SECTIONS */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-header.split {
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-header h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-link {
  color: var(--primary2);
  font-weight: 750;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--green);
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.review-card,
.disclosure-box,
.cta-box {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px 22px;
  min-height: 280px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 151, 255, 0.55);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 99, 255, 0.13);
  color: var(--primary2);
  font-weight: 900;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* REVIEWS */

.review-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.review-card {
  padding: 28px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--green));
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 214, 160, 0.42);
}

.review-card.featured {
  background:
    radial-gradient(circle at top right, rgba(108, 99, 255, 0.18), transparent 38%),
    var(--surface);
}

.review-category {
  color: var(--green);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 850;
  margin-bottom: 18px;
}

.review-card h3 {
  font-size: 1.45rem;
  line-height: 1.22;
  margin-bottom: 14px;
}

.review-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.review-meta span {
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--primary2);
  font-weight: 800;
}

.card-link:hover {
  color: var(--green);
}

.muted-link {
  color: var(--muted2);
  pointer-events: none;
}

/* METHOD */

.method-section {
  max-width: 980px;
}

.method-timeline {
  display: grid;
  gap: 14px;
}

.method-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(19, 22, 42, 0.75);
  border-radius: var(--radius);
}

.method-step span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.method-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.method-step p {
  color: var(--muted);
  font-size: 0.91rem;
}

/* DISCLOSURE */

.disclosure-section {
  padding-top: 40px;
}

.disclosure-box {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.09), transparent 34%),
    var(--surface);
}

.disclosure-box h2 {
  margin-top: 14px;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.disclosure-box p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 830px;
}

/* CTA */

.cta-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 24px 110px;
}

.cta-box {
  padding: 56px 36px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(108, 99, 255, 0.20), transparent 38%),
    linear-gradient(135deg, #151833, #111421);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.cta-box p {
  max-width: 640px;
  margin: 16px auto 28px;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 24px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 34px rgba(108, 99, 255, 0.35);
}

.footer-brand div:last-child {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--text);
  font-size: 0.9rem;
}

.footer-brand span {
  font-size: 0.72rem;
}

.site-footer p {
  font-size: 0.78rem;
  text-align: right;
}

/* RESPONSIVE */

@media (max-width: 920px) {
  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card.featured {
    grid-column: span 2;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: auto;
    padding: 14px 18px;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero {
    padding-top: 180px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card.featured {
    grid-column: span 1;
  }

  .section-header.split {
    display: block;
  }

  .text-link {
    display: inline-flex;
    margin-top: 18px;
  }

  .method-step {
    grid-template-columns: 1fr;
  }

  .brand-tagline {
    display: none;
  }
}

/* ABOUT PAGE */

.page-hero {
  position: relative;
  min-height: 72vh;
  padding: 150px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.page-hero-content h1 {
  margin-top: 24px;
  font-size: clamp(2.4rem, 5.4vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.page-hero-content h1 span {
  background: linear-gradient(135deg, var(--primary2), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero-content p {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.about-intro-section {
  padding-top: 70px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.about-main-card,
.about-side-card,
.contact-box {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-main-card {
  padding: 38px;
}

.about-main-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-main-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.about-side-card {
  padding: 30px;
  position: sticky;
  top: 92px;
}

.about-side-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.profile-subtitle {
  color: var(--primary2);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.profile-list {
  display: grid;
  gap: 16px;
}

.profile-list div {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.profile-list strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 5px;
}

.profile-list span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.about-feature-grid .feature-card {
  min-height: 250px;
}

.contact-section {
  padding-top: 40px;
}

.contact-box {
  padding: 38px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.16), transparent 34%),
    var(--surface);
}

.contact-box h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contact-box p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: var(--surface2);
  border-radius: var(--radius);
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  word-break: break-word;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: var(--primary2);
  background: rgba(108, 99, 255, 0.1);
}

.contact-link span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(108, 99, 255, 0.3));
}

@media (max-width: 920px) {
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .about-side-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding-top: 190px;
    min-height: auto;
  }

  .about-main-card,
  .about-side-card,
  .contact-box {
    padding: 26px;
  }
}

/* BLOG / REVIEWS PAGE */

.blog-featured-section {
  padding-top: 70px;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(108, 99, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-post-content {
  padding: 42px;
}

.post-category {
  color: var(--green);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 850;
  margin-bottom: 18px;
}

.featured-post-content h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.featured-post-content p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.post-tags span {
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.featured-post-panel {
  background:
    radial-gradient(circle at top right, rgba(6, 214, 160, 0.16), transparent 40%),
    rgba(26, 29, 46, 0.82);
  border-left: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-badge {
  display: inline-flex;
  width: fit-content;
  color: var(--primary2);
  background: rgba(108, 99, 255, 0.14);
  border: 1px solid rgba(108, 99, 255, 0.32);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.panel-list {
  display: grid;
  gap: 14px;
}

.panel-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(19, 22, 42, 0.72);
  border-radius: var(--radius);
}

.panel-list strong {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.panel-list span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blog-card {
  min-height: 330px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--green));
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 151, 255, 0.55);
}

.blog-card.coming-soon {
  opacity: 0.72;
}

.blog-card h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.blog-card .post-tags {
  margin-top: auto;
  padding-top: 22px;
  margin-bottom: 0;
}

.blog-card .card-link {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-post-panel {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 680px) {
  .featured-post-content,
  .featured-post-panel {
    padding: 26px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .panel-list div {
    grid-template-columns: 1fr;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  transition: all .18s ease;
}

.footer-links a:hover {
  color: #fff;
  border-color: var(--p2);
  background: rgba(108,99,255,.12);
  transform: translateY(-2px);
}

.footer-links a {
  gap: 8px;
}