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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  color: #2c7a4b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-primary {
  display: inline-block;
  background: #2c7a4b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.btn-primary:hover {
  background: #1f5c38;
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #2c7a4b;
  color: #2c7a4b;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover {
  background: #2c7a4b;
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c7a4b;
}
.logo:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: #1a1a1a;
  text-decoration: none;
}
.nav-links .btn-outline {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: #2c7a4b;
}

.hero {
  background: linear-gradient(135deg, #2c7a4b 0%, #1f5c38 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: #fff;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0 0 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-actions .btn-primary {
  background: #fff;
  color: #2c7a4b;
}
.hero-actions .btn-primary:hover {
  background: #f0f0f0;
}

.hero-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}
.hero-note a {
  color: #fff;
  opacity: 0.9;
  text-decoration: underline;
}

.features {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 3rem;
  color: #1a1a1a;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.75rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #e8f5ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7a4b;
}

.pillars {
  padding: 5rem 2rem;
  background: #fff;
}
.pillars h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 3rem;
  color: #1a1a1a;
}

.ai-bridge {
  background: linear-gradient(145deg, #173d25 0%, #0c0c0c 100%);
  color: #fff;
  padding: 5rem 2rem;
}
.ai-bridge h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #fff;
  text-align: center;
}
.ai-bridge .ai-bridge-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin: 0 auto 3rem;
  max-width: 540px;
  text-align: center;
}
.ai-bridge .ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.ai-bridge .ai-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.ai-bridge .ai-feature:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(168, 216, 185, 0.35);
}
.ai-bridge .ai-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0.75rem 0 0.5rem;
}
.ai-bridge .ai-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.65;
}
.ai-bridge .ai-feature p em {
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 600;
}
.ai-bridge .ai-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(44, 122, 75, 0.35);
  border: 1px solid rgba(168, 216, 185, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8d8b9;
}

.self-host {
  padding: 5rem 2rem;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 700px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.split-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.split-text p {
  color: #666;
  margin: 0 0 1.25rem;
}
.split-text ul {
  padding-left: 1.25rem;
  margin: 0 0 1.75rem;
}
.split-text ul li {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.split-code {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1.75rem;
}
.split-code pre {
  margin: 0;
}
.split-code code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  color: #a8d8b9;
  white-space: pre;
}

.page-hero {
  background: #e8f5ee;
  border-bottom: 1px solid rgb(203.5636363636, 232.6363636364, 216.9818181818);
  padding: 3.5rem 2rem;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}
.page-hero p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.promise {
  padding: 5rem 2rem;
  background: #f9f9f9;
}
.promise h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}
.promise .promise-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin: 0 auto 3rem;
  max-width: 560px;
}

.promise-sustain {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e0e0e0;
}

.promise-sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) {
  .promise-sustain-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.promise-methods h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}
.promise-methods > p {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.promise-methods ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.promise-methods li {
  padding: 0.65rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #666;
}
.promise-methods li:last-child {
  border-bottom: none;
}
.promise-methods li strong {
  color: #1a1a1a;
}
.promise-methods .promise-note {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

.promise-preferred {
  background: #e8f5ee;
  border: 1px solid rgb(203.5636363636, 232.6363636364, 216.9818181818);
  border-radius: 10px;
  padding: 1.75rem;
}
.promise-preferred h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #2c7a4b;
  margin: 0 0 0.75rem;
}
.promise-preferred p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 0.75rem;
}
.promise-preferred p:last-child {
  margin: 0;
}
.promise-preferred p strong {
  color: #1a1a1a;
}

.agpl {
  background: #e8f5ee;
  padding: 4rem 2rem;
  border-top: 1px solid rgb(214.2272727273, 237.2727272727, 224.8636363636);
  border-bottom: 1px solid rgb(214.2272727273, 237.2727272727, 224.8636363636);
}

.agpl-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.agpl-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.agpl-inner p {
  color: #666;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
@media (max-width: 600px) {
  .agpl-inner {
    flex-direction: column;
  }
}

.agpl-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7a4b;
  border: 1px solid rgb(203.5636363636, 232.6363636364, 216.9818181818);
}

.link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c7a4b;
}
.link-arrow:hover {
  text-decoration: underline;
}

.connectto {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.connectto-inner {
  max-width: 600px;
}
.connectto-inner p {
  color: #666;
  margin: 0 0 1.5rem;
}
.connectto-inner p a {
  color: #2c7a4b;
}

.powered-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin: 0 0 0.5rem !important;
}

.connectto-logo {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #2c7a4b;
  margin-bottom: 1.25rem;
}
.connectto-logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

footer {
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  padding: 1.75rem 2rem;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: #666;
}
.footer-links a:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem;
  }
  .nav-inner {
    padding: 0 1.25rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .features,
  .pillars,
  .promise,
  .self-host,
  .connectto {
    padding: 3.5rem 1.25rem;
  }
  .ai-bridge {
    padding: 3.5rem 1.25rem;
  }
  .agpl {
    padding: 2.5rem 1.25rem;
  }
  .split-code {
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  .nav-links a:not(.btn-outline) {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .features h2,
  .pillars h2,
  .ai-bridge h2 {
    font-size: 1.6rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .ai-feature-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
