:root {
  --bg: #07111f;
  --bg-soft: #0b1730;
  --panel: rgba(11, 22, 42, 0.65);
  --panel-strong: rgba(8, 18, 37, 0.88);
  --line: rgba(255, 255, 255, 0.08);
  --text: #e9f2ff;
  --muted: #9ab0d0;
  --primary: #66e1ff;
  --primary-2: #6b7cff;
  --primary-3: #70f0c3;
  --warning: #ffd66b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(102, 225, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(107, 124, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #06101d 0%, #07111f 46%, #0a1628 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.aurora {
  position: fixed;
  inset: auto;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -2;
  animation: floatAura 18s ease-in-out infinite;
}

.aurora-1 {
  top: -11rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(102, 225, 255, 0.9), transparent 60%);
}

.aurora-2 {
  bottom: -14rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(107, 124, 255, 0.85), transparent 58%);
  animation-delay: -7s;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
  opacity: 0.36;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding-top: 40px;
  padding-bottom: 80px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 22, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f4f8ff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  position: relative;
  background: linear-gradient(135deg, rgba(102, 225, 255, 0.22), rgba(107, 124, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  border-radius: 999px;
}

.brand-mark span:nth-child(1) {
  width: 23px;
  height: 23px;
  background: linear-gradient(135deg, var(--primary), #9af3ff);
  transform: translate(-6px, -5px);
}

.brand-mark span:nth-child(2) {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--primary-2), #a9b3ff);
  transform: translate(9px, 7px);
}

.brand-mark span:nth-child(3) {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--primary-3), #abffe3);
  transform: translate(6px, -10px);
}

.brand-text {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: #fff;
}

.fa-rocket {
  color: var(--primary);
  font-size: 40px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 28px; }
.nav-open .nav-toggle span:first-child { transform: translateY(5px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 46px;
  padding-inline: 18px;
}

.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, #a8f7ff 0%, var(--primary) 45%, #7ef7d1 100%);
  box-shadow: 0 18px 45px rgba(102, 225, 255, 0.25);
}

.btn-secondary,
.btn-ghost {
  color: #eff5ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding-top: 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b7caea;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  box-shadow: 0 0 0 6px rgba(102, 225, 255, 0.12);
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 18px 0 16px;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 12ch;
}

