.home-page {
  color: #000;
  min-height: 100%;
  scroll-behavior: smooth;
  position: relative;
  z-index: 1
}
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(70px + var(--sat));
  padding-top: var(--sat);
  background: #000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1)
}
.home-nav-container {
  margin: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.home-nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none
}
.home-nav-links {
  display: flex;
  gap: 30px
}
.home-nav-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  transition: color .3s
}
.home-nav-links a:hover {
  color: #fff
}
.home-hero {
  padding: 0;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center,transparent 0,rgba(0,0,0,.4) 100%),linear-gradient(0deg,#0f1e3c 0,#000 100%);
  position: relative;
  z-index: 10
}
.home-section {
  padding-top: 100px;
  background-color: #000
}
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px
}
.home-container {
  min-width: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center
}
.home-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 20px
}
.home-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.home-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 5px;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1;
  color: #fff
}
.home-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  margin-top: 0
}
#authActionArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}
.home-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg,#3b82f6,#2563eb);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 10px 30px rgba(59,130,246,.3)
}
.home-login-btn span {
  color: #fff
}
.home-login-btn.is-primary {
  background: linear-gradient(135deg,#3b82f6,#2563eb);
  color: #fff;
  box-shadow: 0 10px 30px rgba(59,130,246,.3)
}
.home-login-btn:hover {
  transform: translateY(-3px)
}
.home-logout-btn {
  background: 0 0;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline
}
.home-user-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,.05);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 0
}
.home-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center
}
.home-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.home-user-info {
  text-align: left
}
.home-user-name {
  display: block;
  font-size: 14px;
  font-weight: 600
}
.home-user-id {
  display: block;
  font-size: 12px;
  opacity: .5
}
.home-hint {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin: 0
}
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  width: 90%;
  max-width: 100%;
  place-items: center
}
.feature-card {
  padding: 40px 30px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  transition: all .3s;
  width: 100%
}
.feature-card:hover {
  background: rgba(255,255,255,.05);
  transform: translateY(-5px)
}
.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #3b82f6
}
.feature-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px
}
.faq-item {
  width: 100%;
  text-align: left;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden
}
.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(255,255,255,.01)
}
.faq-answer p {
  padding: 0 30px 24px;
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7
}
.faq-question i {
  transition: transform .3s ease
}
.faq-item.is-open .faq-answer {
  max-height: 500px
}
.faq-item.is-open .ri-add-line {
  transform: rotate(45deg)
}
.section-desc {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  margin-top: -40px;
  margin-bottom: 50px;
  max-width: 560px
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: min(100%,760px);
  margin-bottom: 40px
}
@media (max-width:600px) {
  .pricing-grid {
    grid-template-columns: 1fr
  }
}
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: none
}
.pricing-card-pro {
  border-color: rgba(255,210,80,.4);
  background: rgba(255,210,80,.05)
}
.pricing-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px
}
.pricing-badge-pro {
  color: #ffd250
}
.pricing-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 1
}
.pricing-card-pro .pricing-price {
  color: #ffd250
}
.pricing-period {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px
}
.pricing-features li i {
  color: #4ade80;
  font-size: 16px;
  flex-shrink: 0
}
.pricing-feature-off {
  color: rgba(255,255,255,.3)!important
}
.pricing-feature-off i {
  color: rgba(255,255,255,.2)!important
}
.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s
}
.pricing-btn:hover {
  opacity: .85
}
.pricing-btn-free {
  background: rgba(255,255,255,.1);
  color: #fff
}
.pricing-btn-pro {
  background: #ffd250;
  color: #000
}
.pricing-addons {
  max-width: 680px;
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.75)
}
.pricing-addons h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px
}
.pricing-addons p {
  font-size: 14px;
  line-height: 1.6
}
.pricing-note {
  max-width: 680px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
  margin-top: 8px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}
