:root {
  --bg: #06080f;
  --bg-2: #0b0f18;
  --panel: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f5fb;
  --muted: #a9b0bf;
  --gold: #d7b26d;
  --gold-2: #f3d3a0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(77, 96, 170, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(215, 178, 109, 0.12), transparent 20%),
    linear-gradient(180deg, #06080f 0%, #0a0e16 100%);
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 8, 15, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  padding: 76px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
}

.hero h1,
.section-head h2,
.waitlist-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.04;
}

.hero-text{
max-width:520px;
line-height:1.7;
font-size:16px;
color:#a9b0bf;
}
.section-head p,
.feature-card p,
.preview-caption p,
.video-caption,
.benefit-card p,
.waitlist-copy p,
.faq p,
.footer-text,
.hero-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.launch-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.launch-box > div:first-child {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.launch-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.launch-badge {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(215, 178, 109, 0.12);
  border: 1px solid rgba(215, 178, 109, 0.28);
  color: var(--gold-2);
  font-weight: 700;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.count-item {
  min-width: 92px;
  text-align: center;
  padding: 14px 12px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.count-item span {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
}

.count-item small {
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card{
    position: relative;
    display: inline-block;
    padding: 30px;
    border-radius: 50px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(0,0,0,0.4));
    box-shadow:
        0 40px 120px rgba(0,0,0,0.8),
        0 0 80px rgba(0,0,0,0.5) inset;
}

.phone-card img{
    width: 320px;
    border-radius: 42px;
    display: block;
}

.trust-strip {
  padding: 18px 0 8px;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 78px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.preview-card,
.video-card,
.benefit-card,
.waitlist-box,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-card,
.benefit-card {
  padding: 24px;
  border-radius: var(--radius);
}

.feature-card h3,
.benefit-card h3,
.preview-caption h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.preview-card {
  border-radius: 24px;
  overflow: hidden;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.preview-card:hover img {
  transform: scale(1.03);
}

.preview-caption {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.video-card {
  border-radius: 24px;
  overflow: hidden;
  padding: 10px;
}

.video-card video {
  width: 100%;
  border-radius: 18px;
  background: #000;
}

.video-caption {
  padding: 14px 6px 4px;
  text-align: center;
}

.waitlist-box {
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-form input[type="email"] {
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 0 16px;
  font-size: 1rem;
}

.waitlist-form input[type="email"]:focus {
  outline: 2px solid rgba(215, 178, 109, 0.28);
  border-color: rgba(215, 178, 109, 0.4);
}

.waitlist-form small {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 18px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  padding: 38px 0 52px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-grid,
  .waitlist-box,
  .feature-grid,
  .benefit-grid,
  .preview-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav {
    min-height: 70px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 52px;
  }

  .hero h1,
  .section-head h2,
  .waitlist-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .count-item {
    min-width: calc(50% - 6px);
  }

  .waitlist-box {
    padding: 22px;
  }
}
      
.social-proof {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(215, 178, 109, 0.1);
  border: 1px solid rgba(215, 178, 109, 0.25);
  color: var(--gold-2);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
      
      .store-coming {
  margin-top: 18px;
}

.store-coming span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
      
      .angle-highlight {
  margin-bottom: 26px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(215, 178, 109, 0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(215, 178, 109, 0.20);
  box-shadow: var(--shadow);
}

.angle-highlight-text h3 {
  margin: 10px 0 10px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.angle-highlight-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.angle-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 178, 109, 0.14);
  border: 1px solid rgba(215, 178, 109, 0.26);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
      
      .privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
      
      .early-warning{
margin:0;
padding:12px 16px;
border-radius:12px;
background:rgba(215,178,109,0.12);
border:1px solid rgba(215,178,109,0.25);
color:var(--gold-2);
font-size:0.92rem;
font-weight:600;
}
      
      .problem-solution {
  padding: 26px 0 10px;
}

.problem-box {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(215,178,109,0.06));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.problem-text h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.problem-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
      
      .preview-intro {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 760px;
}

.preview-intro h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.preview-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
      
      .platform-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
      
      .waitlist{
text-align:center;
margin-top:120px;
}

.waitlist-form{
margin-top:25px;
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.waitlist-form input{
padding:14px 18px;
border-radius:10px;
border:none;
width:260px;
font-size:16px;
}

.waitlist-form button{
padding:14px 22px;
border-radius:10px;
border:none;
background:#4a6cff;
color:white;
font-weight:600;
cursor:pointer;
transition:0.2s;
}

.waitlist-form button:hover{
background:#3453ff;
}
      
      #form-message{
margin-top:15px;
font-size:15px;
color:#8fd18f;
}
      
      .form-message {
  margin: 8px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-message.success {
  color: #8fd18f;
}

.form-message.error {
  color: #ff8f8f;
}
      
      .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #101521 0%, #0b0f18 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.popup-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.popup-box h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.popup-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.popup-btn {
  margin-top: 22px;
  width: 100%;
}
      
      .contact-note{
margin-top:18px;
max-width:520px;
}

.contact-note p{
margin:0 0 8px;
color:var(--muted);
line-height:1.7;
}

.contact-note a{
color:var(--gold-2);
font-weight:700;
text-decoration:none;
}

.contact-note a:hover{
text-decoration:underline;
}
      
      .brand{
display:flex;
align-items:center;
gap:10px;
font-size:1.1rem;
font-weight:800;
letter-spacing:0.18em;
}

.brand img{
width:34px;
height:34px;
}
      
      .hero-logo{
width:70px;
margin-bottom:14px;
}
      
      .site-header {
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav {
  transition: min-height 0.25s ease;
}

@media (max-width: 768px){

  .nav{
    min-height: 64px;
  }

  .brand img{
    width:28px;
    height:28px;
  }

  .hero{
    padding:60px 0 40px;
  }

  .hero h1{
    font-size:2rem;
    line-height:1.25;
  }

  .hero-text{
    font-size:0.95rem;
    line-height:1.7;
  }

  .hero-logo{
    width:54px;
  }

  .phone-card{
    padding:16px;
    border-radius:36px;
  }

  .phone-card img{
    width:100%;
    max-width:260px;
  }

  .preview-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .preview-card img{
    border-radius:16px;
  }

  .video-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .waitlist-box{
    grid-template-columns:1fr;
    gap:26px;
  }

  .waitlist-form{
    flex-direction:column;
    align-items:stretch;
  }

  .waitlist-form input{
    width:100%;
  }

  .waitlist-form button{
    width:100%;
  }

  .footer-wrap{
    grid-template-columns:1fr;
    gap:24px;
  }

}