:root{
  --bg0:#EEF3FA;
  --bg1:#F6F9FE;
  --card:#FFFFFF;
  --card2:#F3F7FF;
  --stroke:rgba(16,42,76,.14);
  --stroke2:rgba(16,42,76,.10);
  --text:#102A4C;
  --muted:rgba(16,42,76,.72);
  --primary:#2D6DFF;
  --primary2:#1E56D9;
  --radius:16px;
  --shadow:0 14px 40px rgba(16,42,76,.12);
}

*{box-sizing:border-box}
html,body{height:100%}

/* Base page typography (background handled by seam fix below) */
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  line-height:1.5;
}

a{color:rgba(16,42,76,.92);text-decoration:none}
a:hover{text-decoration:underline}

/* MASTER CONTENT WIDTH LOCK (clean + properly closed) */
.wrap{
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.section{padding:18px 0}
.section.hero{padding:36px 0 44px}

/* Header */
header.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
}

.brand img{height:100px;width:auto;display:block}

/* (keep) Hide top-right nav if you want it hidden */
header.header .nav{display:none !important;}

h1{margin:0 0 12px;font-size:44px;line-height:1.08;letter-spacing:-.6px}
h2{margin:0 0 12px;font-size:28px;letter-spacing:-.3px}
h3{margin:0 0 8px;font-size:16px}

.subhead{margin:0 0 14px;font-size:17px;color:var(--muted);max-width:60ch}
.muted{color:var(--muted);font-size:14px}

.trust{margin:0 0 18px;font-size:13px;color:rgba(16,42,76,.70);display:flex;flex-wrap:wrap;gap:10px}
.trust span{display:inline-flex;align-items:center;gap:8px}
.trust i{display:inline-block;width:6px;height:6px;border-radius:999px;background:rgba(16,42,76,.35)}

.ctaRow{display:flex;gap:10px;flex-wrap:wrap}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  letter-spacing:.1px;
  cursor:pointer;
  transition:transform .06s ease, background .12s ease;
  box-shadow:0 10px 22px rgba(45,109,255,.18);
  white-space:nowrap;
}
.btn:hover{background:var(--primary2)}
.btn:active{transform:translateY(1px)}
.btn.secondary{
  background:rgba(255,255,255,.75);
  border:1px solid var(--stroke);
  color:rgba(16,42,76,.92);
  box-shadow:none;
}
.btn.full{width:100%}

/* Cards */
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-inner{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,247,255,.92));
  border:1px solid var(--stroke2);
  border-radius:calc(var(--radius) - 2px);
  padding:22px;
}

/* HERO: stacked layout */
section.section.hero#top{
  display:grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  align-items:start;
}

/* Preview card */
#sample{max-width:760px;width:100%;justify-self:center;}
#sample img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(16,42,76,.14);
  background:#fff;
  box-shadow:0 18px 40px rgba(16,42,76,.12);
}
.shotCap{
  margin-top:10px;
  font-size:12px;
  color:rgba(16,42,76,.70);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

/* Grids */
.grid{display:grid;gap:16px;align-items:stretch;max-width:920px;margin-left:auto;margin-right:auto}
.grid-4{grid-template-columns:repeat(4, minmax(0, 1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0, 1fr))}

.tile{
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,247,255,.86));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  height:100%;
  display:flex;
  flex-direction:column;
}
.tile p{margin:0;color:var(--muted);font-size:13px}

/* Pricing container */
.pricing-stack{max-width:760px;margin:0 auto;display:grid;gap:14px}

/* Price (moved from inline to CSS) */
.price-big{
  font-size:22px;
  font-weight:800;
  color:var(--text);
}

/* CTA band */
.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta-band .left{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:240px;
}
.cta-band .right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.70);
  color:rgba(16,42,76,.82);
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

/* FAQ */
details{
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:14px 16px;
  background:rgba(255,255,255,.70);
}
details + details{margin-top:10px}
summary{cursor:pointer;font-weight:800;color:rgba(16,42,76,.92);list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0;color:var(--muted);font-size:13px}

/* Footer */
footer{
  border-top:1px solid rgba(16,42,76,.14);
  padding:24px 0 10px;
  color:rgba(16,42,76,.70);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 22px;
}

/* Responsive */
@media (max-width:980px){
  h1{font-size:38px}
  .grid-4{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .grid-3{grid-template-columns:1fr}
}

@media (max-width:680px){
  .wrap{padding-left:18px;padding-right:18px}
  h1{font-size:34px}
  .grid-4,.grid-3{grid-template-columns:1fr}
  .ctaRow .btn{width:100%}
  .cta-band{align-items:stretch}
  .cta-band .right{width:100%}
  .cta-band .right .btn{width:100%}
  .tag{align-self:flex-start}
}

/* ============================= */
/* REPUTEO SEAM / BAND FIX       */
/* ============================= */
html{ background: var(--bg0); }

body{
  background: transparent !important;
  position: relative;
  min-height: 100svh;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(45,109,255,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(31,174,115,.08), transparent 55%),
    var(--bg0);
}

.wrap,
.section,
main,
header,
footer{
  background: transparent !important;
}

hr{
  border: 0 !important;
  height: 0 !important;
}

.card,
.tile,
details,
.card-inner{
  background-clip: padding-box;
  transform: translateZ(0);
}

/* =========================
   FREE PAGE (Scoped Styles)
   ========================= */

body.free-page{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:#102A4C;
  background:transparent !important;
  position:relative;
  min-height:100svh;
  line-height:1.5;
}

body.free-page::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(45,109,255,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(31,174,115,.08), transparent 55%),
    #EEF3FA;
}

body.free-page .wrap{
  max-width:920px;
  margin:0 auto;
  padding:28px 18px 18px;
}

body.free-page h1{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.12;
  letter-spacing:-.6px;
}

body.free-page .subhead{
  margin:0 0 12px;
  font-size:15px;
  color:rgba(16,42,76,.72);
}

body.free-page label{
  display:block;
  font-size:12px;
  font-weight:800;
  margin:10px 0 6px;
}

body.free-page input{
  width:100%;
  border:1px solid rgba(16,42,76,.12);
  border-radius:10px;
  padding:12px;
  font-size:14px;
}

body.free-page .btn{
  width:100%;
  margin-top:14px;
}


