:root{
  --bg:#f5f8ff;
  --bg-2:#edf4ff;
  --panel:#ffffff;
  --panel-soft:#f8fbff;
  --text:#16324f;
  --muted:#5f7793;
  --line:#dbe6f3;
  --brand:#2d7ff9;
  --brand-dark:#1d63cc;
  --brand-soft:#e9f2ff;
  --accent:#ffb84d;
  --good:#1ea672;
  --warn:#f0a43a;
  --bad:#dd5a52;
  --shadow:0 14px 40px rgba(31,73,125,.10);
  --shadow-soft:0 8px 24px rgba(31,73,125,.08);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --max:1180px;
}

*{box-sizing:border-box}

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

body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255,184,77,.14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 35%, #eef5ff 100%);
  line-height:1.5;
}

a{
  color:var(--brand-dark);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.site-shell{
  min-height:100vh;
}

.topbar{
  padding:20px 18px 0;
}

.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
}

.logo-lockup{
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(219,230,243,.95);
  box-shadow:var(--shadow-soft);
  border-radius:999px;
  padding:12px 18px;
  backdrop-filter:blur(8px);
}

.logo-lockup:hover{
  text-decoration:none;
}

.logo-badge{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:1rem;
  color:#fff;
  background:linear-gradient(180deg,var(--brand),var(--brand-dark));
  box-shadow:0 10px 24px rgba(45,127,249,.28);
  flex:0 0 auto;
}

.logo-copy{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.logo-copy strong{
  font-size:1rem;
  color:var(--text);
}

.logo-copy small{
  margin-top:4px;
  font-size:.82rem;
  color:var(--muted);
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:24px 18px 48px;
}






.hero{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:stretch;
  margin-top:18px;
}

.hero-copy-card,
.hero-side-card,
.calc-card,
.result-card,
.info-box,
.content-panel{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.hero-copy-card{
  padding:38px;
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.75) 40%),
    var(--panel);
}

.hero-side-card{
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-size:.88rem;
  font-weight:800;
  border:1px solid #cfe1ff;
}

.eyebrow-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(255,184,77,.18);
}

h1{
  margin:18px 0 14px;
  font-size:clamp(2.2rem, 4vw, 4rem);
  line-height:1.02;
  letter-spacing:-.03em;
  color:#102942;
}

h2{
  margin:0 0 12px;
  font-size:1.5rem;
  line-height:1.15;
  color:#153250;
}

h3{
  margin:0 0 10px;
  font-size:1.05rem;
  line-height:1.2;
  color:#153250;
}

.sub{
  margin:0;
  max-width:62ch;
  font-size:1.06rem;
  color:var(--muted);
}

.hero-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.benefit-pill{
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.95rem;
}

