/* =========================================================
   Welloria Health — Structured Wellness Tech (Light Mode)
   Clean organized stylesheet

   Palette:
   --primary:   #2F4858
   --secondary: #4C6F7A
   --bg:        #F4F6F8
   --card:      #FFFFFF
   --text:      #1E2A32
   --muted:     #5A6B76
   --line:      #D9E1E6
   --accent:    #7BA6B1
========================================================= */


/* =========================================================
   1) CSS Variables
========================================================= */
:root{
  --primary:#2F4858;
  --secondary:#4C6F7A;
  --bg:#F4F6F8;
  --card:#FFFFFF;
  --text:#1E2A32;
  --muted:#5A6B76;
  --line:#D9E1E6;
  --accent:#7BA6B1;

  --radius:14px;
  --radius-lg:16px;

  --shadow:0 10px 30px rgba(30,42,50,.08);
  --shadow-soft:0 6px 18px rgba(30,42,50,.06);

  --container:1180px;
  --content:860px;
  --article:820px;
}


/* =========================================================
   2) Base / Reset
========================================================= */
*{
  box-sizing:border-box;
}

html,
body{
  height:100%;
}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#f5f8fb;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  color:var(--primary);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

a.btn{
  text-decoration:none;
}

main{
  padding:28px 0 40px;
}


/* =========================================================
   3) Layout / Containers / Sections
========================================================= */
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:50px 20px;
}

.section-tight{
  padding-top:0;
}

.narrow{
  max-width:760px;
  margin:auto;
}

.hr{
  height:1px;
  background:var(--line);
  margin:18px 0;
}

.rule{
  border:none;
  border-top:1px solid var(--line);
  margin:2rem 0;
}

.section-divider{
  height:1px;
  width:100%;
  max-width:var(--content);
  margin:36px auto;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(47,72,88,.18),
    transparent
  );
}

.section-head{
  margin-bottom:1.5rem;
}

.section-head h2{
  margin-bottom:.5rem;
}

.section-actions{
  display:flex;
  justify-content:flex-start;
}

.section-heading{
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
}

.section-heading h2{
  margin-bottom:12px;
}

.section-intro{
  max-width:720px;
  margin:.85rem auto 0;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.7;
}


/* =========================================================
   4) Typography
========================================================= */
h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.1;
  letter-spacing:-0.04em;
}

h2{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.2;
  letter-spacing:-0.03em;
}

h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-0.02em;
}

.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}

.fineprint,
.small{
  font-size:.9rem;
}

.fineprint{
  color:var(--muted);
  margin:10px 0 0;
  max-width:620px;
}

.muted{
  color:var(--muted);
}


/* =========================================================
   5) Brand / Logo
========================================================= */
.logo,
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}

.logo-icon,
.brand-logo{
  width:34px;
  height:34px;
}

.logo-icon{
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

.brand-mark{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}

.brand-text{
  display:flex;
  gap:6px;
  align-items:baseline;
  line-height:1;
}

.brand-name{
  font-weight:600;
  font-size:1.05rem;
  color:var(--text);
}

.brand-sub{
  font-weight:500;
  color:var(--muted);
  font-size:.95rem;
}

.brand:hover{
  opacity:.9;
}


/* =========================================================
   6) Header / Navigation
========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
  white-space:nowrap;
}

.nav-link{
  position:relative;
  padding:10px 14px;
  border-radius:10px;
  color:var(--text);
  font-weight:600;
  text-decoration:none;
  transition:
    background .15s ease,
    transform .15s ease,
    color .15s ease,
    box-shadow .15s ease;
}

.nav-link:hover{
  background:rgba(47,72,88,.08);
  color:var(--primary);
  text-decoration:none;
  transform:translateY(-1px);
}

.nav-link.is-active{
  background:rgba(47,72,88,.12);
  font-weight:700;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:var(--primary);
  transition:width .25s ease;
}

.nav-link:hover::after{
  width:100%;
}

.nav-link + .nav-link::before{
  content:"";
  display:inline-block;
  width:1px;
  height:18px;
  margin:0 10px 0 2px;
  background:rgba(90,107,118,.28);
  vertical-align:middle;
}

.nav .btn{
  margin-left:6px;
}

.nav-meta{
  color:var(--muted);
  font-weight:600;
  cursor:default;
}

.nav-meta:hover{
  background:transparent;
  text-decoration:none;
  transform:none;
}

.nav a[href="/start"]{
  font-weight:600;
  color:var(--primary);
}

.nav a[href="/login"]{
  color:var(--muted);
  font-weight:600;
}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:4px 0;
  border-radius:2px;
}

/* Mobile Nav */
.mobile-nav{
  border-top:1px solid var(--line);
  background:var(--bg);
}

.mobile-nav-inner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}