.gradient-text {
  background: linear-gradient(135deg, #f9fbff, #8ff3ff 35%, #84a0ff 72%, #92ffd5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.section-heading p,
.feature-card p,
.timeline-card p,
.security-panel,
.founder-copy p,
.cta-card p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points,
.security-list,
.founder-tags,
.trust-tags {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li,
.founder-tags span,
.trust-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9e8ff;
  font-size: 0.95rem;
}

.stats-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border-radius: 20px;
  padding: 18px 18px 16px;
}

.stat-card strong {
  display: block;
  font-size: 2.1rem;
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.visual-wrap {
  position: relative;
  min-height: 650px;
}

.orbital {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}

.orbital-1 {
  width: 540px;
  height: 540px;
  animation: spin 36s linear infinite;
}

.orbital-2 {
  width: 430px;
  height: 430px;
  animation: spinReverse 28s linear infinite;
}

.dashboard-card {
  position: absolute;
  inset: 48px 0 auto 0;
  border-radius: var(--radius-xl);
  padding: 22px;
  overflow: hidden;
}

.floating-card {
  animation: floatCard 8s ease-in-out infinite;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.pill.success {
  color: #06111d;
  background: linear-gradient(135deg, #bcffef, #76f8cb);
}

.pill.dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-window {
  border-radius: 26px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(4, 12, 28, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-window__head,
.insight-card,
.founder-card,
.trust-box,
.cta-card,
.footer-inner {
  display: flex;
}

.chat-window__head {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-window__head small {
  display: block;
  color: var(--muted);
}

.status-ping {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7ef7d1;
  box-shadow: 0 0 0 0 rgba(126, 247, 209, 0.45);
  animation: pulse 2s infinite;
}

.chat-window__body {
  display: grid;
  gap: 14px;
  padding: 20px 0 18px;
}

.msg {
  max-width: 90%;
  padding: 14px 16px;
  border-radius: 20px;
  font-size: 0.96rem;
  line-height: 1.5;
  animation: fadeUp 0.6s ease both;
}

.msg-bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.msg-user {
  justify-self: end;
  color: #081322;
  background: linear-gradient(135deg, #e6fbff, #9ef2ff);
}

.msg-rotating {
  min-height: 74px;
}

.chat-window__footer {
  display: flex;
  gap: 6px;
}

.chat-window__footer span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.insight-card {
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.insight-card.full {
  grid-column: 1 / -1;
}

.insight-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-box,
.founder-card,
.cta-card,
.footer-inner {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.trust-box,
.cta-card {
  border-radius: var(--radius-xl);
  padding: 26px 28px;
}

.trust-box p {
  margin: 0;
  font-weight: 600;
  color: #000000;
}

.trust-line {
  margin: 0 0 18px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f2937;
}

.underline-animate {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #0f172a;
  padding-bottom: 0.22em;
}

.underline-animate::after {
  content: "";
  position: absolute;
  left: 1%;
  bottom: 0;
  width: 98%;
  height: 0.55em;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(22, 126, 8, 0.625) 0%,
    rgba(22, 126, 8, 0.738) 12%,
    rgba(22, 126, 8, 0.786) 50%,
    rgba(22, 126, 8, 0.927) 88%,
    rgba(21, 126, 8) 100%
  );
  transform: scaleX(0);
  transform-origin: left center;
  animation: softUnderlineReveal 10s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes softUnderlineReveal {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.timeline-card,
.security-panel,
.faq-item {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card h3,
.timeline-card h3,
.faq-item summary,
.founder-copy h2 {
  margin: 18px 0 10px;
  letter-spacing: -0.04em;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.icon-gradient { background: linear-gradient(135deg, rgba(102, 225, 255, 0.15), rgba(107, 124, 255, 0.18)); }
.icon-gradient-alt { background: linear-gradient(135deg, rgba(126, 247, 209, 0.16), rgba(102, 225, 255, 0.12)); }
.icon-gradient-3 { background: linear-gradient(135deg, rgba(255, 214, 107, 0.14), rgba(102, 225, 255, 0.12)); }
.icon-gradient-4 { background: linear-gradient(135deg, rgba(159, 168, 255, 0.18), rgba(102, 225, 255, 0.1)); }
.icon-gradient-5 { background: linear-gradient(135deg, rgba(126, 247, 209, 0.18), rgba(159, 168, 255, 0.14)); }
.icon-gradient-6 { background: linear-gradient(135deg, rgba(102, 225, 255, 0.16), rgba(255, 214, 107, 0.12)); }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 225, 255, 0.18), transparent 62%);
}

.timeline-num {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.security-panel {
  display: grid;
  align-items: center;
  gap: 24px;
}

.shield-badge {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 255, 42, 0.16), rgba(0, 163, 33, 0.1));
  color: #157e08;
  border: 1px solid rgb(0, 143, 12);
}

.shield-badge svg {
  width: 54px;
  height: 54px;
}

.security-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.security-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  flex: 0 0 auto;
}

.founder-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.founder-photo-wrap {
  width: min(320px, 100%);
  flex: 0 0 auto;
}

.founder-photo {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.founder-copy {
  flex: 1;
}

.founder-role {
  margin-top: -4px;
  color: #dce9ff;
  font-weight: 600;
}

.cta-section {
  padding-bottom: 60px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: #9cb4da;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding-top: 6px;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }

@keyframes floatAura {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.05); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(126, 247, 209, 0.42); }
  70% { box-shadow: 0 0 0 12px rgba(126, 247, 209, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 247, 209, 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .security-grid,
  .timeline,
  .feature-grid,
  .founder-card,
  .cta-card,
  .trust-box,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .security-grid {
    display: grid;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .visual-wrap {
    min-height: 580px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(5, 11, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    max-width: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .orbital-1 { width: 420px; height: 420px; }
  .orbital-2 { width: 320px; height: 320px; }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 100vw);
  }

  .section {
    padding: 82px 0;
  }

  .section-tight {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .visual-wrap {
    min-height: 520px;
  }

  .dashboard-card {
    inset: 18px 0 auto 0;
    padding: 16px;
  }

  .founder-card,
  .trust-box,
  .cta-card,
  .feature-card,
  .timeline-card,
  .security-panel,
  .faq-item {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* QuicklyBots brand overrides */
:root {
  --bg: #ffffff;
  --bg-soft: #f4fbf6;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(8, 124, 44, 0.12);
  --text: #102116;
  --muted: #567063;
  --primary: #087c2c;
  --primary-2: #12a144;
  --primary-3: #68c987;
  --shadow: 0 24px 80px rgba(8, 124, 44, 0.10);
}

body {
  background:
    radial-gradient(circle at top left, rgba(8, 124, 44, 0.12), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(18, 161, 68, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfefc 48%, #f5fbf7 100%);
  color: var(--text);
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(8, 124, 44, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 124, 44, 0.045) 1px, transparent 1px);
  opacity: 0.65;
}

.section-dark {
  background: linear-gradient(180deg, rgba(8, 124, 44, 0.035), rgba(8, 124, 44, 0.02));
  border-top: 1px solid rgba(8, 124, 44, 0.08);
  border-bottom: 1px solid rgba(8, 124, 44, 0.08);
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 252, 248, 0.90));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(8, 124, 44, 0.10);
}

.brand {
  gap: 0;
  color: var(--primary);
  line-height: 0;
}

.brand-mark,
.brand-text {
  display: none;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: none;
}

.brand-logo-header {
  height: 94px;
}

.brand-logo-footer {
  height: 94px;
}

.nav-links {
  color: #355244;
}

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

.nav-toggle {
  background: rgba(8, 124, 44, 0.08);
  color: var(--primary);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a8b32 0%, var(--primary) 58%, #12a144 100%);
  box-shadow: 0 18px 45px rgba(8, 124, 44, 0.20);
}

.btn-secondary,
.btn-ghost {
  color: var(--primary);
  border: 1px solid rgba(8, 124, 44, 0.18);
  background: rgba(8, 124, 44, 0.03);
}

.eyebrow,
.section-kicker {
  color: #446557;
}

.eyebrow-dot {
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  box-shadow: 0 0 0 6px rgba(8, 124, 44, 0.10);
}

.gradient-text {
  background: linear-gradient(135deg, #065f21, #087c2c 36%, #12a144 72%, #7fd198);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead,
.section-heading p,
.feature-card p,
.timeline-card p,
.security-panel,
.founder-copy p,
.cta-card p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

.hero-points li,
.security-list li,
.founder-tags li,
.trust-tags span {
  background: rgba(8, 124, 44, 0.05);
  border: 1px solid rgba(8, 124, 44, 0.12);
  color: #19452a;
}

.pill.success {
  background: rgba(8, 124, 44, 0.10);
  color: var(--primary);
}

.pill.dark {
  background: rgba(8, 124, 44, 0.08);
  color: #355244;
}

.status-ping {
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(8, 124, 44, 0.35);
}

.icon-gradient,
.icon-gradient-alt,
.icon-gradient-3,
.icon-gradient-4,
.icon-gradient-5,
.icon-gradient-6 {
  color: var(--primary);
}

.feature-icon,
.stat-card,
.insight-card,
.timeline-card,
.faq-item,
.security-panel,
.trust-box {
  border-color: rgba(8, 124, 44, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(8, 124, 44, 0.10);
}

.footer-links {
  color: #355244;
}

@media (max-width: 840px) {
  .brand-logo-header {
    height: 92px;
  }

  .brand-logo-footer {
    height: 82px;
  }
}

@media (max-width: 520px) {
  .brand-logo-header {
    height: 76px;
  }

  .brand-logo-footer {
    height: 68px;
  }
}


.contact-section {
  padding-top: 30px;
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-intro {
  padding-top: 12px;
}

.contact-intro h2 {
  margin: 18px 0 16px;
  letter-spacing: -0.05em;
  line-height: 0.98;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 124, 44, 0.05);
  border: 1px solid rgba(8, 124, 44, 0.12);
  color: #19452a;
  font-weight: 600;
}

.contact-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  flex: 0 0 auto;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #244536;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 124, 44, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a9386;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(8, 124, 44, 0.34);
  box-shadow: 0 0 0 4px rgba(8, 124, 44, 0.10);
}

.form-actions-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.form-actions-row .btn {
  min-width: 210px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--primary);
}

.form-status.is-error {
  color: #a33838;
}

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row.two-col,
  .form-actions-row {
    grid-template-columns: 1fr;
  }

  .form-actions-row .btn {
    min-width: 0;
  }

  .contact-card {
    padding: 20px;
  }
}


.field-note {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