.mini-illustration{
  position:relative;
  height:170px;
  border-radius:22px;
  background:
    linear-gradient(180deg, #eef5ff 0%, #f9fbff 100%);
  border:1px solid #dde9f8;
  margin-bottom:22px;
  overflow:hidden;
}

.mini-bar{
  position:absolute;
  bottom:24px;
  width:34px;
  border-radius:12px 12px 0 0;
  background:linear-gradient(180deg,var(--brand),#69a7ff);
}

.bar-1{
  left:32px;
  height:48px;
}

.bar-2{
  left:84px;
  height:80px;
}

.bar-3{
  left:136px;
  height:118px;
}

.mini-coin{
  position:absolute;
  right:24px;
  top:28px;
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(180deg,#ffd37a,#ffb84d);
  color:#7a4b00;
  font-weight:900;
  font-size:1.45rem;
  box-shadow:0 10px 28px rgba(255,184,77,.28);
}

.hero-side-card p{
  margin:0;
  color:var(--muted);
}

.calc-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin-top:28px;
  align-items:start;
}

.calc-card{
  padding:30px;
}

.calc-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:16px;
}

.calc-head p{
  margin:0;
  color:var(--muted);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field.full{
  grid-column:1 / -1;
}

label{
  font-size:.95rem;
  font-weight:750;
  color:#193756;
}

.help{
  color:var(--muted);
  font-size:.82rem;
  margin-top:-2px;
}

input,
select{
  width:100%;
  min-height:54px;
  border:1px solid #d9e5f3;
  background:#fbfdff;
  color:var(--text);
  border-radius:14px;
  padding:14px 15px;
  font-size:1rem;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}

input:focus,
select:focus{
  border-color:#8ab7ff;
  box-shadow:0 0 0 4px rgba(45,127,249,.14);
  background:#fff;
}

.seg{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.seg button{
  min-height:54px;
  border:1px solid #d9e5f3;
  background:#f8fbff;
  color:#234465;
  border-radius:14px;
  padding:12px 14px;
  font-size:1rem;
  font-weight:800;
  cursor:pointer;
  transition:.18s ease;
}

.seg button:hover{
  transform:translateY(-1px);
}

.seg button.active{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(180deg,var(--brand),var(--brand-dark));
  box-shadow:0 12px 28px rgba(45,127,249,.24);
}

.action-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.btn{
  border:0;
  border-radius:14px;
  padding:14px 18px;
  font-size:1rem;
  font-weight:800;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}

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

.btn-primary{
  color:#fff;
  background:linear-gradient(180deg,var(--brand),var(--brand-dark));
  box-shadow:0 14px 30px rgba(45,127,249,.24);
}

.btn-secondary{
  color:#274668;
  background:#f4f8fd;
  border:1px solid #d9e5f3;
}

.disclaimer{
  margin:16px 0 0;
  color:var(--muted);
  font-size:.84rem;
}

.results-stack{
  display:grid;
  gap:16px;
}

.result-grid-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.result-card{
  padding:22px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.result-card.spotlight{
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.95) 45%),
    #fff;
  border-color:#cfe0f8;
}

.result-label{
  color:var(--muted);
  font-size:.9rem;
  margin-bottom:8px;
  font-weight:700;
}

.result-value{
  font-size:clamp(1.8rem, 3vw, 2.8rem);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.03em;
  color:#102942;
}

.result-note{
  margin-top:9px;
  color:var(--muted);
  font-size:.92rem;
}

.profit-meter{
  height:14px;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
  border:1px solid #dce7f4;
  background:#f4f8fc;
}

.profit-fill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bad),var(--warn),var(--good));
  transition:width .25s ease;
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}