.mobile-link{
  display:block;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
  color:var(--text);
  font-weight:700;
  text-decoration:none;
}

.mobile-link:hover{
  text-decoration:none;
  border-color:rgba(47,72,88,.25);
}

.mobile-meta{
  padding:10px 12px;
  color:var(--muted);
  font-weight:700;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
}

.welcome-pop{
  animation:welcomePop .35s ease-out both;
}

@keyframes welcomePop{
  from{ opacity:0; transform:translateY(6px); }
  to{ opacity:1; transform:translateY(0); }
}


/* =========================================================
   7) Buttons
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:
    transform .06s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.btn:hover{
  text-decoration:none;
}

.btn:active{
  transform:translateY(1px);
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:var(--shadow-soft);
}

.btn-primary:hover{
  background:#27404f;
}

.btn-outline{
  background:transparent;
  border-color:rgba(47,72,88,.25);
  color:var(--primary);
}

.btn-outline:hover{
  background:rgba(47,72,88,.08);
}

.btn-secondary{
  background:rgba(123,166,177,.14);
  border-color:rgba(123,166,177,.45);
  color:var(--primary);
}

.btn-secondary:hover{
  background:rgba(123,166,177,.20);
  border-color:rgba(123,166,177,.65);
}

.btn-block{
  width:100%;
}

.btn-large{
  padding:14px 26px;
  font-size:1.05rem;
}


/* =========================================================
   8) Badges / Kicker / Pills
========================================================= */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  color:var(--secondary);
  font-weight:600;
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.kicker-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--accent);
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:88px;
  padding:.35rem .9rem;
  border-radius:999px;
  border:1px solid rgba(47,72,88,.18);
  background:rgba(47,72,88,.06);
  color:var(--primary);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.pillars{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.pillar{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(47,72,88,.18);
  background:rgba(47,72,88,.06);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  color:var(--primary);
}


/* =========================================================
   9) Cards / Grids
========================================================= */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
}

.card-body{
  padding:2.25rem 2.5rem;
}

.cards-grid{
  max-width:var(--content);
  margin:0 auto;
  display:grid;
  gap:2rem;
}

.card-link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.card-link:hover{
  text-decoration:none;
  border-color:rgba(47,72,88,.18);
  box-shadow:var(--shadow);
}

.card.card-hover{
  transition:transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}

.card.card-hover:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color:rgba(47,72,88,.22);
}

.card-meta{
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}

.card-title{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-0.02em;
}

.card-text{
  margin:0;
  color:var(--muted);
}

.card-lead{
  font-weight:500;
  margin-bottom:8px;
}

.card-list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}

.card-list li{
  margin-bottom:4px;
}


/* =========================================================
   10) Hero / Home Sections
========================================================= */
.hero{
  padding:48px 0 24px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  align-items:stretch;
}

.hero-copy{
  padding:40px 38px;
}

.hero-copy h1{
  max-width:12ch;
  margin-bottom:14px;
}

.hero-copy .lead{
  max-width:60ch;
  font-size:1.08rem;
  line-height:1.75;
  margin-bottom:22px;
}

.hero-copy .kicker{
  margin-bottom:14px;
}

.hero-copy .pillars{
  margin-top:20px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}

.hero-panel{
  padding:22px;
  display:grid;
  gap:14px;
}

.panel-title{
  font-weight:900;
  letter-spacing:-0.02em;
  margin:4px 0 0;
}

.panel-sub{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.hero-panel-soft{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,246,248,0.78));
  border:1px solid rgba(47,72,88,.10);
  border-radius:22px;
  padding:40px 42px;
  box-shadow:
    0 10px 30px rgba(30,42,50,.06),
    inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter:blur(8px);
}

.hero-panel-soft::before{
  content:"";
  position:absolute;
  inset:-20% auto auto -10%;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(123,166,177,.16), transparent 68%);
  pointer-events:none;
}

.hero .card{
  border-radius:20px;
}

.hero .metric{
  background:rgba(255,255,255,.72);
}

.hero .btn-primary{
  box-shadow:0 12px 24px rgba(47,72,88,.16);
}


/* =========================================================
   11) Metrics / Features / Utility Grids
========================================================= */
.metric-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}

.metric{
  background:rgba(244,246,248,.55);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}

