﻿:root {
  --yellow: rgb(214, 239, 127);
  --yellow-soft: rgb(232, 247, 176);
  --ink: #111111;
  --ink-soft: #3d3d3d;
  --line: #e2e2e2;
  --line-strong: #d2d2d2;
  --bg: #ffffff;
  --panel: #fffef9;
  --radius-sm: 8px;
  --radius-md: 12px;
  --soft-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1)),
    repeating-linear-gradient(
      90deg,
      rgba(214, 239, 127, 0.08) 0,
      rgba(214, 239, 127, 0.08) 1px,
      transparent 1px,
      transparent 88px
    );
  min-height: 100vh;
}

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

h1,
h2,
h3 {
  font-family: "Archivo", "Arial Narrow", sans-serif;
  margin-top: 0;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--ink);
}

p {
  margin: 0;
  line-height: 1.6;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.row {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center-y {
  align-items: center;
}

.gap-sm {
  gap: 0.75rem;
}

.wrap {
  flex-wrap: wrap;
}

.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.93);
  z-index: 80;
}

.site-header .container {
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  position: relative;
  border: 0;
  border-radius: 11px;
  background: #132822;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 17px;
  height: 17px;
  border: 3px solid rgb(214, 239, 127);
  border-right: 0;
  border-bottom: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 17px;
  height: 17px;
  border: 3px solid #ffffff;
  border-left: 0;
  border-top: 0;
}

.brand-text {
  display: inline-flex;
  line-height: 1;
}

.brand-name {
  font-family: "Archivo", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: var(--ink);
}

.main-nav {
  display: flex;
  gap: 1rem;
}

.main-nav a {
  padding: 0.45rem 0.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  border-color: var(--line-strong);
  background: var(--yellow-soft);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #162822;
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-compact {
  padding-top: 3.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
}

.eyebrow {
  color: #49652a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Archivo", sans-serif;
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.14rem;
  margin-bottom: 0.65rem;
}

.lead {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.complementary-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: var(--soft-shadow);
  object-fit: cover;
  object-position: center;
}

.stack > .complementary-image {
  margin-bottom: 0.1rem;
}

.legal-image {
  max-width: 100%;
  aspect-ratio: 16 / 7;
}

.hero-panel,
.card,
.stack-item,
.legal-block,
.price-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 1.15rem;
  box-shadow: var(--soft-shadow);
}

.hero-panel h2,
.price-card h3 {
  color: var(--ink);
}

.metric-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.metric-list li {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.metric {
  color: #49652a;
  font-family: "Archivo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  background: var(--yellow-soft);
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
}

.stripe {
  border: 0;
  background: rgb(214, 239, 127);
  overflow: hidden;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  padding: 1rem 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2b2b2b;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-dot {
  color: #49652a;
  font-size: 1.05em;
  line-height: 1;
}

.section {
  padding: 3.25rem 0;
}

.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(214, 239, 127, 0.22), rgba(214, 239, 127, 0.07));
}

.section-heading {
  margin-bottom: 1.2rem;
}

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

.stack {
  display: grid;
  gap: 0.9rem;
}

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

.price {
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
  margin: 0 0 0.9rem;
}

.price span {
  font-size: 1rem;
  color: #6f6f6f;
}

.price-card ul {
  margin-top: 0.75rem;
}

.price-card li {
  margin-bottom: 0.35rem;
}

.legal-page .section {
  padding-top: 2rem;
}

.legal-text-section {
  border-top: 1px solid var(--line);
}

.legal-article {
  max-width: 980px;
  padding-bottom: 3rem;
}

.legal-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.06rem;
  color: #49652a;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-article p {
  margin-bottom: 1rem;
  color: #232323;
}

.legal-article a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-block h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #49652a;
}