.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all .3s
}
.contact-link:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px)
}
.home-footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  color: rgba(255,255,255,.3);
  font-size: 13px
}
.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px
}
.footer-links a {
  color: rgba(255,255,255,.3);
  text-decoration: none
}
.reveal {
  opacity: 0;
  transition: all .8s cubic-bezier(.165, .84, .44, 1)
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1)
}
.home-features-grid .reveal:nth-child(2) {
  transition-delay: 0.1s
}
.home-features-grid .reveal:nth-child(3) {
  transition-delay: 0.2s
}
@media (max-width:768px) {
  .home-title {
    font-size: 36px
  }
  .home-subtitle {
    font-size: 16px
  }
  .home-features-grid {
    grid-template-columns: 1fr
  }
  .quote-text {
    font-size: 28px;
    line-height: 1.2
  }
  .quote-sub {
    font-size: 14px
  }
}
.journey-section {
  height: 600vh;
  position: relative;
  z-index: 5;
  background: 0 0
}
.journey-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg,#ff9a9e 0,#fad0c4 100%);
  display: flex;
  align-items: center;
  justify-content: center
}
.journey-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(1px 1px at 20px 30px,#fff,rgba(0,0,0,0)),radial-gradient(1px 1px at 40px 70px,#fff,rgba(0,0,0,0)),radial-gradient(1.5px 1.5px at 100px 150px,#fff,rgba(0,0,0,0)),radial-gradient(2px 2px at 200px 250px,#fff,rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: var(--journey-stars-opacity, 0);
  transition: opacity 1s ease;
  pointer-events: none
}
.journey-sky-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,transparent 0,rgba(0,0,0,.4) 100%);
  pointer-events: none
}
.journey-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}
.journey-line-wrapper {
  position: absolute;
  left: 50%;
  top: 50px;
  bottom: 50px;
  transform: translateX(-50%);
  width: 2px;
  display: flex;
  flex-direction: column;
  opacity: var(--journey-elements-opacity, 0);
  transition: opacity .5s ease,left .6s ease
}
@media (max-width:1200px) {
  .journey-line-wrapper {
    left: 100px
  }
}
@media (max-width:768px) {
  .journey-line-wrapper {
    left: 40px
  }
}
.journey-line {
  width: 100%;
  height: var(--journey-line-height,0%);
  background: rgba(255,255,255,.2);
  border-radius: 1px
}
.journey-dot-start,
.journey-dot-today {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,.5);
  background: 0 0;
  border-radius: 50%;
  z-index: 10
}
.journey-dot-start {
  top: -25px
}
.journey-dot-start::after {
  content: attr(data-year);
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.8);
  font-size: 16px;
  font-weight: 700
}
.journey-dot-today {
  top: var(--journey-line-height,0);
  border-color: #2fb344;
  box-shadow: 0 0 10px rgba(47,179,68,.3)
}
.journey-dot-today::after {
  content: attr(data-label);
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap
}
.journey-marker {
  position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
  transition: all .6s ease
}
.journey-marker[data-year]::after {
  content: attr(data-year);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 600
}
.journey-marker.is-active {
  opacity: 1;
  background: #fff;
  box-shadow: 0 0 10px #fff
}
.journey-events {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0;
  width: 100%;
  pointer-events: none
}
.journey-event {
  position: absolute;
  top: var(--event-top);
  left: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: var(--event-opacity, 0);
  transition: all .5s ease,left .6s ease
}
@media (max-width:1200px) {
  .journey-event {
    left: 100px
  }
}
@media (max-width:768px) {
  .journey-event {
    left: 40px
  }
}
.journey-event::before {
  content: '';
  position: absolute;
  top: 50%;
  z-index: 1
}
.journey-event[data-side=left]::before {
  left: 0;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.15);
  transform: translateX(0)
}
.journey-event[data-side=right]::before {
  left: 0;
  width: 260px;
  height: 1px;
  background: rgba(255,255,255,.15);
  transform: translateX(0)
}
.journey-card {
  background: rgba(30,30,35,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  max-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .6s cubic-bezier(.165, .84, .44, 1);
  pointer-events: auto;
  position: relative;
  z-index: 2
}
.journey-card::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59,130,246,.5)
}
.journey-event[data-side=left] {
  justify-content: flex-start;
  padding-left: 100px;
  padding-right: 0;
  transition: all .5s ease,padding .6s ease
}
.journey-event[data-side=right] {
  justify-content: flex-start;
  padding-left: 200px;
  padding-right: 0;
  transition: all .5s ease,padding .6s ease
}
@media (max-width:1200px) {
  .journey-event[data-side=left] {
    padding-left: 100px
  }
  .journey-event[data-side=right] {
    padding-left: 160px
  }
  .journey-event[data-side=left]::before {
    width: 60px
  }
  .journey-event[data-side=right]::before {
    width: 180px
  }
}
@media (max-width:768px) {
  .journey-event[data-side=left] {
    padding-left: 60px
  }
  .journey-event[data-side=right] {
    padding-left: 120px
  }
  .journey-event[data-side=left]::before {
    width: 20px
  }
  .journey-event[data-side=right]::before {
    width: 120px
  }
}
.journey-event[data-side=left] .journey-card::before {
  left: -40px;
  right: auto
}
.journey-event[data-side=right] .journey-card::before {
  display: none
}
.journey-event[data-side=left] .journey-card {
  min-width: 220px;
  max-width: 280px;
  padding: 12px 18px;
  border-radius: 20px;
  background: rgba(20,20,25,.7);
  border: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(var(--event-x,-60px))
}
.journey-event[data-side=left] .journey-card i {
  width: 4px;
  height: 32px;
  background: #3b82f6;
  border-radius: 10px;
  color: transparent;
  font-size: 0;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(59,130,246,.3)
}
.journey-event[data-side=left] .journey-card h4 {
  margin: 0 0 2px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px
}
.journey-event[data-side=left] .journey-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.4)
}
.journey-event[data-side=right] .journey-card {
  min-width: auto;
  max-width: none;
  padding: 6px 14px;
  border-radius: 100px;
  gap: 10px;
  background: rgba(30,30,35,.8);
  transform: translateX(var(--event-x,-100px))
}
.journey-event[data-side=right] .journey-card i {
  width: 10px;
  height: 10px;
  background: #f0f399;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  box-shadow: 0 0 10px #f0f399,0 0 20px rgba(240,243,153,.4)
}
.journey-event[data-side=right] .journey-card h4 {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.9)
}
.journey-event[data-side=right] .journey-card p {
  display: none
}
.journey-quote {
  position: absolute;
  left: 8%;
  text-align: left;
  max-width: 400px;
  z-index: 20;
  opacity: var(--journey-quote-opacity, 0);
  transform: translateY(var(--journey-quote-y,20px));
  transition: all 1s ease
}
.quote-text {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #fff
}
.quote-sub {
  font-size: 18px;
  opacity: .6;
  color: #fff
}
.setup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,#0f172a 0,#1e1b4b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999
}
.setup-overlay.is-hidden {
  display: none
}
.setup-container {
  width: 90%;
  max-width: 440px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
  animation: setupFadeIn .6s cubic-bezier(.165,.84,.44,1)
}
@keyframes setupFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.setup-header {
  text-align: center;
  margin-bottom: 35px
}
.setup-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,#3b82f6,#2563eb);
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37,99,235,.3)
}
.setup-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: .5px
}
.setup-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin: 0
}
.setup-form {
  display: flex;
  flex-direction: column;
  gap: 25px
}
.setup-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.setup-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-left: 4px
}
.setup-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  transition: all .3s ease
}
.setup-input:focus {
  background: rgba(255,255,255,.08);
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,.15)
}
.setup-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 0 18px;
  transition: all .3s ease
}
.setup-input-group:has(.setup-input:focus) {
  background: rgba(255,255,255,.08);
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59,130,246,.15)
}
.setup-prefix {
  font-size: 14px;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  margin-right: 4px
}
.setup-input-group .setup-input {
  padding: 14px 0;
  background: 0 0;
  border: none;
  box-shadow: none
}
.setup-hint {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin: 4px 0 0 4px;
  transition: color .3s
}
.setup-hint.is-error {
  color: #f87171
}
.setup-hint.is-success {
  color: #4ade80
}
.setup-btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg,#3b82f6,#2563eb);
  color: #fff;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 10px 20px rgba(37,99,235,.2);
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center
}
.setup-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37,99,235,.3);
  filter: brightness(1.1)
}
.setup-btn:active:not(:disabled) {
  transform: translateY(0)
}
.setup-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  background: #475569;
  box-shadow: none
}