.info-box{
  padding:22px;
  background:linear-gradient(180deg,#ffffff,#fafdff);
}

.info-box p{
  margin:0;
  color:var(--muted);
}

.ad-box{
  border-style:dashed;
  background:
    linear-gradient(180deg,#ffffff,#f8fbff);
}

.content-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:28px;
}

.content-panel{
  padding:26px;
}

.prose-block p{
  margin:0 0 14px;
  color:var(--muted);
}

.prose-block p:last-child{
  margin-bottom:0;
}

.faq{
  display:grid;
  gap:12px;
  margin-top:28px;
}

.faq details{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  border-radius:18px;
  padding:16px 18px;
}

.faq summary{
  cursor:pointer;
  font-weight:800;
  color:#173452;
}

.faq p{
  margin:12px 0 0;
  color:var(--muted);
}

.bright-footer{
  padding:18px 0 8px;
  text-align:center;
}

.bright-footer p{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
}

/* optional older classes kept so nothing breaks if still referenced */
.panel,
.hero-card,
.result,
.info-card,
.ad-slot,
.content-block{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.ad-slot{
  padding:18px;
  text-align:center;
  color:var(--muted);
  border-style:dashed;
  background:#fff;
}

.section-title{
  margin:0 0 12px;
}

.section-copy{
  margin:0 0 16px;
  color:var(--muted);
}

@media (max-width: 1080px){
  .hero,
  .calc-stage,
  .content-band,
  .info-strip{
    grid-template-columns:1fr;
  }

  .hero-side-card{
    order:2;
  }
}

@media (max-width: 760px){
  .wrap{
    padding:18px 14px 40px;
  }

  .topbar{
    padding:14px 14px 0;
  }

  .logo-lockup{
    width:100%;
    justify-content:flex-start;
    border-radius:20px;
  }

  .hero-copy-card,
  .hero-side-card,
  .calc-card,
  .result-card,
  .info-box,
  .content-panel{
    padding:20px;
    border-radius:20px;
  }

  .form-grid,
  .result-grid-two,
  .seg{
    grid-template-columns:1fr;
  }

  h1{
    font-size:2.25rem;
  }

  .hero-benefits{
    gap:8px;
  }

  .benefit-pill{
    width:100%;
    text-align:center;
  }

  .calc-head{
    flex-direction:column;
  }
}


/********************************* HOME PAGE ****************************/

/* =========================================================
   BRIGHT TOOLKIT HOMEPAGE ONLY
   ========================================================= */

/* =========================================================
   BRIGHT TOOLKIT HOMEPAGE ONLY
   Requires: <body class="home">
   ========================================================= */

.home .home-hero{
  margin-top:18px;
}

.home .home-hero-single{
  display:block;
}

.home .hero-unified-card,
.home .feature-card,
.home .tool-card,
.home .cta-band,
.home .mini-stat,
.home .quote-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.home .hero-unified-card{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.home .hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #cfe1ff;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-size:.9rem;
  font-weight:800;
}

.home .hero-unified-copy h1{
  margin:18px 0 14px;
  max-width:12ch;
}

.home .hero-landing-copy{
  max-width:60ch;
  font-size:1.06rem;
  color:var(--muted);
}

.home .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.home .hero-actions .btn{
  min-width:180px;
  text-align:center;
  text-decoration:none;
  display:inline-flex;
  justify-content:center;
  align-items:center;
}

.home .hero-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.home .hero-trust-row span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.92rem;
}

.home .hero-unified-visual{
  position:relative;
}

.home .hero-visual-frame{
  position:relative;
  min-height:430px;
  border-radius:28px;
  border:1px solid #dbe6f3;
  background:
    linear-gradient(180deg,#fafdff,#eef5ff);
  overflow:hidden;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.home .hero-visual-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(45,127,249,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,127,249,.06) 1px, transparent 1px);
  background-size:34px 34px;
  opacity:.8;
  pointer-events:none;
}

.home .hero-screen{
  position:absolute;
  background:#fff;
  border:1px solid #dce7f4;
  border-radius:22px;
  box-shadow:var(--shadow-soft);
}

.home .top-screen{
  left:28px;
  top:28px;
  right:72px;
  padding:18px;
  z-index:2;
}

.home .bottom-screen{
  left:82px;
  right:28px;
  bottom:28px;
  padding:18px;
  z-index:1;
}

.home .screen-header{
  display:flex;
  gap:8px;
  margin-bottom:12px;
}

.home .screen-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:block;
}