.legal-block p + p {
  margin-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #f2f8df;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 500ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 280ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .grid-2,
  .card-grid,
  .pricing-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .main-nav {
    position: fixed;
    right: 14px;
    top: 84px;
    flex-direction: column;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    box-shadow: var(--soft-shadow);
    z-index: 2000;
    padding: 0.5rem;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark::before {
    left: 7px;
    top: 7px;
    width: 15px;
    height: 15px;
  }

  .brand-mark::after {
    right: 7px;
    bottom: 7px;
    width: 15px;
    height: 15px;
  }

  .brand-name {
    font-size: 0.84rem;
    letter-spacing: 0.01em;
  }

  .ticker-track {
    font-size: clamp(0.92rem, 4.2vw, 1.12rem);
    gap: 1.1rem;
    padding: 0.85rem 0;
    animation-duration: 20s;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-home {
  background: #ecefed;
}

.page-home .site-frame {
  width: min(1280px, 96%);
  margin: 1.2rem auto;
  border: 1px solid #d7ddd9;
  border-radius: 14px;
  background: #f7f9f8;
  box-shadow: 0 26px 42px rgba(19, 22, 20, 0.07);
  overflow: hidden;
}

.page-home .site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: none;
  background: #f7f9f8;
}

.top-banner {
  background: #10241d;
  color: #e9f2ed;
  font-size: 0.74rem;
  border-bottom: 1px solid #213c33;
}

.top-banner .container {
  min-height: 34px;
}

.top-banner p {
  line-height: 1.3;
}

.top-banner a {
  opacity: 0.9;
}

.page-home .nav-row {
  min-height: 74px;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.nav-cta .btn {
  font-size: 0.72rem;
  padding: 0.5rem 0.8rem;
}

.btn-nav-ghost {
  background: #ffffff;
}

.btn-nav {
  background: var(--yellow);
}

.hero-inspired {
  padding: 1.25rem 0 1.5rem;
}

.hero-wrap {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 0.5px 0.5px, rgba(0, 0, 0, 0.12) 0.5px, transparent 0.5px),
    #f1f4f2;
  background-size: 28px 28px;
  text-align: center;
  padding: 5rem 1.25rem 3.6rem;
}

.trust-badge {
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  color: #2f3934;
  margin-bottom: 0.65rem;
}

.hero-title {
  max-width: 920px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 5.3vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #132822;
}

.hero-title .hl {
  background: var(--yellow);
  padding: 0.02em 0.18em;
  border-radius: 6px;
}

.hero-lead {
  margin-inline: auto;
  max-width: 58ch;
}

.hero-form {
  margin: 1.2rem auto 0.65rem;
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
}

.hero-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 0.94rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  color: var(--ink);
}

.hero-form .btn {
  border-radius: 999px;
  font-size: 0.74rem;
  padding: 0.7rem 1rem;
  background: var(--yellow);
}

.hero-note {
  color: #5a625e;
  font-size: 0.77rem;
}

.floating-stat {
  position: absolute;
  width: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.8rem 0.85rem;
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.stat-label {
  font-size: 0.76rem;
  color: #4f5753;
}

.stat-value {
  font-family: "Archivo", sans-serif;
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 0.2rem 0;
  color: #162822;
}

.stat-sub {
  font-size: 0.72rem;
  color: #5d6661;
}

.stat-left-top {
  left: 1.25rem;
  top: 4.3rem;
}

.stat-left-bottom {
  left: 1.25rem;
  bottom: 1.4rem;
}

.stat-right-top {
  right: 1.25rem;
  top: 4.3rem;
}

.stat-right-bottom {
  right: 1.25rem;
  bottom: 1.4rem;
}

.page-home .stripe {
  margin: 1rem 0 0;
  width: 100%;
  border: 0;
  border-radius: 0;
}

.home-meta-strip {
  padding: 1.2rem 0 1.8rem;
  background: #0f1213;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 0.9rem;
}

.meta-item p {
  font-size: 0.86rem;
  color: #f4f7f5;
}

.meta-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: var(--yellow);
  background: #ffffff;
}

.meta-icon i {
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .floating-stat {
    width: 170px;
  }
}

@media (max-width: 980px) {
  .page-home .site-frame {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .top-banner .row {
    justify-content: center;
    gap: 0.5rem;
  }

  .top-banner .row:last-child {
    display: none;
  }

  .nav-cluster {
    gap: 0;
  }

  .page-home .main-nav {
    top: 102px;
  }

  .nav-cta {
    display: none;
  }

  .hero-wrap {
    min-height: auto;
    padding: 2.2rem 1rem 1.2rem;
  }

  .hero-title {
    font-size: clamp(1.7rem, 8.5vw, 2.7rem);
  }

  .hero-form {
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
  }

  .hero-form .btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .floating-stat {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
  }

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

.login-main {
  padding: 2.2rem 0 2.8rem;
}

.login-shell {
  width: min(560px, 92%);
  margin: 0 auto;
}

.login-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  padding: 1.25rem;
}

.login-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.login-form label {
  font-size: 0.78rem;
  color: #4d5652;
  font-weight: 600;
}

.login-form input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.66rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.login-form input:focus {
  outline: 2px solid rgba(214, 239, 127, 0.4);
  outline-offset: 1px;
}

.login-form .btn {
  margin-top: 0.45rem;
  justify-self: start;
}

.login-note {
  margin-top: 0.9rem;
  color: #58615d;
  font-size: 0.82rem;
}