.metric .label{
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}

.metric .value{
  font-weight:900;
  font-size:20px;
  margin-top:6px;
  letter-spacing:-0.02em;
}

.metric .sub{
  color:var(--muted);
  font-size:12px;
  margin-top:4px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
}

.grid-3 .card{
  height:100%;
  transition:transform .12s ease, box-shadow .18s ease;
}

.grid-3 .card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

.grid-3 .card-body{
  display:flex;
  flex-direction:column;
  height:100%;
}

.feature{
  padding:18px;
}

.feature p{
  margin:0;
  color:var(--muted);
}


/* =========================================================
   12) Tools / Product UI
========================================================= */
.tool-card .tool-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.card-body .form-actions{
  margin-top:auto;
}


/* =========================================================
   13) Forms / Fields / Notes
========================================================= */
form{
  display:block;
}

.field-label{
  display:block;
  font-weight:800;
  margin:10px 0 6px;
  color:var(--text);
}

.field{
  width:100%;
  max-width:100%;
  display:block;
  border:1px solid var(--line);
  border-radius:12px;
  padding:14px 14px;
  min-height:48px;
  font:inherit;
  font-size:16px;
  line-height:1.25;
  background:var(--card);
}

.field:focus{
  outline:2px solid rgba(123,166,177,.35);
  border-color:rgba(47,72,88,.35);
}

.card .field-label{
  display:block;
  margin:0 0 8px;
}

.card .field{
  width:100%;
  display:block;
}

.form-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.form-actions .btn{
  width:100%;
  justify-content:center;
}

.checklist{
  display:grid;
  gap:10px;
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
  font-weight:700;
}

.check input{
  margin-top:3px;
}

.notes{
  display:grid;
  gap:12px;
}

.note-item{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px;
  background:rgba(244,246,248,.55);
}

.note-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.note-text{
  margin-top:8px;
  color:var(--muted);
  font-weight:600;
}


/* =========================================================
   14) Meal Builder UI
========================================================= */
.meal-result{
  margin-top:1.25rem;
}

.meal-scoreline{
  display:flex;
  gap:.75rem;
  align-items:center;
  margin-bottom:.75rem;
}

.meal-score{
  font-weight:900;
}

.meal-label{
  font-size:.95rem;
  opacity:.85;
}

.meal-breakdown{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin:.75rem 0;
}

.meal-pill{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .7rem;
  border-radius:999px;
  border:1px solid rgba(120,140,150,.35);
  background:rgba(120,140,150,.10);
  font-weight:700;
  font-size:.92rem;
}

.meal-pill.miss{
  opacity:.75;
}

.meal-tip{
  margin-bottom:.85rem;
  opacity:.92;
}

.meal-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:.6rem;
}


/* =========================================================
   15) Modal
========================================================= */
body.modal-open{
  overflow:hidden;
}

.modal{
  position:fixed;
  inset:0;
  z-index:999999;
  display:none;
}

.modal.is-open{
  display:block;
}

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(2px);
}

.modal-dialog{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:min(860px, calc(100% - 2rem));
  max-height:calc(100vh - 2rem);
  overflow:auto;
  background:#0f1720;
  color:#f5f8fa;
  border:1px solid rgba(140,170,180,.25);
  border-radius:16px;
  padding:1.25rem 1.25rem 1rem;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}

.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.modal-header h3{
  margin:0;
}

.modal-close{
  border:none;
  background:transparent;
  color:inherit;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  opacity:.85;
}

.modal-close:hover{
  opacity:1;
}

.modal-sub{
  margin:.5rem 0 1rem;
  opacity:.9;
}

.modal-textarea{
  min-height:320px;
  width:100%;
  background:#1e2a33;
  color:#f5f8fa;
  border:1px solid rgba(180,200,210,.35);
  border-radius:14px;
  padding:1rem 1.1rem;
  line-height:1.55;
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:.95rem;
}

.modal-textarea:focus{
  outline:none;
  border-color:rgba(123,166,177,.55);
  box-shadow:0 0 0 3px rgba(123,166,177,.18);
}

.modal-actions{
  display:flex;
  gap:.75rem;
  justify-content:flex-end;
  margin-top:1rem;
  flex-wrap:wrap;
}

.modal-note{
  margin-top:.65rem;
  font-size:.95rem;
  opacity:.9;
}


/* =========================================================
   16) CTA Blocks
========================================================= */
.cta-card{
  background:#f9fbfd;
  border:1px solid rgba(20,40,60,.08);
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow-soft);
}