.home .dot-blue{ background:#2d7ff9; }
.home .dot-gold{ background:#ffb84d; }
.home .dot-soft{ background:#c9dbf3; }

.home .screen-title{
  font-size:1rem;
  font-weight:800;
  color:#16324f;
  margin-bottom:14px;
}

.home .screen-highlight-row{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
  margin-bottom:14px;
}

.home .screen-highlight{
  border-radius:18px;
  border:1px solid #dce7f4;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  padding:14px;
}

.home .screen-highlight small{
  display:block;
  font-size:.8rem;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:700;
}

.home .screen-highlight strong{
  display:block;
  font-size:1.7rem;
  line-height:1;
  font-weight:900;
  letter-spacing:-.03em;
  color:#102942;
}

.home .small-highlight strong{
  font-size:1.25rem;
}

.home .mock-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.home .mock-field{
  min-height:42px;
  border-radius:14px;
  background:linear-gradient(180deg,#f9fcff,#eef5ff);
  border:1px solid #deebf8;
}

.home .mock-field.short{
  min-height:42px;
  width:75%;
}

.home .tiny-label{
  color:var(--muted);
  font-size:.82rem;
  font-weight:700;
  margin-bottom:8px;
}

.home .line-chart{
  position:relative;
  height:170px;
  margin-top:4px;
  border-radius:18px;
  background:linear-gradient(180deg,#fbfdff,#f5f9ff);
  border:1px solid #e1ebf7;
  overflow:hidden;
}

.home .line-chart svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.home .hero-moved-stats{
  margin-top:18px;
}

.home .hero-micro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.home .mini-stat{
  padding:16px;
  background:linear-gradient(180deg,#fff,#f9fcff);
}

.home .mini-stat strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:6px;
  color:#102942;
}

.home .mini-stat span{
  display:block;
  color:var(--muted);
  font-size:.9rem;
}

.home .tool-strip,
.home .feature-strip{
  margin-top:28px;
}

.home .section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:16px;
}

.home .section-head p{
  margin:0;
  max-width:62ch;
  color:var(--muted);
}

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

.home .feature-card,
.home .tool-card{
  padding:24px;
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}

.home .feature-icon,
.home .tool-icon{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:18px;
  margin-bottom:16px;
  font-size:1.35rem;
  font-weight:900;
  color:var(--brand-dark);
  background:linear-gradient(180deg,#edf4ff,#ddebff);
  border:1px solid #d4e4fb;
  box-shadow:var(--shadow-soft);
}

.home .tool-card h3,
.home .feature-card h3{
  margin-bottom:10px;
}

.home .tool-card p,
.home .feature-card p{
  margin:0 0 16px;
  color:var(--muted);
}

.home .tool-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:var(--brand-dark);
}

.home .tool-link span{
  font-size:1.05rem;
  line-height:1;
}

.home .quote-card{
  margin-top:28px;
  padding:28px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  align-items:center;
  background:
    radial-gradient(circle at right top, rgba(45,127,249,.10), transparent 34%),
    linear-gradient(180deg,#ffffff,#f9fcff);
}

.home .quote-card blockquote{
  margin:0;
  font-size:1.35rem;
  line-height:1.35;
  font-weight:700;
  color:#13304e;
}

.home .quote-card p{
  margin:10px 0 0;
  color:var(--muted);
}

.home .quote-visual{
  min-height:180px;
  border-radius:22px;
  border:1px solid #dbe6f3;
  background:linear-gradient(180deg,#f7fbff,#eef5ff);
  position:relative;
  overflow:hidden;
}

.home .quote-blob,
.home .quote-dot,
.home .quote-pill{
  position:absolute;
}

.home .quote-blob{
  width:180px;
  height:180px;
  right:-28px;
  top:-24px;
  border-radius:40px;
  background:linear-gradient(180deg,#8fc0ff,#2d7ff9);
  opacity:.22;
  transform:rotate(24deg);
}

.home .quote-dot{
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--accent);
  left:26px;
  top:32px;
  box-shadow:0 0 0 10px rgba(255,184,77,.14);
}

.home .quote-pill{
  left:28px;
  right:28px;
  bottom:28px;
  height:24px;
  border-radius:999px;
  background:linear-gradient(90deg,#dcebff,#8ebcff);
}

.home .cta-band{
  margin-top:28px;
  padding:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  background:
    linear-gradient(135deg, rgba(45,127,249,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.home .cta-band h2{
  margin-bottom:8px;
}

.home .cta-band p{
  margin:0;
  color:var(--muted);
  max-width:60ch;
}

.home .bright-footer{
  margin-top:28px;
}

@media (max-width: 1080px){
  .home .hero-unified-card,
  .home .quote-card,
  .home .feature-grid,
  .home .tool-grid{
    grid-template-columns:1fr;
  }

  .home .hero-unified-copy h1{
    max-width:none;
  }

  .home .hero-visual-frame{
    min-height:400px;
  }
}

@media (max-width: 760px){
  .home .hero-unified-card,
  .home .feature-card,
  .home .tool-card,
  .home .cta-band,
  .home .mini-stat,
  .home .quote-card{
    border-radius:20px;
  }

  .home .hero-unified-card,
  .home .feature-card,
  .home .tool-card,
  .home .quote-card,
  .home .cta-band{
    padding:20px;
  }

  .home .hero-micro-grid,
  .home .feature-grid,
  .home .tool-grid,
  .home .screen-highlight-row,
  .home .mock-fields{
    grid-template-columns:1fr;
  }

  .home .hero-visual-frame{
    min-height:380px;
  }

  .home .top-screen{
    left:20px;
    right:20px;
    top:20px;
  }

  .home .bottom-screen{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .home .mock-field.short{
    width:100%;
  }

  .home .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  .home .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* =========================================================
   BREAK-EVEN CALCULATOR PAGE ONLY
   Requires: <body class="break-even-page">
   ========================================================= */

.break-even-page .be-hero{
  margin-top:18px;
}

.break-even-page .be-hero-card,
.break-even-page .be-calc-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.break-even-page .be-hero-card{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.break-even-page .be-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.break-even-page .be-trust-row span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.92rem;
}

.break-even-page .be-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin-top:28px;
  align-items:start;
}

.break-even-page .be-calc-card{
  padding:30px;
}

.break-even-page .be-results-stack{
  display:grid;
  gap:16px;
}

.break-even-page .result-card{
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.break-even-page .result-card.spotlight{
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.95) 45%),
    #fff;
  border-color:#cfe0f8;
}

.break-even-page .result-grid-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.break-even-page .profit-meter{
  height:14px;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
  border:1px solid #dce7f4;
  background:#f4f8fc;
}

.break-even-page .profit-fill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bad),var(--warn),var(--good));
  transition:width .25s ease;
}

@media (max-width: 1080px){
  .break-even-page .be-stage{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .break-even-page .be-hero-card,
  .break-even-page .be-calc-card{
    padding:20px;
    border-radius:20px;
  }

  .break-even-page .result-grid-two{
    grid-template-columns:1fr;
  }
}



/* =========================================================
   HOURLY VS FLAT RATE CALCULATOR PAGE ONLY
   Requires: <body class="hourly-flat-page">
   ========================================================= */

.hourly-flat-page .hf-hero{
  margin-top:18px;
}

.hourly-flat-page .hf-hero-card,
.hourly-flat-page .hf-calc-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.hourly-flat-page .hf-hero-card{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.hourly-flat-page .hf-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.hourly-flat-page .hf-trust-row span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.92rem;
}

.hourly-flat-page .hf-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin-top:28px;
  align-items:start;
}

.hourly-flat-page .hf-calc-card{
  padding:30px;
}

.hourly-flat-page .hf-results-stack{
  display:grid;
  gap:16px;
}

.hourly-flat-page .hf-compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.hourly-flat-page .result-card{
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.hourly-flat-page .result-card.spotlight{
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.95) 45%),
    #fff;
  border-color:#cfe0f8;
}

.hourly-flat-page .hf-best-value{
  font-size:clamp(1.8rem, 3vw, 2.5rem);
}

.hourly-flat-page .profit-meter{
  height:14px;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
  border:1px solid #dce7f4;
  background:#f4f8fc;
}

.hourly-flat-page .profit-fill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bad),var(--warn),var(--good));
  transition:width .25s ease;
}

@media (max-width: 1080px){
  .hourly-flat-page .hf-stage{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .hourly-flat-page .hf-hero-card,
  .hourly-flat-page .hf-calc-card{
    padding:20px;
    border-radius:20px;
  }

  .hourly-flat-page .hf-compare-grid{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   PROFIT MARGIN CALCULATOR PAGE ONLY
   Requires: <body class="profit-margin-page">
   ========================================================= */

.profit-margin-page .pm-hero{
  margin-top:18px;
}

.profit-margin-page .pm-hero-card,
.profit-margin-page .pm-calc-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.profit-margin-page .pm-hero-card{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.profit-margin-page .pm-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.profit-margin-page .pm-trust-row span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.92rem;
}

.profit-margin-page .pm-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin-top:28px;
  align-items:start;
}

.profit-margin-page .pm-calc-card{
  padding:30px;
}

.profit-margin-page .pm-results-stack{
  display:grid;
  gap:16px;
}

.profit-margin-page .pm-results-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.profit-margin-page .result-card{
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.profit-margin-page .result-card.spotlight{
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.95) 45%),
    #fff;
  border-color:#cfe0f8;
}

.profit-margin-page .profit-meter{
  height:14px;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
  border:1px solid #dce7f4;
  background:#f4f8fc;
}

.profit-margin-page .profit-fill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bad),var(--warn),var(--good));
  transition:width .25s ease;
}

@media (max-width: 1080px){
  .profit-margin-page .pm-stage{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .profit-margin-page .pm-hero-card,
  .profit-margin-page .pm-calc-card{
    padding:20px;
    border-radius:20px;
  }

  .profit-margin-page .pm-results-grid{
    grid-template-columns:1fr;
  }
}



/* =========================================================
   SHARED TOP NAV
   ========================================================= */

.topbar-nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid #d9e5f3;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-soft);
  color:#234465;
  font-weight:800;
  text-decoration:none;
  transition:.18s ease;
}

.site-nav a:hover{
  transform:translateY(-1px);
  text-decoration:none;
}

.site-nav a[aria-current="page"]{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(180deg,var(--brand),var(--brand-dark));
  box-shadow:0 12px 28px rgba(45,127,249,.22);
}

@media (max-width: 760px){
  .topbar-nav-row{
    flex-direction:column;
    align-items:stretch;
  }

  .site-nav{
    width:100%;
    justify-content:flex-start;
  }
}


/* =========================================================
   TOOLS PAGE ONLY
   Requires: <body class="tools-page">
   ========================================================= */

.tools-page .tools-hero{
  margin-top:18px;
}

.tools-page .tools-hero-card,
.tools-page .tool-directory-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.tools-page .tools-hero-card{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.tools-page .tools-directory{
  margin-top:28px;
}

.tools-page .tools-directory-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.tools-page .tool-directory-card{
  display:flex;
  gap:18px;
  padding:24px;
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}

.tools-page .featured-tool-card .tool-btn{
  background:linear-gradient(180deg,#ffb84d,#ff9f1a);
  box-shadow:0 12px 28px rgba(255,184,77,.25);
}

.tools-page .tool-directory-icon{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  border-radius:18px;
  flex:0 0 auto;
  font-size:1.4rem;
  font-weight:900;
  color:var(--brand-dark);
  background:linear-gradient(180deg,#edf4ff,#ddebff);
  border:1px solid #d4e4fb;
  box-shadow:var(--shadow-soft);
}

.tools-page .tool-directory-body{
  display:flex;
  flex-direction:column;
}

.tools-page .tool-directory-body h3{
  margin:0 0 10px;
}

.tools-page .tool-directory-body p{
  margin:0 0 16px;
  color:var(--muted);
}

.tools-page .tool-tag{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--brand-soft);
  border:1px solid #cfe1ff;
  color:var(--brand-dark);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.01em;
}

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

@media (max-width: 760px){
  .tools-page .tools-hero-card,
  .tools-page .tool-directory-card{
    padding:20px;
    border-radius:20px;
  }

  .tools-page .tool-directory-card{
    flex-direction:column;
  }
}

.tools-page .tool-btn{
  margin-top:auto;
  width:max-content;
}


/* =========================================================
   INCOME GOAL CALCULATOR PAGE ONLY
   ========================================================= */

.income-goal-page .ig-hero{
  margin-top:18px;
}

.income-goal-page .ig-hero-card,
.income-goal-page .ig-calc-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.income-goal-page .ig-hero-card{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.income-goal-page .ig-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.income-goal-page .ig-trust-row span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.92rem;
}

.income-goal-page .ig-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin-top:28px;
  align-items:start;
}

.income-goal-page .ig-calc-card{
  padding:30px;
}

.income-goal-page .ig-results-stack{
  display:grid;
  gap:16px;
}

.income-goal-page .ig-results-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.income-goal-page .result-card{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}

.income-goal-page .result-card.spotlight{
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.95) 45%),
    #fff;
  border-color:#cfe0f8;
}

