:root {
  --primary: #f97316;
  --primary-glow: rgba(249, 115, 22, 0.4);
  --secondary: #ea580c;
  --accent: #fdba74;
  --accent-glow: rgba(253, 186, 116, 0.3);
  --bg-from: #1a0f00;
  --bg-via: #3d2200;
  --bg-to: #0f0800;
  --card-bg: rgba(61, 34, 0, 0.6);
  --card-border: rgba(249, 115, 22, 0.2);
  --text-light: #ffffff;
  --text-muted: #d1d5db;
}

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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+Pro:wght@400;600&family=Fira+Code&display=swap');

body {
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--bg-from) 0%, var(--bg-via) 50%, var(--bg-to) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(249, 115, 22, 0.03) 2px, rgba(249, 115, 22, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
}

.l0n1-floating-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.l0n1-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: l0n1-float 20s infinite ease-in-out;
}

.l0n1-orb:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--primary-glow);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.l0n1-orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--accent-glow);
  bottom: 20%;
  right: 10%;
  animation-delay: -7s;
}

.l0n1-orb:nth-child(3) {
  width: 250px;
  height: 250px;
  background: var(--primary-glow);
  top: 50%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes l0n1-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

.l0n1-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.l0n1-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 15, 0, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.l0n1-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.l0n1-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-logo:hover {
  transform: scale(1.02);
  color: var(--accent);
}

.l0n1-logo-icon {
  font-size: 32px;
}

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

.l0n1-nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.l0n1-badge-18 {
  background: var(--primary);
  color: var(--bg-from);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--secondary);
}

.l0n1-badge-ticket {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: 8px 16px;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}

.l0n1-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.l0n1-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.l0n1-hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
}

.l0n1-hero-content {
  z-index: 2;
}

.l0n1-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.l0n1-hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.l0n1-hero-image {
  position: relative;
  z-index: 2;
}

.l0n1-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--card-border);
  box-shadow: 0 20px 60px var(--primary-glow);
}

.l0n1-btn {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border-radius: 6px;
  border: 2px solid var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

.l0n1-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.l0n1-btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.l0n1-btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

.l0n1-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.l0n1-section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
  transform: skewY(-1deg);
}

.l0n1-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary);
}

.l0n1-download-section {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.l0n1-download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.l0n1-form-group {
  margin-bottom: 20px;
}

.l0n1-input {
  width: 100%;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--card-border);
  border-radius: 6px;
  color: var(--text-light);
  font-size: 16px;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.l0n1-success-message {
  display: none;
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid #22c55e;
  border-radius: 6px;
  padding: 20px;
  color: #86efac;
  font-weight: 600;
}

.l0n1-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.l0n1-feature-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.l0n1-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-feature-card:hover {
  transform: scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.l0n1-feature-card:hover::before {
  opacity: 1;
}

.l0n1-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.l0n1-feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.l0n1-feature-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.l0n1-about-content {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.l0n1-about-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}

.l0n1-about-content p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.l0n1-trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.l0n1-trust-badge {
  text-align: center;
}

.l0n1-trust-badge-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.l0n1-trust-badge-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.l0n1-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.l0n1-faq-item {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
}

.l0n1-faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
}

.l0n1-faq-question:hover {
  border-left-color: var(--primary);
  background: rgba(249, 115, 22, 0.05);
}

.l0n1-faq-toggle {
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-faq-question.active .l0n1-faq-toggle {
  transform: rotate(180deg);
}

.l0n1-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-faq-answer-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.l0n1-disclaimer {
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.5);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin: 80px 0;
}

.l0n1-disclaimer h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: #fca5a5;
  margin-bottom: 16px;
}

.l0n1-disclaimer p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.l0n1-footer {
  background: rgba(26, 15, 0, 0.9);
  border-top: 2px solid var(--card-border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.l0n1-footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.l0n1-footer-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 20px;
}

.l0n1-footer-col p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.l0n1-footer-links {
  list-style: none;
}

.l0n1-footer-links li {
  margin-bottom: 12px;
}

.l0n1-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-footer-links a:hover {
  color: var(--primary);
}

.l0n1-footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.l0n1-copyright {
  color: var(--text-muted);
  font-size: 14px;
}

.l0n1-footer-18-badge {
  background: var(--primary);
  color: var(--bg-from);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 24px;
  border: 3px solid var(--secondary);
}

.l0n1-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.l0n1-modal-content {
  background: linear-gradient(135deg, var(--bg-from) 0%, var(--bg-via) 100%);
  border: 3px solid var(--primary);
  border-radius: 8px;
  padding: 50px;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px var(--primary-glow);
}

.l0n1-modal-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.l0n1-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.l0n1-modal-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.l0n1-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.l0n1-table {
  width: 100%;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0;
}

.l0n1-table th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-light);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.l0n1-table td {
  padding: 16px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-muted);
}

.l0n1-table tr:last-child td {
  border-bottom: none;
}

.l0n1-table tr:hover td {
  background: rgba(249, 115, 22, 0.05);
}

.l0n1-content-page {
  padding: 40px 0 80px;
  min-height: 70vh;
}

.l0n1-content-header {
  text-align: center;
  margin-bottom: 60px;
}

.l0n1-content-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.l0n1-content-subtitle {
  color: var(--text-muted);
  font-size: 18px;
}

.l0n1-content-block {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 30px;
}

.l0n1-content-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
}

.l0n1-content-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.l0n1-content-block ul {
  margin-left: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.l0n1-content-block ul li {
  margin-bottom: 8px;
}

.l0n1-strategy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.l0n1-strategy-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 8px;
  padding: 30px;
}

.l0n1-strategy-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 12px;
}

.l0n1-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.l0n1-back-link:hover {
  transform: translateX(-5px);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .l0n1-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .l0n1-hero-title {
    font-size: 42px;
  }
  .l0n1-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .l0n1-faq-grid {
    grid-template-columns: 1fr;
  }
  .l0n1-footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .l0n1-hamburger {
    display: flex;
  }
  .l0n1-nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 15, 0, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--card-border);
  }
  .l0n1-nav-links.active {
    left: 0;
  }
  .l0n1-hero-title {
    font-size: 36px;
  }
  .l0n1-hero-subtitle {
    font-size: 18px;
  }
  .l0n1-features-grid {
    grid-template-columns: 1fr;
  }
  .l0n1-section-title {
    font-size: 32px;
  }
  .l0n1-download-section {
    padding: 40px 20px;
  }
  .l0n1-about-content {
    padding: 30px 20px;
  }
  .l0n1-footer-columns {
    grid-template-columns: 1fr;
  }
  .l0n1-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .l0n1-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  .l0n1-strategy-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .l0n1-hero-title {
    font-size: 28px;
  }
  .l0n1-section {
    padding: 60px 0;
  }
  .l0n1-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
  .l0n1-content-title {
    font-size: 32px;
  }
}