.cta-wide{
  max-width:var(--content);
  margin:2rem auto 0;
}

.cta-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:14px;
}


/* =========================================================
   17) App / Mobile Promo Sections
========================================================= */
.app-coming-soon{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
}

.app-image{
  width:100%;
  min-width:0;
}

.app-image img{
  display:block;
  width:100%;
  max-width:650px;
  height:auto;
  margin:0 auto;
  border-radius:18px;
}

.app-banner{
  background:#eef3f6;
  border-bottom:1px solid var(--line);
}

.app-banner-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
}

.app-banner-text{
  font-size:.95rem;
  color:var(--text);
}

.app-banner-text span{
  margin-left:8px;
  color:var(--muted);
}

.signup-title{
  font-size:2rem;
  font-weight:700;
  margin-bottom:12px;
}

.signup-sub{
  font-size:1.1rem;
  color:var(--muted);
  margin-bottom:16px;
}

.signup-benefits{
  font-size:.95rem;
  color:var(--muted);
  margin-bottom:20px;
}

.signup-proof{
  font-size:.9rem;
  color:var(--muted);
  margin-top:16px;
}

.signup-card{
  border:1px solid var(--line);
}


/* =========================================================
   18) Image Preview / Popup
========================================================= */
.app-preview{
  position:relative;
  display:inline-block;
}

.preview-thumb{
  width:100%;
  max-width:420px;
  border-radius:18px;
  cursor:pointer;
  transition:transform .25s ease;
}

.preview-thumb:hover{
  transform:scale(1.03);
}

.preview-popup{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(.9);
  max-width:90vw;
  max-height:90vh;
  width:auto;
  height:auto;
  opacity:0;
  pointer-events:none;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  transition:all .25s ease;
  z-index:9999;
}

.app-preview:hover .preview-popup{
  opacity:1;
  transform:translate(-50%, -50%) scale(1);
}

.app-preview::after{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  transition:.25s;
  pointer-events:none;
}

.app-preview:hover::after{
  opacity:1;
}

@media (hover:hover) and (pointer:fine){
  .preview-popup{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%) scale(.9);
    max-width:90vw;
    max-height:90vh;
    width:auto;
    height:auto;
    opacity:0;
    pointer-events:none;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    transition:all .25s ease;
    z-index:9999;
  }

  .app-preview:hover .preview-popup{
    opacity:1;
    transform:translate(-50%, -50%) scale(1);
  }
}


/* =========================================================
   19) MailerLite Embed
========================================================= */
.ml-embed{
  max-width:420px;
}

.ml-embed input{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1px solid #D9E1E6;
  font-size:15px;
}

.ml-embed input:focus{
  outline:none;
  border-color:#4C6F7A;
}

.ml-embed button{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:none;
  font-size:16px;
  font-weight:600;
  background:#2F4858;
  color:white;
  cursor:pointer;
  transition:all .2s ease;
}

.ml-embed button:hover{
  background:#3A5C6F;
  transform:translateY(-1px);
}


/* =========================================================
   20) Articles / Page Hero / Content
========================================================= */
.page-hero{
  padding:60px 20px 40px;
  border-bottom:1px solid var(--line);
}

.page-hero .container{
  max-width:var(--content);
}

.page-hero h1{
  margin-top:10px;
}

.page-hero .lead{
  font-size:1.15rem;
  color:var(--muted);
  max-width:720px;
}

.meta{
  margin-top:18px;
  font-size:.9rem;
  color:var(--muted);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.article{
  padding:2.5rem 0 4rem;
}

.article-body{
  max-width:var(--article);
  margin:0 auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:3rem;
  line-height:1.7;
  min-width:0;
}

.article-body h2{
  margin-top:2.2rem;
  margin-bottom:1rem;
}

.article-body p,
.article-body ul,
.article-body ol{
  margin-bottom:1.25rem;
}

.article-body ul,
.article-body ol{
  padding-left:1.25rem;
}

.section p{
  margin-bottom:1.2rem;
  line-height:1.7;
}

.section h2{
  margin-top:2rem;
  margin-bottom:.7rem;
  font-size:1.6rem;
}

.section h3{
  margin-top:1.6rem;
  margin-bottom:.4rem;
  font-size:1.2rem;
}

.section ul,
.section ol{
  margin:1rem 0 1.5rem 1.4rem;
}

.section li{
  margin-bottom:.4rem;
}

.callout{
  background:var(--card);
  border:1px solid var(--line);
  border-left:4px solid var(--secondary);
  padding:30px;
  border-radius:12px;
  margin:40px 0;
}

.callout h2{
  margin-top:0;
}

.callout h3{
  margin:0 0 6px;
  font-size:14px;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--secondary);
}

