@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Share Tech Mono";
  src: url("assets/fonts/ShareTechMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --background: #0b0e14;
  --surface: #161a21;
  --surface-2: #1c2028;
  --surface-3: #22262f;
  --text: #ecedf6;
  --muted: #73757d;
  --muted-2: #a9abb3;
  --line: rgba(69, 72, 79, 0.15);
  --line-strong: rgba(163, 166, 255, 0.25);
  --primary: #a3a6ff;
  --primary-dim: #6063ee;
  --primary-shadow: rgba(96, 99, 238, 0.28);
  --panel-shadow: 0 28px 64px rgba(0, 0, 0, 0.46);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
  text-wrap: balance;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.btn-primary,
.btn-ghost,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  transition:
    transform 0.15s,
    border-color 0.15s,
    color 0.15s,
    background 0.15s;
}

.btn-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--primary-dim), var(--primary));
  color: #0f00a4;
  border: none;
  box-shadow: 0 12px 32px var(--primary-shadow);
}

.btn-primary:hover,
.btn-ghost:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  font-size: 15px;
  border-radius: 15px;
  padding: 15px 28px;
}

.btn-ghost {
  background: transparent;
  color: var(--muted-2);
  font-size: 15px;
  border: 1px solid rgba(69, 72, 79, 0.3);
  border-radius: 15px;
  padding: 15px 28px;
}

.btn-ghost:hover {
  border-color: rgba(163, 166, 255, 0.35);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 64px;
  background: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.nav-brand span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 13px;
  border-radius: 11px;
  padding: 10px 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 84px;
  background: #090b11;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 24px 0 24px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.96) 0%, rgba(7, 9, 14, 0.9) 24%, rgba(7, 9, 14, 0.66) 48%, rgba(7, 9, 14, 0.34) 74%, rgba(7, 9, 14, 0.22) 100%),
    radial-gradient(circle at 32% 36%, rgba(96, 99, 238, 0.1), transparent 38%),
    url("assets/images/hero/herobanner.png") center center / auto 100% no-repeat,
    #090b11;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.24);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.08) 0%, rgba(7, 9, 14, 0.28) 64%, rgba(7, 9, 14, 0.56) 84%, #0d1018 100%),
    linear-gradient(180deg, transparent 72%, rgba(13, 16, 24, 0.68) 90%, #0d1018 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 560px;
}

.hero-text {
  max-width: 560px;
}

.hero-pill-dot,
.photoid-label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(163, 166, 255, 0.7);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.photoid-label span {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 3.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #7b7eff, #a3a6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: rgba(217, 220, 230, 0.78);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.hero-actions-center {
  justify-content: center;
}

.hero-proof {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.proof-lbl {
  font-size: 11px;
  color: rgba(217, 220, 230, 0.62);
  margin-top: 2px;
}

.proof-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-phones,
.preview-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.phone-wrap,
.preview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.phone,
.preview-phone,
.feature-phone,
.photoid-phone {
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.phone img,
.preview-phone img,
.feature-phone img,
.photoid-phone img {
  display: block;
  width: 100%;
}

.phone {
  border-radius: 44px;
}

.phone-main {
  width: 205px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(96, 99, 238, 0.12);
}

.phone-side {
  width: 156px;
  opacity: 0.62;
  transform: scale(0.88);
  transform-origin: bottom center;
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.55);
}

.features-section {
  padding: 42px 0 96px;
}

.features-header {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.features-header .section-sub {
  max-width: 44rem;
  margin: 14px auto 0;
}

.feature-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-spotlight-card {
  background: linear-gradient(180deg, rgba(30, 34, 43, 0.88), rgba(16, 19, 26, 0.96));
  border: 1px solid rgba(69, 72, 79, 0.12);
  border-radius: 24px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-spotlight-media {
  display: flex;
  justify-content: center;
}

.feature-spotlight-copy h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-spotlight-copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
}

.feature-phone {
  width: 240px;
  margin: 0 auto;
  border-radius: 36px;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(96, 99, 238, 0.08);
}

.feature-phone-compact {
  width: 180px;
  border-radius: 28px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(96, 99, 238, 0.07);
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}

.btxt {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.55;
}

.btxt strong {
  color: var(--text);
}

.preview-section,
.progress-section {
  background: #0d1018;
  padding: 90px 0;
}

.preview-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #090b11;
}

.preview-section::before {
  content: "";
  position: absolute;
  inset: -24px;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.48), rgba(7, 9, 14, 0.7)),
    url("assets/images/lifestyle/living-room-user.png") center center / cover no-repeat;
  background-attachment: fixed;
  filter: blur(2.2px) saturate(0.94);
  transform: scale(1.06);
  transform-origin: center;
}

.preview-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(96, 99, 238, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.2), rgba(7, 9, 14, 0.68));
}

.preview-section .container {
  position: relative;
  z-index: 1;
}

