/* TemplateCat Pack #1 — 02-startup-split-hero */

:root{
  --bg: #f4f4f3;
  --panel: #ffffff;
  --text: #141414;
  --muted: #5a5a5a;
  --border: #e2e2df;
  --shadow: 0 12px 28px rgba(0,0,0,.06);
  --radius: 16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
:root{--header-offset: 84px;} /* sticky header + breathing room */
html{scroll-padding-top: var(--header-offset);}
body{
  margin:0;
  font-family: 'Plus Jakarta Sans', serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 18% -10%, rgba(0,0,0,.05), transparent 60%),
    radial-gradient(900px 420px at 82% -10%, rgba(0,0,0,.04), transparent 60%),
    var(--bg);
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:16px;
}

.brand{
  font-family: 'Plus Jakarta Sans', serif;
  font-weight:700;
  letter-spacing:.6px;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  letter-spacing:.2px;
  opacity:.92;
}

.nav-cta{
  padding:10px 14px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:var(--radius);
  background:rgba(255,255,255,.8);
}

.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  padding:10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px 0;
  opacity:.85;
}

.hero{
  padding:72px 0 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 54% 46%;
  gap:46px;
  align-items:center;
}

.hero-copy .eyebrow{
  display:inline-block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--muted);
  margin:0 0 12px;
}

h1{
  font-family: 'Plus Jakarta Sans', serif;
  font-size:52px;
  line-height:1.08;
  margin:0 0 18px;
  letter-spacing:-.5px;
}

.lead{
  color:var(--muted);
  font-size:18px;
  margin:0 0 22px;
  max-width:52ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.3px;
  text-decoration:none;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.10);
}

.btn-primary{
  background:var(--text);
  color:#fff;
  border-color:var(--text);
}

.btn-ghost{
  background:rgba(255,255,255,.85);
  color:var(--text);
}

.trust{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.logo-pill{
  padding:8px 10px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.75);
  font-weight:600;
  letter-spacing:.3px;
  font-size:12px;
}

.hero-media img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--shadow);
  display:block;
}

.section{
  padding:120px 0;
}


.section.alt{
  background:rgba(255,255,255,.72);
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:26px;
}
.section-head .eyebrow{
  display:inline-block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--muted);
  margin:0 0 10px;
}
h2{
  font-family: 'Plus Jakarta Sans', serif;
  font-size:34px;
  margin:0;
  letter-spacing:-.2px;
}

.muted{color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  padding:18px 18px 16px;
}
.card h3{
  margin:0 0 6px;
  font-family: 'Plus Jakarta Sans', serif;
  font-size:18px;
}
.card p{
  margin:0;
  color:var(--muted);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:start;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.88);
  overflow:hidden;
}
.checklist li{
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.checklist li:last-child{border-bottom:0}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.price-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.price-card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.price{
  font-family: 'Plus Jakarta Sans', serif;
  font-size:38px;
  margin:0;
}
.price span{font-size:18px; vertical-align:top}
.price small{font-size:14px; color:var(--muted)}
.featured{
  border-color:rgba(0,0,0,.16);
  box-shadow:var(--shadow);
}
.tag{
  align-self:flex-start;
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.04);
}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.72);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}
.footer a{
  color:var(--muted);
  text-decoration:none;
  margin-left:14px;
  font-size:14px;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media img{height:420px}
  .cards{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr}
  .section-head{flex-direction:column; align-items:flex-start}
  h1{font-size:40px}
}

@media (max-width: 720px){
  .nav-toggle{display:block}
  .nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:64px;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid rgba(0,0,0,.06);
    padding:14px 5%;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .nav.open{display:flex}
  .nav a{margin:0}
  .nav-cta{border-radius:12px}
  .cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}


/* Anchor offset for any element with an id */
[id]{scroll-margin-top: var(--header-offset);} 

/* Consistent radius */
:root{ --radius:14px; }

/* Heading rhythm */
h1{ margin-bottom:24px; line-height:1.15; }
h2{ margin-bottom:18px; line-height:1.2; }
h3{ margin-bottom:14px; line-height:1.25; }

/* Button polish */
.btn{
  transition: all .25s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.back-to-top{ cursor:pointer; }

/* TemplateCat: Contact form (front-end only) */
.tc-form{
  margin-top:22px;
}
.tc-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}
.tc-field label{
  font-weight:600;
  font-size:13px;
}
.tc-field input,
.tc-field textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border, #e4e7ec);
  border-radius:var(--radius, 14px);
  background:#fff;
  color:inherit;
  font:inherit;
}
.tc-field textarea{
  resize:vertical;
}
.tc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.tc-form-note{
  margin:14px 0 0;
  font-size:13px;
  color:var(--muted, #60656f);
}
@media(max-width:720px){
  .tc-grid{ grid-template-columns:1fr; }
}

/* Form width + alignment */
.tc-form-wrap{
  max-width:720px;
  margin:0 auto;
}

/* Form centering hardening */
.tc-form-wrap{
  width:100%;
  max-width:720px;
  margin:0 auto;
  align-self:center;
  justify-self:center;
}
