:root {
  --bg: #030b1d;
  --bg-2: #061127;
  --text: #f6f8fb;
  --muted: #9aa8bd;
  --green: #2ddc79;
  --green-2: #22c55e;
  --blue: #3b82f6;
  --red: #ff7a90;
  --gold: #f2ca74;
  --border: rgba(255, 255, 255, 0.09);
  --panel: rgba(17, 28, 55, 0.72);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(45, 220, 121, 0.18),
      transparent 0,
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(59, 130, 246, 0.18),
      transparent 0,
      transparent 30%
    ),
    linear-gradient(180deg, #020817 0%, #03112b 46%, #061329 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.52;
  z-index: -1;
  animation: floatBlob 10s ease-in-out infinite alternate;
}

body::before {
  left: -140px;
  bottom: 12%;
  background: rgba(45, 220, 121, 0.12);
}

body::after {
  right: -150px;
  top: 18%;
  background: rgba(59, 130, 246, 0.12);
  animation-duration: 13s;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(2, 8, 23, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #062316;
  font-weight: 900;
  background: linear-gradient(135deg, #24d9c8, #23d36c);
  box-shadow: 0 14px 34px rgba(45, 220, 121, 0.24);
}

.nav-links {
  display: flex;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #d7e3f2;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #062316;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 16px 38px rgba(45, 220, 121, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-large {
  min-height: 54px;
  padding: 16px 28px;
  font-size: 1.05rem;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  animation: heroIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #bdf8d4;
  background: rgba(45, 220, 121, 0.12);
  border: 1px solid rgba(45, 220, 121, 0.15);
  font-size: 0.92rem;
  font-weight: 850;
}

.eyebrow.small {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(45, 220, 121, 0.12);
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.hero-text {
  max-width: 650px;
  margin-top: 24px;
  color: #b8c5d7;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 13px;
  border-radius: 999px;
  color: #dce7f4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.065);
  font-weight: 750;
}

.hero-visual {
  position: relative;
  animation: cardFloatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.phone-card {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(45, 220, 121, 0.16),
      transparent 38%
    ),
    linear-gradient(180deg, rgba(17, 28, 55, 0.96), rgba(12, 19, 38, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(45, 220, 121, 0.44),
    rgba(59, 130, 246, 0.22),
    transparent
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.phone-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.upload-preview {
  min-height: 155px;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(45, 220, 121, 0.13),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(33, 48, 79, 0.9), rgba(28, 39, 68, 0.9));
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.upload-title {
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.upload-button {
  min-width: 190px;
  text-align: center;
  padding: 13px 18px;
  border-radius: 999px;
  color: #062316;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 900;
}

.success-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -16px auto 16px;
  width: calc(100% - 32px);
  padding: 13px;
  border-radius: 18px;
  background: rgba(45, 220, 121, 0.14);
  border: 1px solid rgba(45, 220, 121, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.success-chip span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(45, 220, 121, 0.16);
  color: #bdf8d4;
  font-size: 1.35rem;
  font-weight: 900;
}

.success-chip strong,
.success-chip small {
  display: block;
}

.success-chip small {
  margin-top: 2px;
  color: #b8c5d7;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 12px;
  margin-bottom: 12px;
}

.metric {
  padding: 14px;
  border-radius: 18px;
}

.metric small,
.subscription-card small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.metric strong {
  display: block;
  margin-top: 5px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.metric-hot {
  background: rgba(255, 122, 144, 0.15);
  color: #ffd1d9;
}

.metric-warm {
  background: rgba(242, 202, 116, 0.15);
  color: #ffe8a8;
}

.subscription-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.subscription-card strong {
  font-size: 1.02rem;
}
.subscription-card span {
  font-weight: 950;
}

.dropdown-preview {
  position: absolute;
  right: 12px;
  bottom: -18px;
  width: 235px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(12, 18, 35, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  animation: menuPulse 3s ease-in-out infinite;
}

.dropdown-preview button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  text-align: left;
  color: var(--text);
  background: transparent;
  font-weight: 800;
}

.dropdown-preview button:first-child {
  background: rgba(45, 220, 121, 0.1);
  color: #bdf8d4;
}

.dropdown-preview .danger {
  color: #ffb9c4;
}

.section {
  padding: 78px 0;
}
.logos {
  padding-top: 20px;
}

.logos p {
  text-align: center;
  color: var(--muted);
  font-weight: 750;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.logo-row span {
  padding: 12px 16px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.065);
  font-weight: 850;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.privacy-card h2,
.final-card h2 {
  margin-top: 14px;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.section-heading p,
.privacy-card p,
.final-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.step-card,
.privacy-card,
.final-card,
.faq-grid details {
  border: 1px solid var(--border);
  background: rgba(17, 28, 55, 0.68);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 250px;
  padding: 22px;
  border-radius: 26px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(20, 34, 64, 0.78);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #bdf8d4;
  background: rgba(45, 220, 121, 0.13);
  font-size: 1.6rem;
  font-weight: 950;
}

.feature-card h3,
.step-card h3 {
  font-size: 1.23rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-card p,
.step-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.flow-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.step-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #062316;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 950;
}

.privacy-card,
.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
}

.privacy-card > div {
  max-width: 720px;
}

.final-card {
  flex-direction: column;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(45, 220, 121, 0.16),
      transparent 36%
    ),
    rgba(17, 28, 55, 0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid details {
  padding: 20px;
  border-radius: 22px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.faq-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 36px 0 46px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 750;
}

.footer-links a {
  color: #d7e3f2;
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

@keyframes floatBlob {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(55px, -38px, 0) scale(1.12);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-2deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1.2deg) scale(1);
  }
}

@keyframes menuPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.015);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .phone-card {
    margin: 20px auto 0;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .nav-cta {
    margin-left: auto;
  }
  .hero {
    padding-top: 52px;
  }
  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-actions .btn,
  .privacy-card .btn,
  .final-card .btn {
    width: 100%;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .dropdown-preview {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .phone-card {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .phone-card,
  .privacy-card,
  .final-card {
    padding: 20px;
    border-radius: 24px;
  }

  .section {
    padding: 56px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Legal pages */

.legal-section {
  padding-top: 86px;
}

.legal-card {
  max-width: 920px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: rgba(17, 28, 55, 0.68);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.legal-card h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.legal-content {
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content a {
  color: #bdf8d4;
  font-weight: 800;
}

.legal-content a:hover {
  color: var(--green);
}

.legal-note {
  margin-top: 34px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #ffe8a8;
  background: rgba(242, 202, 116, 0.12);
  border: 1px solid rgba(242, 202, 116, 0.18);
}

@media (max-width: 720px) {
  .legal-section {
    padding-top: 52px;
  }

  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }
}