.callout p{
  margin-bottom:1rem;
}

.callout-steel{
  background:#eaf1f6;
  border-left-color:var(--primary);
}

.related-list{
  margin:1rem 0 0;
  padding-left:1.2rem;
}

.related-list li{
  margin-bottom:.55rem;
}


/* =========================================================
   20A) Article Sidebar / TOC / Aside Cards
========================================================= */
.article-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:24px;
  align-items:start;
}

.article-aside{
  position:sticky;
  top:96px;
}

.aside-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-soft);
  padding:18px 18px;
  margin-bottom:16px;
}

.aside-card h3{
  margin:0 0 10px;
  font-size:1rem;
  line-height:1.3;
}

.aside-note{
  margin:10px 0 0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.5;
}

.toc,
.linklist{
  margin:0;
  padding-left:1rem;
}

.toc li,
.linklist li{
  margin-bottom:.55rem;
}

.toc a,
.linklist a{
  color:var(--primary);
  text-decoration:none;
  font-weight:600;
}

.toc a:hover,
.linklist a:hover{
  text-decoration:underline;
}


/* =========================================================
   21) FAQ
========================================================= */
.faq-section{
  padding:56px 20px;
}

.faq-wrap{
  max-width:860px;
  margin:0 auto;
}

.faq-title{
  margin:0 0 22px;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px 28px;
  margin-bottom:14px;
  box-shadow:none;
}

.faq-item:last-child{
  margin-bottom:0;
}

.faq-question{
  margin:0 0 8px;
  font-size:1.15rem;
  line-height:1.3;
}

.faq-answer{
  margin:0;
  font-size:1rem;
  line-height:1.6;
  color:var(--muted);
}


/* =========================================================
   22) Footer
========================================================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:26px 0 18px;
  background:rgba(244,246,248,.9);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}

.footer-brand{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.footer-title{
  font-weight:900;
  letter-spacing:-0.02em;
}

.footer-sub{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
  margin-top:2px;
}

.footer-right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-link{
  color:var(--muted);
  font-weight:800;
  text-decoration:none;
}

.footer-link:hover{
  color:var(--text);
  text-decoration:none;
}

.footer-bottom{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.footer-latest{
  margin:0 0 24px;
  padding:20px 24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--card);
}

.footer-kicker{
  margin:0 0 8px;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
  color:var(--secondary);
}

.footer-latest-title{
  margin:0 0 8px;
  font-size:1.15rem;
  line-height:1.3;
}

.footer-latest-title a{
  color:var(--text);
  text-decoration:none;
}

.footer-latest-title a:hover{
  text-decoration:underline;
}

.footer-latest-text{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.6;
}

.footer-latest-link{
  margin:0;
}

.footer-latest-link a{
  font-weight:600;
  text-decoration:none;
}

.footer-latest-link a:hover{
  text-decoration:underline;
}


/* =========================================================
   23) Welloria Stability System Page
========================================================= */
.system-hero{
  text-align:center;
}

.system-hero .lead{
  max-width:760px;
  margin:0 auto;
}

.section-system-intro p{
  font-size:1.05rem;
  line-height:1.8;
  color:var(--muted);
}

.section-system-intro p + p{
  margin-top:18px;
}

.system-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.system-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.04);
}

.system-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:16px;
  background:var(--primary);
  color:#fff;
}

.system-card h3{
  margin-bottom:12px;
}

.system-card p{
  color:var(--muted);
  line-height:1.7;
}

.system-list{
  margin:18px 0 20px;
  padding-left:18px;
  color:var(--text);
}

.system-list li + li{
  margin-top:8px;
}

.system-support{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--line);
}

.system-support span{
  display:inline-block;
  font-weight:600;
  margin-bottom:6px;
  color:var(--text);
}

.system-support p{
  margin:0;
  font-size:0.96rem;
}

.system-card .form-actions{
  margin-top:18px;
}

.system-card .btn{
  width:100%;
  justify-content:center;
}

.section-system-flow{
  background:var(--bg);
}

.journey-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}

.journey-step{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  text-align:left;
}

.journey-number{
  display:inline-block;
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.08em;
  color:var(--secondary);
  margin-bottom:12px;
}

.journey-step h3{
  margin-bottom:10px;
}

