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

:root {
  --bg: #fbfbfb;
  --fg: #0a0d14;
  --muted: #4f4f4f;
  --card-bg: #fff;
  --pill-bg: #0a0d14;
  --pill-bg-2: #fff;
  --pill-fg: #fff;
  --pill-fg-2: #0a0d14;
  --accent: #0a0d14;
  /* --accent2: #cb460e; used orange previously */
  --accent2: #00C38E;
  --radius-pill: 999px;
  --radius-card: 18px;
  --phone-w: 200px;
  --phone-h: 420px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
  align-items: center;
  justify-content: center;
  justify-items: center;
  display: flex;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100vw;
}

.main-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 50px 20px;
}

.section-inner {
  max-width: 100%;
  margin: 0 auto;
}

.section-title {
  line-height: 40px;
  max-width: 640px;
  text-align: center;
  justify-self: center;
}
.section-title.hero-title {
  line-height: 58px !important;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  max-width: 400px;
  line-height: 24px;
  /* margin-bottom: 32px; */
  justify-self: center;
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #00C38E;
  display: block;
  text-align: center;
}

.section-two-col .section-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

.section-center .section-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  text-align: center;
  gap: 16px;
}

.section-center .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section--grid .section-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.body-text {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
}


.nav-logo {
  width: 120px;
}

h1{
  font-size: 48px;
  font-weight: 600;
}

h2{
  font-size: 32px;
  font-weight: 500;
}

button{
  font-family: 'Inter' sans-serif
}

/* ── NAVBAR ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fbfbfb;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #0a0d14;
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--fg);
  line-height: 1;
  height: 100%;
}

.nav-logo img {
  width: 120px
}

.nav-logo svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: color 0.2s;
}

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



.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pill-bg);
  color: var(--pill-fg);
  border-radius: var(--radius-pill);
  padding: 9px 18px 9px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: scale(0.98);
}

.nav-cta .cta-icon {
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav-cta .cta-icon svg {
  width: 12px;
  height: 12px;
  fill: #0a0d14;
}

@media screen and (max-width: 900px) {
  .nav-content {
    padding:10px 15px ;
  }
}

.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-chevron {
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
}

.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown {
  display: block;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.eroam-btn.nav-dropdown-trigger svg{
  width: 12px;
  height: 12px;
}

.nav-dropdown-item:hover {
  background: rgba(0,0,0,0.04);
}

.nav-dropdown-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}

.nav-dropdown-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.nav-dropdown-sub {
  display: block;
  font-size: 12px;
  opacity: 0.5;
  margin-top: 1px;
}

/* ── MOBILE ── */
@media (max-width: 820px) {
  
  .nav-mobile-cta.nav-dropdown-wrap {
    overflow: visible;
    position: relative;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    min-width: unset;
    gap: 20px;
    width: 100%;
    margin-top: 8px;
    background: #fff;
  }
  .nav-dropdown-item {
    margin-bottom: 15px;
  }
}

.eroam-btn {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;

  background: var(--pill-bg);
  color: var(--pill-fg);
  border: 1px solid var(--pill-bg);

  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 12px;

  text-decoration: none;

  transform: translate3d(0, 0, 0);
  transition: color 0.35s ease;
  z-index: 0;
  backface-visibility: hidden;
  isolation: isolate;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-synthesis: none;
}


.eroam-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #fbfbfb;


  transform-origin: bottom;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0) scaleY(0);

  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);

  z-index: 0;
}



.eroam-btn:hover::before {
  transform: translateZ(0) scaleY(1);
}

.eroam-btn:hover {
  color: black;
}



.eroam-btn-text {
  display: inline-block;
  transform: translateZ(0);
  will-change: color;
  font-size: 14px;
  font-weight: 500;
}

.eroam-btn-icon {
  display: flex;
  transform: translateZ(0);
  will-change: color;
}

.eroam-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent2);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;

  /* wipe setup */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition: color 0.35s ease;
  -webkit-font-smoothing: antialiased;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: bottom;
  transform: translateZ(0) scaleY(0);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.hero-btn:hover::before {
  transform: translateZ(0) scaleY(1);
}

.hero-btn:hover {
  color: var(--accent2);
}


.hero-btn svg {
  display: inline-block;
  transform: translateZ(0);
  will-change: color;
}

@media (max-width: 767px) {
  .nav .eroam-btn {
    display: none
  }
}