.income-goal-page .profit-meter{
  height:14px;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
  border:1px solid #dce7f4;
  background:#f4f8fc;
}

.income-goal-page .profit-fill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bad),var(--warn),var(--good));
  transition:width .25s ease;
}

@media (max-width:1080px){
  .income-goal-page .ig-stage{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .income-goal-page .ig-hero-card,
  .income-goal-page .ig-calc-card{
    padding:20px;
    border-radius:20px;
  }

  .income-goal-page .ig-results-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   SELLING PRICE CALCULATOR PAGE ONLY
   ========================================================= */

.selling-price-page .sp-hero{
  margin-top:18px;
}

.selling-price-page .sp-hero-card,
.selling-price-page .sp-calc-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}

.selling-price-page .sp-hero-card{
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

.selling-price-page .sp-trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.selling-price-page .sp-trust-row span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d9e7f7;
  box-shadow:var(--shadow-soft);
  color:#20405f;
  font-weight:700;
  font-size:.92rem;
}

.selling-price-page .sp-stage{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  margin-top:28px;
  align-items:start;
}

.selling-price-page .sp-calc-card{
  padding:30px;
}

.selling-price-page .sp-results-stack{
  display:grid;
  gap:16px;
}

.selling-price-page .sp-results-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.selling-price-page .result-card{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}

.selling-price-page .result-card.spotlight{
  background:
    linear-gradient(135deg, rgba(45,127,249,.08), rgba(255,255,255,.95) 45%),
    #fff;
  border-color:#cfe0f8;
}

.selling-price-page .profit-meter{
  height:14px;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
  border:1px solid #dce7f4;
  background:#f4f8fc;
}

.selling-price-page .profit-fill{
  width:0%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--bad),var(--warn),var(--good));
  transition:width .25s ease;
}

