:root{
  --bg:#040816;
  --bg2:#08112a;
  --card:rgba(255,255,255,.055);
  --card2:rgba(255,255,255,.035);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.08);
  --text:#edf2ff;
  --muted:#a6b3d1;
  --cyan:#6fe5ff;
  --blue:#4d84ff;
  --violet:#8b5dff;
  --shadow:0 30px 90px rgba(0,0,0,.42);
  --radius:28px;
  --max:1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg),#071022 48%,#050816 100%);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}

.bg-layer,
.grid-overlay{
  position:fixed;
  inset:0;
  pointer-events:none;
}
.bg1{
  background:
    radial-gradient(circle at 10% 20%, rgba(139,93,255,.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(111,229,255,.14), transparent 22%),
    radial-gradient(circle at 58% 78%, rgba(77,132,255,.12), transparent 26%);
}
.bg2{
  background:
    radial-gradient(circle at 60% 28%, rgba(255,255,255,.03), transparent 40%);
  filter:blur(24px);
}
.grid-overlay{
  opacity:.16;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.88), transparent 95%);
}

.site-header{
  position:relative;
  z-index:5;
  max-width:var(--max);
  margin:0 auto;
  padding:18px 24px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--cyan),var(--blue),var(--violet));
  box-shadow:0 0 40px rgba(77,132,255,.34);
}
.brand-title{
  font-size:18px;
  font-weight:700;
  line-height:1;
}
.brand-sub{
  margin-top:4px;
  font-size:11px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(255,255,255,.42);
}

.top-nav{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}
.top-nav a{
  color:rgba(255,255,255,.74);
  font-size:14px;
}
.top-nav a:hover{
  color:#fff;
}

.lang-switch{
  display:flex;
  gap:10px;
  justify-self:end;
}
.lang-btn{
  min-width:44px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.86);
  font-size:14px;
  transition:all .18s ease;
}
.lang-btn:hover{
  background:rgba(255,255,255,.08);
}
.lang-btn.active{
  background:linear-gradient(90deg,var(--violet),var(--blue));
  color:#fff;
  box-shadow:0 12px 34px rgba(77,132,255,.25);
}

.container{
  position:relative;
  z-index:3;
  max-width:var(--max);
  margin:0 auto;
  padding:26px 24px 80px;
}

.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
  min-height:calc(100vh - 110px);
  padding:26px 0 40px;
}
.hero-copy{
  max-width:670px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(20px);
  color:rgba(255,255,255,.76);
  font-size:13px;
}

.hero h1{
  margin:18px 0 0;
  font-size:clamp(52px,7vw,84px);
  line-height:.97;
  letter-spacing:-.05em;
}
.hero h1 span{
  color:var(--cyan);
  background:linear-gradient(90deg,var(--cyan),#77c8ff,var(--violet));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-text{
  margin:26px 0 0;
  font-size:18px;
  line-height:1.85;
  color:var(--muted);
  max-width:640px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 26px;
  border-radius:20px;
  font-weight:700;
  transition:transform .18s ease, opacity .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(90deg,var(--cyan),var(--violet));
  color:#08111d;
  box-shadow:0 18px 48px rgba(77,132,255,.28);
}
.btn-secondary{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:#fff;
}
.btn.full{width:100%}

.feature-chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.feature-chips span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--stroke2);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.72);
  font-size:13px;
}