.preview-header,
.categories-header,
.progress-header,
.pricing-header {
  max-width: 560px;
}

.preview-header {
  text-align: center;
  margin: 0 auto 52px;
}

.categories-header,
.progress-header,
.pricing-header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.categories-header .section-title,
.progress-header .section-title,
.pricing-header .section-title {
  max-width: none;
}

.categories-header .section-sub,
.progress-header .section-sub,
.pricing-header .section-sub {
  max-width: 46rem;
  margin: 14px auto 0;
}

.preview-header-full {
  max-width: 760px;
  min-height: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.preview-header-full .section-title {
  max-width: 16ch;
  margin: 0 auto;
}

.preview-header-full .section-sub {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: rgba(231, 234, 244, 0.84);
}

.preview-phone {
  border-radius: 36px;
}

.preview-phone-center {
  width: 210px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 50px rgba(96, 99, 238, 0.13);
}

.preview-phone-side {
  width: 170px;
  opacity: 0.62;
  transform: scale(0.91);
  transform-origin: bottom center;
}

.preview-item span {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.categories-section {
  padding: 90px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin-top: 44px;
}

.cat-tile,
.cat-more {
  min-height: 108px;
  border-radius: 14px;
}

.cat-tile {
  background: var(--surface);
  border: 1px solid rgba(69, 72, 79, 0.1);
  padding: 20px 10px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.cat-tile:hover {
  border-color: rgba(163, 166, 255, 0.22);
  transform: translateY(-2px);
}

.cat-tile img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.cat-tile span {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}

.cat-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(69, 72, 79, 0.25);
  font-family: "Share Tech Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: #7b7eff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.progress-preview-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(69, 72, 79, 0.12);
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-preview-label {
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.progress-preview-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.progress-preview-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.progress-preview-card p {
  max-width: 26ch;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
}

.plan-card {
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(69, 72, 79, 0.15);
  position: relative;
  overflow: hidden;
}

.plan-free {
  background: var(--surface);
}

.plan-pro {
  background: linear-gradient(145deg, #141830 0%, #1a1e38 60%, #111422 100%);
  border-color: rgba(163, 166, 255, 0.25);
  box-shadow: 0 0 60px rgba(96, 99, 238, 0.1);
}

.plan-pro::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(96, 99, 238, 0.08);
  pointer-events: none;
}

.plan-badge {
  display: inline-block;
  font-family: "Share Tech Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.plan-badge-free {
  background: var(--surface-3);
  color: var(--muted);
  border: 1px solid rgba(69, 72, 79, 0.25);
}

.plan-badge-pro {
  background: rgba(163, 166, 255, 0.12);
  color: var(--primary);
  border: 1px solid rgba(163, 166, 255, 0.3);
}


.plan-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 36rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pf-check {
  font-size: 12px;
  color: #4ade80;
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-check-pro {
  color: var(--primary);
}

.pf-text {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.5;
}

.pf-text strong {
  color: var(--text);
  font-weight: 600;
}

.photoid-hero {
  background: rgba(163, 166, 255, 0.06);
  border: 1px solid rgba(163, 166, 255, 0.18);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  position: relative;
}

.photoid-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(163, 166, 255, 0.15);
  border-radius: 9999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.photoid-content {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: center;
}

.photoid-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}

.photoid-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.photoid-phone {
  width: 220px;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(96, 99, 238, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

footer {
  border-top: 1px solid rgba(69, 72, 79, 0.12);
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 12px;
  color: #45484f;
}

@media (max-width: 980px) {
  .pricing-grid,
  .progress-preview-grid,
  .feature-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photoid-content {
    grid-template-columns: 1fr;
  }

  .photoid-phone {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .container,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .features-section {
    padding: 0 0 80px;
  }

  .feature-spotlight-card {
    gap: 18px;
    padding: 20px;
  }

  .feature-phone-compact {
    width: 170px;
  }

  .hero {
    padding: 96px 0 72px;
  }

  .hero::before {
    inset: 0;
    border-radius: 0;
    background:
      linear-gradient(90deg, rgba(7, 9, 14, 0.94) 0%, rgba(7, 9, 14, 0.88) 24%, rgba(7, 9, 14, 0.62) 48%, rgba(7, 9, 14, 0.34) 74%, rgba(7, 9, 14, 0.24) 100%),
      radial-gradient(circle at 32% 36%, rgba(96, 99, 238, 0.1), transparent 38%),
      url("assets/images/hero/herobanner.png") 72% center / cover no-repeat;
    box-shadow: none;
  }

  .hero-inner {
    min-height: 480px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .preview-section {
    padding: 100px 0;
  }

  .preview-section::before {
    background-attachment: scroll;
    filter: blur(1.7px) saturate(0.96);
  }

  .preview-header-full {
    min-height: 260px;
    gap: 14px;
  }

  footer {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