@media (max-width:1080px){
  .selling-price-page .sp-stage{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .selling-price-page .sp-hero-card,
  .selling-price-page .sp-calc-card{
    padding:20px;
    border-radius:20px;
  }

  .selling-price-page .sp-results-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   SHARED SITE SHELL
   Floating header + full-width footer
   ========================================================= */

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
}

.site-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.site-main{
  flex:1 0 auto;
  padding-top:12px;
}

.site-header-shell{
  position:sticky;
  top:0;
  z-index:1000;
  padding-top:14px;
  background:linear-gradient(180deg, rgba(245,248,255,.92), rgba(245,248,255,.72) 72%, rgba(245,248,255,0));
  backdrop-filter:blur(10px);
}

.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
}

.topbar-nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid #d9e5f3;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-soft);
  color:#234465;
  font-weight:800;
  text-decoration:none;
  transition:.18s ease;
}

.site-nav a:hover{
  transform:translateY(-1px);
  text-decoration:none;
}

.site-nav a[aria-current="page"]{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(180deg,var(--brand),var(--brand-dark));
  box-shadow:0 12px 28px rgba(45,127,249,.22);
}

.site-footer{
  width:100%;
  margin-top:48px;
  background:linear-gradient(180deg,#16324f,#122a43);
  color:#eaf2ff;
  border-top:1px solid rgba(255,255,255,.08);
}

.site-footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:34px 18px 26px;
  display:grid;
  grid-template-columns:1.2fr .7fr .7fr 1.3fr;
  gap:28px;
}

