
:root {
  --rp-bg-gradient-top: #0391E3;
  --rp-bg-gradient-bottom: #0063A9;
  --rp-accent-orange: #E65A32;
  --rp-accent-gold: #F4B13C;
  --rp-bg-dark: #151A24;
  --rp-text-on-blue: #F3F5FA;
  --rp-surface-light: #FFFFFF;
  --rp-surface-alt: #F3F5FA;
  --rp-text-primary: #111827;
  --rp-text-secondary: #4B5563;
  --rp-divider: #E5E7EB;
}

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

body {
  margin: 0;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: var(--rp-surface-light);
  color: var(--rp-text-primary);
  line-height: 1.6;
}

a {
  color: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--rp-text-secondary);
  font-weight: 500; 
}

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

.lang-switch a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.lang-switch a.active {
  background: var(--rp-text-primary);
  color: #fff;
}

.hero {
  background: linear-gradient(145deg, var(--rp-bg-gradient-top), var(--rp-bg-gradient-bottom));
  color: var(--rp-text-on-blue);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(243,245,250,0.35);
  font-size: 0.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary {
  background: var(--rp-accent-orange);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.coming-pill {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(21,26,36,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.coming-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rp-accent-gold);
}

.hero-right {
  justify-self: center;
}

.hero-device {
  background: rgba(15,23,42,0.6);
  border-radius: 1.75rem;
  padding: 0.75rem;
  box-shadow: 0 20px 45px rgba(15,23,42,0.6);
  display: inline-block;
}

.hero-device-inner {
  background: #000;
  border-radius: 1.4rem;
  padding: 0.6rem;
}

.hero-device-screen {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
}

.hero-device-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-device-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  background: rgba(15,23,42,0.75);
  color: var(--rp-text-on-blue);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
}

.main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}

.section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rp-divider);
}

.section:last-of-type {
  border-bottom: none;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--rp-text-secondary);
  margin-bottom: 0.4rem;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.section-intro {
  max-width: 42rem;
  color: var(--rp-text-secondary);
}

.grid-3, .grid-2 {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--rp-surface-alt);
  border-radius: 1rem;
  padding: 1.25rem 1.3rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--rp-text-secondary);
}

ul.clean {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.highlight {
  background: rgba(3,145,227,0.08);
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
}

.faq-list details {
  background: var(--rp-surface-alt);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list details + details {
  margin-top: 0.7rem;
}

.contact-block {
  display: grid;
  gap: 1rem;
}

.contact-block a {
  color: var(--rp-accent-orange);
  text-decoration: none;
}

.footer {
  border-top: 1px solid var(--rp-divider);
  background: #fafbff;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2rem;
  font-size: 0.85rem;
  color: var(--rp-text-secondary);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--rp-text-secondary);
}

.footer-links a + a {
  margin-left: 0.9rem;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
  .hero-left {
    order: 1;
  }
  .hero-right {
    order: 0;
    justify-self: flex-start;
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-direction: row;
  }
  nav {
    gap: 0.75rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
