/* Business Plan Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #000000;
  color: #e0e0e0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-size: 1rem;
}

a { color: #00A86B; text-decoration: none; }
a:hover { color: #00C77B; text-decoration: underline; }

/* Layout */
.bp-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Gate page */
.gate-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.gate-logo {
  width: 180px;
  margin-bottom: 40px;
}

.gate-title {
  font-family: 'Contrail One', cursive;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #ffffff;
}

.gate-subtitle {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 32px;
}

.gate-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gate-input {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 4px;
  width: 220px;
  font-family: 'Inter', sans-serif;
}

.gate-input:focus {
  outline: none;
  border-color: #00A86B;
}

.gate-btn {
  font-family: 'Contrail One', cursive;
  font-size: 0.875rem;
  letter-spacing: 2px;
  padding: 12px 24px;
  background: #00A86B;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gate-btn:hover {
  background: #00C77B;
}

.gate-error {
  color: #ff4444;
  font-size: 0.8rem;
  margin-top: 12px;
  display: none;
}

/* Table of Contents */
.toc {
  display: none;
  text-align: left;
  max-width: 600px;
  width: 100%;
  margin-top: 48px;
}

.toc h2 {
  font-family: 'Contrail One', cursive;
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  border-bottom: 1px solid #1a1a1a;
}

.toc-list li a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list li a:hover {
  color: #00A86B;
  text-decoration: none;
}

.toc-num {
  font-family: 'Contrail One', cursive;
  font-size: 0.875rem;
  color: #555;
  width: 32px;
  flex-shrink: 0;
}

.toc-label {
  font-size: 1rem;
}

/* Section pages */
.bp-header {
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 32px;
  margin-bottom: 40px;
}

.bp-section-num {
  font-family: 'Contrail One', cursive;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: #00A86B;
  display: inline-block;
  border: 1px solid #00A86B;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.bp-title {
  font-family: 'Contrail One', cursive;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .bp-title { font-size: 2.5rem; }
}

/* Content typography */
.bp-content h3 {
  font-family: 'Contrail One', cursive;
  font-size: 1.375rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 16px;
}

.bp-content h4 {
  font-family: 'Contrail One', cursive;
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #e0e0e0;
  margin-top: 36px;
  margin-bottom: 12px;
}

.bp-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-top: 28px;
  margin-bottom: 10px;
}

.bp-content p {
  margin-bottom: 16px;
  color: #ccc;
}

.bp-content ul, .bp-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.bp-content li {
  margin-bottom: 8px;
  color: #ccc;
}

.bp-content li strong {
  color: #e0e0e0;
}

.bp-content blockquote {
  border-left: 3px solid #00A86B;
  padding: 12px 20px;
  margin: 24px 0;
  background: #0a0a0a;
  border-radius: 0 4px 4px 0;
}

.bp-content blockquote p {
  color: #aaa;
  font-style: italic;
  margin-bottom: 0;
}

/* Tables */
.bp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.875rem;
}

.bp-content th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid #333;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.bp-content td {
  padding: 10px 12px;
  border-bottom: 1px solid #1a1a1a;
  color: #ccc;
  vertical-align: top;
}

.bp-content tr:hover td {
  background: #0a0a0a;
}

/* Responsive tables */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

/* Navigation */
.bp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
}

.bp-nav-top {
  margin-top: 0;
  margin-bottom: 32px;
  padding-top: 0;
  padding-bottom: 24px;
  border-top: none;
  border-bottom: 1px solid #1a1a1a;
}

.bp-nav a {
  font-size: 0.875rem;
  color: #888;
  transition: color 0.2s;
}

.bp-nav a:hover {
  color: #00A86B;
  text-decoration: none;
}

.bp-nav-prev::before { content: "\2190\00a0"; }
.bp-nav-next::after { content: "\00a0\2192"; }

.bp-nav-contents {
  font-family: 'Contrail One', cursive;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

/* Back to top */
.bp-back-top {
  text-align: center;
  margin-top: 24px;
}

.bp-back-top a {
  font-size: 0.75rem;
  color: #555;
}

/* Strong text */
.bp-content strong {
  color: #e0e0e0;
}

/* Video embeds */
.bp-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin: 28px 0;
  border-radius: 4px;
  overflow: hidden;
}

.bp-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bp-video-caption {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
  text-align: center;
}