.hero-visual{
  position:relative;
}
.visual-shell{
  position:relative;
  border:1px solid var(--stroke);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.035));
  border-radius:34px;
  padding:18px;
  backdrop-filter:blur(22px);
  box-shadow:var(--shadow);
}
.visual-shell::before{
  content:"";
  position:absolute;
  inset:-24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(111,229,255,.16), transparent 22%),
    radial-gradient(circle at 24% 22%, rgba(139,93,255,.16), transparent 24%);
  filter:blur(30px);
  z-index:-1;
}
.mock-header{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.live-badge,
.status-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.20);
  color:rgba(255,255,255,.8);
}
.property-mock{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--stroke2);
  background:#08101f;
}
.property-media{
  position:relative;
  min-height:285px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.12), transparent 16%),
    radial-gradient(circle at 72% 62%, rgba(111,229,255,.16), transparent 20%),
    linear-gradient(135deg,#16243f,#0d172c 54%,#091120 100%);
}
.property-media-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.72), transparent 56%);
}
.property-title-wrap{
  position:absolute;
  left:22px;
  right:22px;
  bottom:18px;
  z-index:2;
}
.property-title-wrap h3{
  margin:0;
  font-size:28px;
  line-height:1.05;
}
.property-title-wrap p{
  margin:10px 0 0;
  color:rgba(255,255,255,.7);
  font-size:15px;
}
.mock-content{
  display:grid;
  grid-template-columns:1fr .96fr;
  gap:20px;
  padding:22px;
}
.section-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:rgba(255,255,255,.40);
}
.mock-info p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}
.mock-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:18px;
}
.mock-tags span{
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke2);
  color:rgba(255,255,255,.78);
}
.voice-card{
  padding:18px;
  border-radius:26px;
  border:1px solid var(--stroke2);
  background:linear-gradient(180deg,rgba(7,12,24,.96),rgba(12,21,39,.92));
}
.orb-preview{
  position:relative;
  width:190px;
  height:190px;
  margin:22px auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ring{
  position:absolute;
  inset:0;
  border-radius:999px;
}
.ring-a{
  border:1px solid rgba(111,229,255,.22);
  box-shadow:0 0 40px rgba(111,229,255,.13);
  animation:floatPulse 3.4s ease-in-out infinite;
}
.ring-b{
  inset:16px;
  border:1px solid rgba(139,93,255,.22);
  animation:floatPulse 2.8s ease-in-out infinite reverse;
}
.core{
  position:absolute;
  inset:40px;
  border-radius:999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.4), rgba(111,229,255,.2), rgba(77,132,255,.18), rgba(139,93,255,.18), transparent 74%);
  box-shadow:
    0 0 70px rgba(77,132,255,.24),
    inset 0 0 30px rgba(255,255,255,.06);
}
.orb-label{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:130px;
}
.orb-label small{
  display:block;
  color:rgba(255,255,255,.55);
  margin-bottom:6px;
}
.orb-label strong{
  font-size:16px;
  line-height:1.2;
}

.voice-note{
  margin:14px 0 0;
  text-align:center;
  color:rgba(255,255,255,.56);
  line-height:1.72;
  font-size:13px;
}
.mini-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.mini-card{
  padding:16px;
  border-radius:22px;
  border:1px solid var(--stroke2);
  background:rgba(255,255,255,.04);
}
.mini-card strong{
  display:block;
  font-size:16px;
}
.mini-card span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  line-height:1.6;
  font-size:13px;
}

.info-section{
  margin-top:76px;
}
.section-head{
  max-width:760px;
}
.section-head h2{
  margin:16px 0 0;
  font-size:clamp(32px,4vw,52px);
  letter-spacing:-.04em;
}
.steps-grid,
.use-grid{
  display:grid;
  gap:18px;
  margin-top:28px;
}
.steps-grid{
  grid-template-columns:repeat(3,1fr);
}
.use-grid{
  grid-template-columns:repeat(4,1fr);
}
.step-card,
.use-card{
  padding:24px;
  border-radius:24px;
  border:1px solid var(--stroke2);
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(18px);
}
.step-number{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--cyan),var(--blue),var(--violet));
  color:#08111d;
  font-weight:800;
  margin-bottom:18px;
}
.step-card h3,
.use-card h3{
  margin:0;
  font-size:22px;
}
.step-card p,
.use-card p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.8;
}

.bottom-strip{
  margin-top:68px;
}
.bottom-card{
  padding:22px 26px;
  border-radius:28px;
  border:1px solid var(--stroke);
  background:linear-gradient(90deg,rgba(139,93,255,.18),rgba(77,132,255,.12),rgba(111,229,255,.10));
  color:#edf2ff;
  line-height:1.8;
  font-size:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.24);
}

@keyframes floatPulse{
  0%,100%{transform:scale(1); opacity:.95}
  50%{transform:scale(1.04); opacity:.65}
}

@media (max-width:1180px){
  .hero,
  .mock-content{
    grid-template-columns:1fr;
  }
  .use-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:960px){
  .site-header{
    grid-template-columns:1fr;
    justify-items:start;
  }
  .top-nav{
    justify-content:flex-start;
  }
  .lang-switch{
    justify-self:start;
  }
  .steps-grid,
  .mini-cards{
    grid-template-columns:1fr;
  }
}
@media (max-width:720px){
  .top-nav{display:none}
  .use-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:auto;
    padding-top:10px;
  }
  .btn{
    width:100%;
  }
}
@media (max-width:640px){
  .container,
  .site-header{
    padding-left:16px;
    padding-right:16px;
  }
  .property-media{
    min-height:230px;
  }
  .hero h1{
    font-size:46px;
  }
}

.site-footer{
  margin-top:70px;
  padding:26px 0 10px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.8;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a,
.footer-meta a{
  color:rgba(255,255,255,.82);
}

.footer-links a:hover,
.footer-meta a:hover{
  color:#fff;
}

.footer-meta{
  text-align:right;
}

@media (max-width:720px){
  .site-footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-meta{
    text-align:left;
  }
}