.site-footer h3,
.site-footer h4{
  margin:0 0 12px;
  color:#ffffff;
}

.site-footer h3{
  font-size:1.2rem;
}

.site-footer h4{
  font-size:.98rem;
}

.site-footer p{
  margin:0 0 12px;
  color:rgba(234,242,255,.82);
  line-height:1.6;
}

.footer-copy{
  max-width:30ch;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.footer-links a{
  color:#dfeaff;
  text-decoration:none;
}

.footer-links a:hover{
  text-decoration:underline;
}

.footer-disclaimer{
  font-size:.9rem;
}

.footer-contact{
  margin-top:10px;
  font-size:.92rem;
}

.footer-contact a{
  color:#ffffff;
  font-weight:700;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 18px 18px;
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:.9rem;
  color:rgba(234,242,255,.72);
}

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

@media (max-width: 760px){
  .site-header-shell{
    padding-top:10px;
  }

  .topbar-nav-row{
    flex-direction:column;
    align-items:stretch;
  }

  .site-nav{
    width:100%;
    justify-content:flex-start;
  }

  .site-footer-inner{
    grid-template-columns:1fr;
    padding:28px 14px 20px;
    gap:18px;
  }

  .footer-bottom{
    padding:14px;
  }
}



/* =========================================================
   SUPPORT PAGES (About / Privacy / Contact)
   ========================================================= */

/* Simple hero (used on About, Privacy, Contact) */
.simple-hero{
  margin-top:18px;
}

.simple-hero-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
  padding:42px;

  background:
    radial-gradient(circle at top left, rgba(45,127,249,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,184,77,.10), rgba(255,255,255,.96) 36%),
    #fff;
}

