:root{
  --text: #0b1320;
  --muted: rgba(11, 19, 32, 0.70);
  --border: rgba(11, 19, 32, 0.10);
  --shadow: 0 16px 40px rgba(11, 19, 32, 0.08);
  --shadow2: 0 10px 24px rgba(11, 19, 32, 0.10);
  --accent: #1f6b3a;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

body::before{ content:none !important; background:none !important; }
body::after{
  content:"";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(31,107,58,0.07), transparent 60%),
    radial-gradient(700px 360px at 70% 0%, rgba(11,79,120,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.page{ padding: 18px 0 34px 0; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 18px 0;
}

.brand-mark{
  height: 56px;
  width: auto;
  display: block;
}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-weight: 650;
  font-size: 14px;
  color: rgba(11, 19, 32, 0.88);
  text-decoration:none;
}

.nav a:hover{ text-decoration:underline; }

.nav-cta{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow2);
  text-decoration:none !important;
}

.hero{ padding: 26px 0 18px 0; }

.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

h1{
  margin:0 0 12px 0;
  line-height:1.08;
  letter-spacing:-0.02em;
  font-size: clamp(32px, 3.6vw, 52px);
}

.lead{
  font-size: 18px;
  color: rgba(11, 19, 32, 0.72);
  margin: 0 0 16px 0;
  max-width: 64ch;
}

.hero-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.micro{ font-size: 13px; color: var(--muted); }

.checks{
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
  color: rgba(11, 19, 32, 0.72);
}

.checks li{
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
}

.checks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent);
  font-weight: 900;
}

.card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.section{ padding: 18px 0; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.section-head{ margin-bottom: 10px; }

h2{
  margin:0 0 10px 0;
  font-size: 22px;
  letter-spacing:-0.01em;
}

h3{ margin:0 0 6px 0; font-size: 16px; }

p{ margin: 0 0 10px 0; }

.small{ margin: 10px 0 0 0; font-size: 13px; color: var(--muted); }
.muted{ color: var(--muted); margin:0; }

.bullets{
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: rgba(11, 19, 32, 0.72);
}
.bullets li{ margin: 7px 0; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 14px;
  text-decoration:none !important;
  background: rgba(255,255,255,0.92);
  color: rgba(11,19,32,0.92);
  box-shadow: none;
}
button.btn{ cursor:pointer; }

.btn.primary{
  background: #0b1320;
  color:#fff;
  border-color: rgba(0,0,0,0.20);
  box-shadow: var(--shadow2);
}

.btn:hover{ opacity:0.93; }

/* HERO right card */
.hero-card{
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}

.hero-card-title{ font-weight: 900; }
.hero-card-sub{
  font-size: 14px;
  color: rgba(11, 19, 32, 0.68);
  margin-top: 2px;
}

/* ✅ centered wordmark */
.hero-logo-center{
  flex: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 0 8px 0;
}

.hero-logo-center img{
  width: min(420px, 92%);
  height: auto;
  display:block;
}

/* Examples */
.examples-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.example-card{ padding: 14px; }

.pair{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shot{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(11,19,32,0.02);
}

.shot img{
  display:block;
  width:100%;
  height: 260px;
  object-fit: cover;
}

.shot-link{
  display:block;
  cursor: zoom-in;
  text-decoration:none;
  color: inherit;
}

.tag{
  position:absolute;
  left: 10px;
  top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.18);
}

.example-note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(11, 19, 32, 0.72);
}

.caption{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(11, 19, 32, 0.62);
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.step{ display:flex; gap: 12px; align-items:flex-start; }

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 950;
  background: rgba(31,107,58,0.12);
  border: 1px solid rgba(31,107,58,0.18);
}

/* CTA */
.start-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top: 8px;
}

/* Footer */
.footer{
  padding: 18px 0 26px 0;
  border-top: 1px solid rgba(11, 19, 32, 0.08);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}

.footer-left{
  display:flex;
  gap: 10px;
  align-items:center;
}

.footer-icon{
  height: 44px;
  width: auto;
}

.footer-title{ font-weight: 900; }
.footer-sub{ font-size: 13px; color: var(--muted); }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .examples-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .pair{ grid-template-columns: 1fr; }
  .shot img{ height: 230px; }
  .hero-logo-center img{ width: min(360px, 95%); }
}