.store-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
  }

  .store-btn-two {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 9px;

  background: var(--pill-bg-2);
  color: var(--pill-fg-2);
  border: 2px solid var(--pill-bg-2) ;

  border-radius: var(--radius-pill);
  padding: 12px 24px;

  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;

  transition: color 0.35s ease;
  z-index: 0;
}


  .store-btn-two::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #000000;

  transform: scaleY(0);
  transform-origin: bottom;

  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);

  z-index: 0;
}

  .store-btn-two svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-btn-two * {
  position: relative;
  z-index: 1;
}
.store-btn-two:hover::before {
  transform: scaleY(1);
}

.store-btn-two:hover {
  color: #fff;
}

/* preloader */
#intro-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}


.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.loading-text {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding-top: 5px;
}

.sim-icon {
  width: 90px;
  filter: blur(10px);
  opacity: 0;
  animation: focusIn 1s ease forwards;
}

@keyframes focusIn {
  to {
    filter: blur(0);
    opacity: 1;
  }
}

.signal-bars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.signal-bars span {
  width: 6px;
  height: 10px;
  background: #0a0d14;
  border-radius: 2px;
  opacity: 0.3;
  animation: signal 1.2s infinite;
}

.signal-bars span:nth-child(2) {
  animation-delay: 0.2s;
}

.signal-bars span:nth-child(3) {
  animation-delay: 0.4s;
}

.signal-bars span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes signal {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.8);
  }
}

.connected .sim-icon {
  animation: glow 0.8s ease forwards;
}

@keyframes glow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

#intro-loader::before,
#intro-loader::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #ffffff;
  top: 0;
  z-index: 1;
  transition: transform 0.8s ease;
}

#intro-loader::before {
  left: 0;
}

#intro-loader::after {
  right: 0;
}

#intro-loader.exit::before {
  transform: translateX(-100%);
}

#intro-loader.exit::after {
  transform: translateX(100%);
}

.intro-content.fade-out {
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

/* faq */

.faq-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.2s ease;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.faq-question {
  width: 100%;
  font-family: inherit;
  padding: 24px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}



.icon {
  font-size: 22px;
  margin-left: 15px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 0 28px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}


.faq-item.active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq-item.active .faq-answer {
  font-size: 14px;
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: var(--accent2);
}



/* ─────────────────────────────────────
   8. CTA BANNER
───────────────────────────────────── */
.cta-section {
  padding: 80px 40px 100px;
  background: var(--bg);
}
.cta-banner {
  max-width: 1060px; margin: 0 auto;
  background: #0a0d14;
  border-radius: 28px;
  padding: 70px 60px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,80,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-left h2 {
  color: #fff; margin-bottom: 10px;
}
.cta-left p { font-size: 0.9rem; color: rgba(255,255,255,0.45); max-width: 360px; line-height: 1.6; }
.cta-right { display: flex; gap: 12px; flex-shrink: 0; }

.cta-section .store-buttons{
  margin-bottom: 0;
}

.cta-right .nav-dropdown {
  bottom: calc(100% + 12px);
  top: auto;
}
.cta-right .nav-dropdown-wrap {
  position: relative;
}

.cta-right .nav-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  top: auto;
  right: 0;
}
@media (max-width: 840px) {
  /* only the nav mobile dropdown goes static */
  .nav-mobile-cta.nav-dropdown-wrap .nav-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    min-width: unset;
    width: 100%;
    margin-top: 8px;
    background: #fff;
  }
}

/* footer */
footer-two {
  background: #0a0d14;
  /* padding: 50px 40px 32px; */
}

.footer-two-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 40px 32px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-two-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.footer-two-brand span {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.footer-two-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 220px;
  line-height: 1.5;
}

.footer-two-links {
  display: flex;
  gap: 60px;
}

.footer-two-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-two-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-two-col a {
  text-decoration: none;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-two-col a:hover {
  color: #fff;
}

.footer-two-bottom {
  max-width: 1060px;
  margin: 24px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  padding: 0 40px 0 40px;
}

@media (max-width: 740px){
  .footer-two-inner { flex-direction: column; gap: 36px; }
  .footer-two-links { flex-wrap: wrap; justify-content: space-between; width: 100%; text-align:left}
}

.store-btn-two .nav-dropdown-chevron { margin-left: 6px; }