.journey-step p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.anchor-box{
  text-align:center;
  background:linear-gradient(180deg, var(--card) 0%, rgba(255,255,255,0.92) 100%);
  border:1px solid var(--line);
  border-radius:24px;
  padding:40px 28px;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.04);
}

.anchor-label{
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:0.82rem;
  font-weight:700;
  color:var(--secondary);
  margin-bottom:10px;
}

.anchor-box h2{
  margin-bottom:14px;
}

.anchor-box p{
  color:var(--muted);
  max-width:700px;
  margin:0 auto;
  line-height:1.8;
}

.system-cta-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.04);
}

.system-cta-card p{
  color:var(--muted);
  margin-bottom:0;
}

.system-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.pillar-grid{
  margin-top:40px;
}


/* =========================================================
   24) System Graphics / Diagrams / Lightbox
========================================================= */
.system-graphic{
  padding-top:10px;
}

.system-graphic-wrap{
  display:flex;
  justify-content:center;
}

.system-graphic-section{
  padding-top:18px;
}

.system-graphic-card{
  max-width:980px;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,246,248,.84));
  border:1px solid rgba(47,72,88,.10);
  border-radius:24px;
  padding:32px 28px 28px;
  box-shadow:
    0 14px 34px rgba(30,42,50,.07),
    inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter:blur(8px);
}

.system-graphic-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 20px;
}

.system-graphic-head h2{
  margin-bottom:10px;
}

.system-graphic-head .lead{
  margin-bottom:0;
}

.system-figure{
  margin:0;
  text-align:center;
}

.system-figcaption{
  margin-top:14px;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
}

.system-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  max-width:1000px;
  margin:0 auto;
}

.system-diagram-wrap{
  display:flex;
  justify-content:center;
}

.system-summary h2{
  margin-bottom:12px;
}

.system-bullets{
  margin:18px 0 24px;
  padding-left:18px;
}

.system-bullets li{
  margin-bottom:14px;
  color:var(--text);
}

.system-diagram{
  display:block;
  width:100%;
  max-width:760px;
  height:auto;
  margin:0 auto;
  border-radius:20px;
  box-shadow:
    0 18px 40px rgba(30,42,50,.10),
    0 6px 16px rgba(30,42,50,.06);
  background:#fff;
}

.system-layout .system-diagram{
  max-width:420px;
}

.diagram-preview{
  display:flex;
  justify-content:center;
  cursor:pointer;
  margin:30px 0;
  position:relative;
}

.diagram-thumb{
  width:100%;
  max-width:640px;
  height:auto;
  border-radius:16px;
  box-shadow:
    0 18px 36px rgba(0,0,0,.08),
    0 4px 12px rgba(0,0,0,.06);
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:zoom-in;
}

.diagram-preview:hover .diagram-thumb{
  transform:scale(1.01);
}

.diagram-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,23,32,.72);
  padding:20px;
}

.diagram-popup{
  width:auto;
  max-width:min(1000px, 92vw);
  max-height:90vh;
  height:auto;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  background:#fff;
}

.diagram-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.diagram-lightbox img{
  max-width:92vw;
  max-height:90vh;
  border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.diagram-title{
  text-align:center;
  margin-bottom:28px;
}

.system-diagram-container{
  text-align:center;
  max-width:760px;
  margin:0 auto;
}

.diagram-caption{
  text-align:center;
  font-size:.9rem;
  color:var(--muted);
  margin-top:10px;
}


/* =========================================================
   25) Founder / About Page
========================================================= */
.founder-grid{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:32px;
  align-items:center;
}

.founder-photo img{
  width:100%;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.founder-intro h2{
  margin-top:0;
}

.founder-proof-section{
  background:var(--bg);
}

.founder-proof-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 2.75rem;
}

.founder-proof-heading h2{
  margin-bottom:.85rem;
}

.founder-proof-heading::after{
  content:"";
  display:block;
  width:78px;
  height:4px;
  border-radius:999px;
  background:rgba(47,72,88,.35);
  margin:1rem auto 0;
}

.founder-proof-grid{
  display:grid;
  grid-template-columns:1.15fr 1.15fr 1fr 1.15fr;
  gap:1.4rem;
  align-items:start;
  margin-top:2.5rem;
}

.proof-card{
  margin:0;
  text-align:center;
}

.proof-card img{
  width:100%;
  display:block;
  border-radius:24px;
  object-fit:cover;
  background:#ddd;
  box-shadow:0 18px 40px rgba(25,40,52,.08);
}

.proof-card figcaption{
  margin-top:.9rem;
  font-size:.98rem;
  color:var(--secondary);
  line-height:1.4;
}

.proof-card figcaption{
  margin-top:.9rem;
  font-size:.98rem;
  color:var(--secondary);
  line-height:1.4;
}

/* ==========================================
   Transformation Photo Hover
========================================== */

.proof-card{
  position:relative;
  overflow:hidden;
}

.proof-card img{
  transition:transform .45s ease, box-shadow .45s ease;
}

.proof-card:hover img{
  transform:scale(1.04);
  box-shadow:0 22px 50px rgba(25,40,52,.15);
}

.proof-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0,0,0,.18)
  );
  opacity:0;
  transition:opacity .35s ease;
}