/* Content band spacing consistency */
.content-band{
  margin-top:28px;
  display:grid;
  gap:18px;
}

.content-panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  padding:26px;
}

/* Prose improvements */
.prose-block h2{
  margin-top:0;
}

.prose-block p{
  line-height:1.7;
  color:var(--muted);
}

.prose-block ul{
  padding-left:18px;
  margin:12px 0 0;
}

.prose-block li{
  margin-bottom:6px;
}

/* =========================================================
   PRIVACY PAGE
   ========================================================= */

.legal-stack{
  margin-top:28px;
  display:grid;
  gap:18px;
}

.legal-panel{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}

.contact-panel-main,
.contact-panel-side{
  height:100%;
}

.contact-email{
  font-size:1.2rem;
  font-weight:800;
  margin:10px 0 14px;
}

.contact-email a{
  color:var(--brand);
  text-decoration:none;
}

.contact-email a:hover{
  text-decoration:underline;
}

/* =========================================================
   INFO STRIP (reused across pages)
   ========================================================= */

.info-strip{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.info-box{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:22px;
  box-shadow:var(--shadow);
}

.info-box h3{
  margin-top:0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

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

  .info-strip{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .simple-hero-card{
    padding:20px;
    border-radius:20px;
  }

  .content-panel{
    padding:18px;
    border-radius:20px;
  }
}



/* =========================================================
   CONTACT BUTTON (Email Support)
   ========================================================= */

.contact-email-wrap{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--line);
}

.contact-email-btn{
  font-size:1rem;
  padding:14px 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 14px 34px rgba(45,127,249,.25);
  transition:.2s ease;
}

.contact-email-btn:hover{
  transform:translateY(-2px) scale(1.02);
}

.contact-note{
  margin-top:10px;
  font-size:.9rem;
  color:var(--muted);
}

.contact-extra{
  margin-top:14px;
  font-size:.9rem;
  color:var(--muted);
}

