﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
  color: #444;
}

strong { font-weight: 600; }
em { font-style: italic; }

.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #6e44ff;
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 1.8em;
  margin-right: 8px;
}

.footer {
  padding: 60px 0 30px;
  background: #1a1a1a;
  color: #ccc;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.logo-footer {
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.logo-footer .logo-icon {
  font-size: 1.6em;
  margin-right: 8px;
}

.footer-right a {
  margin-left: 1.5rem;
  color: #aaa;
  font-weight: 500;
}

.footer-right a:hover {
  color: #6e44ff;
}

.cta-button,
.join-btn,
.submit-btn {
  display: inline-block;
  background: #6e44ff;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button:hover,
.join-btn:hover,
.submit-btn:hover {
  background: #5a33e6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(110, 68, 255, 0.3);
}

.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 1.8rem;
  color: #6e44ff;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.mission {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin: 1.5rem 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/* ========================================
   PHONE MOCKUP — С РЕАЛЬНЫМ СКРИНШОТОМ
   ======================================== */
.phone-mockup {
  width: 280px;
  height: 540px;
  background: #000;
  border-radius: 36px;
  padding: 20px; /* Внутренние отступы = чёрные поля */
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  z-index: 2;
}

.screen {
  background: #fff;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 0; /* Убираем любые внутренние границы */
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Или cover — зависит от твоего screen.webp */
  display: block;
  border-radius: 24px; /* Чтобы края картинки не выходили за закругления */
}

/* Адаптивность */
@media (max-width: 768px) {
  .phone-mockup {
    width: 240px;
    height: 460px;
  }
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.features,
.why,
.privacy,
.compliance,
.join {
  padding: 100px 0;
}

.features {
  background: #f9f9ff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.why-list {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.why-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #444;
}

.why-list li i {
  color: #6e44ff;
  font-size: 1.2rem;
}

.compliance {
  padding: 60px 0;
  background: #fff;
}

.compliance-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.compliance-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-weight: 500;
  transition: color 0.3s;
}

.compliance-link:hover {
  color: #6e44ff;
}

.compliance-link i {
  color: #6e44ff;
}

.join {
  background: linear-gradient(135deg, #6e44ff 0%, #5a33e6 100%);
  color: white;
  text-align: center;
}

.join h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.join .sub {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  opacity: 0.9;
  color: white;
}

.join p {
  color: white;
}

.waitlist-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto;
  gap: 0;
}

.waitlist-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
}

.join-btn {
  background: #fff;
  color: #6e44ff;
  border: none;
  padding: 0 32px;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
}

.join-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
  color: white;
}

.privacy-hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.privacy-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.privacy-hero .subtitle {
  font-size: 1.5rem;
  color: #6e44ff;
  margin-bottom: 1.5rem;
}

.dates {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #555;
}

.privacy-content-section {
  padding: 80px 0;
}

.privacy-content-section .section {
  margin-bottom: 3rem;
}

.privacy-content-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #6e44ff;
  display: inline-block;
}

.privacy-content-section p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.7;
}

.data-list,
.check-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

    .data-list li,
    .check-list li {
        margin-bottom: 1rem;
        position: relative;
        color: #444;
    }

        .check-list li::before {
            content: "✓";
            color: #6e44ff;
            font-weight: bold;
            position: absolute;
            left: -1.5rem;
        }

.highlight {
  background: #fff8e6;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  color: #d35400;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.1);
}

.email-link {
  color: #6e44ff;
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.contact-info {
  background: #f8f9ff;
  padding: 2rem;
  border-radius: 16px;
  border-left: 5px solid #6e44ff;
}

.terms-hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.terms-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.terms-hero .subtitle {
  font-size: 1.5rem;
  color: #6e44ff;
  margin-bottom: 1.5rem;
}

.terms-hero .dates {
  font-size: 1rem;
  color: #555;
}

.terms-content-section {
  padding: 80px 0;
}

.terms-content-section .section {
  margin-bottom: 3rem;
}

.terms-content-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #6e44ff;
  display: inline-block;
}

.terms-content-section p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.7;
}

.prohibited-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

    .prohibited-list li {
        margin-bottom: 1rem;
        position: relative;
        color: #d35400;
        font-weight: 500;
    }

        .prohibited-list li::before {
            content: "✕";
            color: #e74c3c;
            font-weight: bold;
            position: absolute;
            left: -1.5rem;
        }

.external-link {
  color: #6e44ff;
  font-weight: 600;
}

.external-link:hover {
  text-decoration: underline;
}

.scope {
  font-family: 'Courier New', monospace;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
  display: inline-block;
}

.notice-box {
  background: #fff8e6;
  border: 1px solid #ffe58f;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2.5rem 0;
  font-size: 0.95rem;
  color: #d35400;
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.1);
}

.notice-box p {
  margin: 0;
  line-height: 1.6;
}

.notice-box code {
  background: #fff3e0;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
}

.nav-toggle { display: none; }

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 0;
  z-index: 1001;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #6e44ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#nav-toggle:checked + .hamburger .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle:checked + .hamburger .bar:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked + .hamburger .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
}

.nav a {
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
}

.nav a:hover {
  color: #6e44ff;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
    z-index: 1000;
    align-items: center;
    gap: 1.5rem;
  }
  #nav-toggle:checked ~ .nav { display: flex; }
  .nav a {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input,
  .join-btn { border-radius: 50px; }
  .join-btn { margin-top: 1rem; }
  .privacy-hero h1 { font-size: 2.2rem; }
  .dates { flex-direction: column; gap: 0.5rem; }
  .privacy-content-section h2 { font-size: 1.4rem; }
}