.proof-card:hover::after{
  opacity:1;
}

.proof-card figcaption{
  transition:transform .35s ease;
}

.proof-card:hover figcaption{
  transform:translateY(-4px);
}

.proof-card--tall img{
  aspect-ratio:4 / 7;
}

.proof-card--medium img{
  aspect-ratio:4 / 5.5;
}

.proof-card--small{
  padding-top:1.25rem;
}

.proof-card--small img{
  aspect-ratio:4 / 3.8;
}

.founder-proof-story{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:2rem;
  margin-top:3rem;
  align-items:stretch;
}

.founder-proof-copy,
.founder-proof-highlight{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:1.75rem;
  box-shadow:0 10px 24px rgba(25,40,52,.04);
}

.founder-proof-copy h3{
  margin-top:0;
  margin-bottom:1rem;
}

.founder-proof-copy p:last-child{
  margin-bottom:0;
}

.founder-proof-highlight{
  display:grid;
  gap:1rem;
  align-content:start;
}

.proof-stat{
  padding:1rem 0;
  border-bottom:1px solid var(--line);
}

.proof-stat:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.proof-stat-number{
  display:block;
  font-size:2rem;
  line-height:1.1;
  color:var(--primary);
  margin-bottom:.3rem;
  font-weight:800;
  letter-spacing:-.03em;
}

.proof-stat-label{
  display:block;
  color:var(--muted);
  font-size:.98rem;
}

.testimonials{
  background:var(--card);
}

.testimonial-heading{
  text-align:center;
  max-width:720px;
  margin:0 auto 2.5rem;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:1fr;
  max-width:720px;
  margin:0 auto;
}

.testimonial-card{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:24px;
  padding:2rem;
  box-shadow:0 14px 32px rgba(25,40,52,.06);
}

.testimonial-icon{
  font-size:1.6rem;
  margin-bottom:.75rem;
}

.testimonial-text{
  font-size:1.05rem;
  line-height:1.7;
  color:var(--text);
  margin:0;
}

.testimonial-footer{
  margin-top:1.2rem;
  display:flex;
  align-items:center;
}

.testimonial-name{
  font-weight:600;
  color:var(--primary);
}

.testimonial-source{
  font-size:.9rem;
  color:var(--muted);
}

.testimonial-proof{
  margin-top:1.4rem;
  border-radius:14px;
  border:1px solid var(--line);
  width:100%;
  display:block;
}


/* =========================================================
   26) Article Utility / Quick Links / Support Grid / Share
========================================================= */
.article-cta{
  margin-top:2rem;
}

.quick-links{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.quick-link{
  display:block;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(244,246,248,.6);
  color:var(--text);
  font-weight:700;
  text-decoration:none;
}

.quick-link:hover{
  text-decoration:none;
  border-color:rgba(47,72,88,.28);
  box-shadow:var(--shadow-soft);
}

.support-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}

.support-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow-soft);
}

.support-card h3{
  margin-bottom:10px;
}

.support-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.share-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:30px 0;
}

.share-label{
  font-weight:600;
  color:var(--muted);
}

.share-btn{
  padding:8px 14px;
  border-radius:8px;
  text-decoration:none;
  font-size:.9rem;
  font-weight:500;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  transition:all .15s ease;
}

.share-btn:hover{
  transform:translateY(-1px);
}

.share-facebook{
  background:#1877F2;
  color:#fff;
  border:none;
}

.share-pinterest{
  background:#E60023;
  color:#fff;
  border:none;
}

.share-x{
  background:#000;
  color:#fff;
  border:none;
}

.share-copy{
  background:#f3f5f7;
}

.share-btn:disabled{
  opacity:.75;
  cursor:default;
}

