:root { --ink:#0a0f1c; --brand:#2563eb; }
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;color:#0b1220;background:#ffffff;line-height:1.6}
a{color:var(--brand);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.site-header{position:sticky;top:0;background:#ffffffcc;backdrop-filter:saturate(160%) blur(8px);border-bottom:1px solid #e5e7eb;z-index:50}
.hdr{display:flex;align-items:center;justify-content:space-between;height:72px}
#logo img{height:42px;vertical-align:middle}
#logo .tagline{display:block;font-size:.8rem;letter-spacing:.12em;text-transform:lowercase;color:#6b7280;margin-top:2px}
/* The logo link remains a single link (as your layout expects). We turn
   its *contents* into two rows: top row = brand-row, below = subline. */
.site-header #logo > a {
  display: inline-flex;
  flex-direction: column;      /* subline stays underneath */
  align-items: flex-start;
  text-decoration: none;
}

/* Force logo link to render in black */
.site-header #logo a {
  color: #000;
  text-decoration: none;
}

.site-header #logo a:hover,
.site-header #logo a:focus {
  color: #000; /* stay black on hover/focus */
  text-decoration: none;
}

/* Top row: existing logo (img or text) + INNERSTRONG */
.site-header #logo .brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
  /* Scales responsively with viewport while respecting your header rhythm */
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 700;
}

/* If you use an image logo, let it drive the scale of the row */
.site-header #logo .brand-row img {
  height: 1.6em;      /* image height tracks the row’s font-size */
  width: auto;
  display: block;
}

/* If you use text as your logo mark */
.site-header #logo .logo-mark {
  font-size: 1.2em;   /* slightly larger than the ‘INNERSTRONG’ word */
  font-weight: 800;
  line-height: 1;
}

/* The added brand word */
.site-header #logo .brand-word {
  font-size: 1.6em;     /* matches image height */
   font-weight: 700;
  /* letter-spacing: 0.04em; */
  white-space: nowrap;
  line-height: 1;
}

/* Subline stays as its own line under the brand-row */
.site-header #logo .brand-subline,
.site-header #logo :is(.tagline, .subline) { /* also style common class names if you already use one */
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65em;  /* smaller than top row, scales with it */
  line-height: 1.2;
  opacity: 0.85;
}

/* Small screens: keep proportions tidy */
@media (max-width: 640px) {
  .site-header #logo .brand-row { font-size: clamp(1rem, 5vw, 1.25rem); }
  .site-header #logo .brand-subline,
  .site-header #logo :is(.tagline, .subline) { font-size: 0.7em; }
}
nav a{margin-left:22px;color:#0b1220}
.hero{padding:96px 0 56px;background:linear-gradient(180deg,#f8fafc, #ffffff 60%)}
.hero h1{font-size:clamp(2rem,5vw,3rem);line-height:1.1;margin:0 0 16px}
.subline{font-weight:500;letter-spacing:.16em;text-transform:lowercase;color:#6b7280;margin:0 0 18px}
.microline{margin-top:8px;color:#475569}
.cta-row{margin-top:22px;display:flex;gap:12px;flex-wrap:wrap}
.btn{display:inline-block;padding:12px 18px;border-radius:999px;border:1px solid #0b1220;color:#0b1220}
.btn.primary{background:var(--ink);border-color:var(--ink);color:#fff}
.section{padding:64px 0}
.section.alt{background:#f8fafc}
h2{font-size:clamp(1.5rem,3.2vw,2rem);line-height:1.2;margin:0 0 10px}
.lede{font-size:1.1rem;color:#334155;max-width:820px}
.grid{display:grid;gap:22px}
@media(min-width:720px){.cols-3{grid-template-columns:repeat(3,1fr)}}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:22px}
.icon{font-size:28px}
.price{font-size:2rem;font-weight:700}
.micro{font-size:.85rem;color:#64748b}
blockquote{font-size:1.1rem;border-left:4px solid #e5e7eb;padding-left:16px;color:#111827;margin:0}
.site-footer{padding:40px 0;border-top:1px solid #e5e7eb;background:#fff}
.socials a{margin-right:12px;font-size:1.4rem}
