*, *::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;
}

.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;
}

.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;
}

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