.share-btn.is-copied{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 320px;
  gap: 2rem;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-content > * + * {
  margin-top: 1.15rem;
}

.article-content h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.article-list {
  padding-left: 1.25rem;
}

.article-list li + li {
  margin-top: 0.5rem;
}

.article-callout {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.article-example-card,
.article-cta {
  margin-top: 1.75rem;
}

.related-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-aside {
  min-width: 0;
}

@media (min-width: 981px) {
  .article-aside {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

/* =========================================================
   27) Daily Loop
========================================================= */

.section-daily-loop {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.loop-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.loop-diagram-wrap {
  background: #ffffff;
  border: 1px solid rgba(47, 72, 88, 0.08);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(47, 72, 88, 0.08);
}

.loop-diagram {
  width: 100%;
  height: auto;
  display: block;
}

.loop-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loop-steps {
  display: grid;
  gap: 1rem;
}

.loop-step {
  background: #ffffff;
  border: 1px solid rgba(47, 72, 88, 0.08);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(47, 72, 88, 0.05);
}

.loop-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  color: var(--primary);
}

.loop-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .loop-layout {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   28) Responsive
========================================================= */
@media (min-width:600px){
  .form-actions .btn{
    width:auto;
  }
}

@media (min-width:700px){
  .system-card .btn{
    width:auto;
  }
}

@media (max-width:1100px){
  .founder-proof-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .proof-card--small{
    padding-top:0;
  }

  .founder-proof-story{
    grid-template-columns:1fr;
  }
}

@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:36px;
  }

  .grid-3{
    grid-template-columns:1fr;
  }

  .metric-row{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .footer-inner{
    flex-direction:column;
  }

  .article-body{
    padding:2rem;
  }

  .card-body{
    padding:1.75rem;
  }

  .article-grid{
    grid-template-columns:1fr;
  }

  .article-aside{
    position:static;
  }
}

@media (max-width:900px){
  .app-coming-soon{
    grid-template-columns:1fr;
  }

  .app-image{
    text-align:center;
  }

  .system-grid,
  .journey-grid,
  .support-grid,
  .system-layout{
    grid-template-columns:1fr;
  }

  .system-cta-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .system-layout .system-diagram{
    max-width:340px;
  }
}

@media (max-width:768px){
  .founder-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .founder-photo{
    max-width:260px;
    margin:auto;
  }
}

@media (max-width:700px){
  .page-hero{
    padding:40px 20px 30px;
  }

  .section{
    padding:35px 20px;
  }

  .section h2{
    font-size:1.4rem;
  }

  .cta-actions,
  .form-actions{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .cta-actions .btn,
  .form-actions .btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .app-banner-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .faq-section{
    padding:40px 16px;
  }

  .faq-item{
    padding:18px 18px;
    border-radius:16px;
  }

  .faq-question{
    font-size:1.02rem;
  }

  .faq-answer{
    font-size:.96rem;
    line-height:1.5;
  }

  .system-graphic-card{
    padding:22px 18px 20px;
    border-radius:20px;
  }

  .system-diagram{
    border-radius:16px;
  }
}

@media (max-width:680px){
  .founder-proof-grid{
    grid-template-columns:1fr;
    gap:1.25rem;
  }

  .proof-card--tall img,
  .proof-card--medium img,
  .proof-card--small img{
    aspect-ratio:4 / 5;
  }

  .founder-proof-copy,
  .founder-proof-highlight,
  .testimonial-card{
    padding:1.25rem;
    border-radius:20px;
  }

  .proof-stat-number{
    font-size:1.7rem;
  }
}

@media (max-width:600px){
  .modal-dialog{
    width:calc(100% - 1.25rem);
    max-height:calc(100vh - 1.25rem);
    border-radius:14px;
  }
}

.app-coming-soon{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
}

.app-image{
  width:100%;
  min-width:0;
  text-align:center;
}

.app-image img{
  display:block;
  width:100%;
  max-width:650px;
  height:auto;
  margin:0 auto;
  border-radius:18px;
}

@media (max-width:900px){
  .app-coming-soon{
    grid-template-columns:1fr;
  }

  .app-image img{
    max-width:100%;
  }
}

.start-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 320px;
  gap: 2rem;
  align-items: start;
}

.start-main {
  min-width: 0;
}

.start-aside {
  min-width: 0;
}

@media (min-width: 981px) {
  .start-aside {
    position: sticky;
    top: 110px;
  }
}

@media (max-width: 980px) {
  .start-layout {
    grid-template-columns: 1fr;
  }

  .start-aside {
    position: static;
  }