﻿


@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/Montserrat-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


*,
*::before,
*::after { box-sizing: border-box; }

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


html { font-synthesis: none; }

button, input, select, textarea { font-family: inherit; }


:root{
  --bg: #f4f6ff;

  --glass-bg: rgba(255,255,255,0.72);
  --glass-bg-strong: rgba(255,255,255,0.80);
  --glass-border: rgba(191,219,254,0.62);

  --text: #111827;
  --muted: #6b7280;

  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 22px 60px rgba(15, 23, 42, 0.14);

  --btn-shadow: 0 12px 28px rgba(37,99,235,0.18);
  --btn-shadow-hover: 0 14px 32px rgba(37,99,235,0.20);
  --btn-shadow-active: 0 10px 24px rgba(37,99,235,0.16);

  --btn-shadow-secondary: 0 10px 24px rgba(15,23,42,0.06);
  --btn-shadow-secondary-hover: 0 12px 26px rgba(15,23,42,0.07);

  --blue: #2563eb;
  --blue-2: #1d4ed8;

  --radius-xl: 24px;
  --radius-pill: 999px;

  --blur: 12px;

  
  --vh: 1vh;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;            
  line-height: 1.5;            
  letter-spacing: 0.1px;       
  background: var(--bg);
  color: var(--text);
  background-image:
    radial-gradient(1000px 500px at 20% -10%, rgba(37,99,235,0.10), transparent 60%),
    radial-gradient(900px 450px at 110% 20%, rgba(99,102,241,0.10), transparent 55%),
    radial-gradient(1000px 600px at 40% 120%, rgba(59,130,246,0.08), transparent 55%);
  background-attachment: fixed;
}


.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 18px 18px 40px;
}
@media (min-width: 720px) {
  .container { padding-top: 28px; }
}
.container--wide{ max-width: 920px; }


.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;

  background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(243,244,255,0.68));
  border-bottom: 1px solid rgba(191,219,254,0.55);

  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
}


.emoji{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(-1px);
}


.logo-hand {
  font-size: 26px;
  transform: translateY(-1px);
}


.topbar-nav { position: relative; }

.nav-menu-btn {
  border: 1px solid rgba(59,130,246,0.18);
  cursor: pointer;
  font: inherit;

  padding: 8px 12px;
  border-radius: var(--radius-pill);

  background: linear-gradient(180deg, rgba(239,246,255,1), rgba(229,237,255,1));
  box-shadow:
    0 10px 26px rgba(37,99,235,0.10),
    inset 0 1px 0 rgba(255,255,255,0.90);

  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.nav-menu-btn:hover{
  background: linear-gradient(180deg, rgba(239,246,255,1), rgba(217,227,255,1));
  box-shadow:
    0 14px 34px rgba(37,99,235,0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
}
.nav-menu-btn:active { transform: scale(0.97); }

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;

  display: none;
  padding: 6px;

  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,255,0.94));
  border: 1px solid rgba(191,219,254,0.72);
  border-radius: 16px;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  box-shadow:
    0 18px 45px rgba(15,23,42,0.16),
    inset 0 1px 0 rgba(255,255,255,0.92);
  z-index: 80;
}
.nav-menu-open { display: block; }

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 2px;

  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.1s ease, color 0.1s ease;
}
.nav-menu a:hover { background: rgba(243, 244, 255, 0.75); }
.nav-menu a:active { background: rgba(224, 231, 255, 0.8); }
.nav-support-badge {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.14);
  vertical-align: middle;
}


.panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(243,244,255,0.62));
  border: 1px solid rgba(191,219,254,0.62);
  border-radius: var(--radius-xl);
  padding: 22px 18px;

  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  box-shadow:
    0 14px 36px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
}


.muted { color: var(--muted); font-size: 14px; font-weight: 700; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 13px 22px;
  border-radius: 20px;

  border: 1px solid rgba(59,130,246,0.25);
  cursor: pointer;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  background: #2563eb linear-gradient(180deg, rgba(37,99,235,0.96), rgba(29,78,216,0.96));
  color: #fff;

  box-shadow: var(--btn-shadow), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  box-shadow: var(--btn-shadow-hover), inset 0 1px 0 rgba(255,255,255,0.22);
  filter: saturate(1.02);
}
.btn:active {
  transform: scale(0.98);
  box-shadow: var(--btn-shadow-active), inset 0 1px 0 rgba(255,255,255,0.16);
}

.btn-secondary {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border: 1px solid rgba(191,219,254,0.70);

  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  box-shadow: var(--btn-shadow-secondary), inset 0 1px 0 rgba(255,255,255,0.85);
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.82);
  box-shadow: var(--btn-shadow-secondary-hover), inset 0 1px 0 rgba(255,255,255,0.90);
}
.btn-secondary:active { transform: scale(0.98); }

.auth-method-action{
  justify-content:flex-start;
}
.auth-method-action svg{
  width:21px;
  height:21px;
  flex:0 0 21px;
  fill:currentColor;
}
.auth-method-action span{
  flex:1;
  padding-right:21px;
  text-align:center;
}

.btn-small {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 16px;
}

.btn-danger {
  background: rgba(254,226,226,0.85);
  color: #b91c1c;
  border: 1px solid rgba(248,113,113,0.35);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}
.btn-danger:hover { background: rgba(254,202,202,0.9); }


.btn:disabled, button:disabled {
  background: #9ca3af !important;
  border-color: #9ca3af !important;
  color: #ffffff !important;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}


.modal-backdrop{
  position:fixed;
  inset:0;
  background: rgba(15,23,42,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display:none;
  align-items:center;
  justify-content:center;

  z-index:2000;
  padding:18px;
}
.modal-backdrop.open{ display:flex; }

.modal-card{
  width: min(520px, 100%);
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(243,244,255,0.72));
  border: 1px solid rgba(191,219,254,0.65);
  box-shadow: 0 26px 80px rgba(15,23,42,0.25);
  overflow:hidden;
  position:relative;
}

.modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  padding:0;
  border:0;
  background:transparent;
  color:#64748b;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:color 0.15s ease, transform 0.12s ease;
  z-index:3;
}
.modal-close svg{
  width:12px;
  height:12px;
  display:block;
  fill:currentColor;
}
.modal-close:hover{
  color:#0f172a;
}
.modal-close:active{ transform:scale(0.96); }

.modal-body{ padding:20px 56px 14px 18px; }

.modal-title{
  font-size:18px;
  font-weight:900;
  line-height:1.22;
  margin:0 0 8px 0;
  color:#0f172a;
}
.modal-text{
  margin:0;
  font-size:14px;
  line-height:1.4;
  color:#475569;
  font-weight:700;
  white-space: pre-line;
}
.modal-help-link{
  display:inline-block;
  margin-top:10px;
  color:#2563eb;
  font-size:13px;
  font-weight:600;
  line-height:1.4;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:2px;
}
.modal-help-link[hidden]{ display:none; }
.modal-help-link:hover{ text-decoration-thickness:2px; }
.modal-help-link:focus-visible{
  border-radius:3px;
  outline:3px solid rgba(37,99,235,0.22);
  outline-offset:2px;
}

.modal-actions{
  display:flex;
  gap:10px;
  padding:14px 18px 18px 18px;
}
.modal-actions .btn{
  flex:1;
  min-width:0;
  line-height:1.2;
  text-align:center;
  white-space:normal;
}

.modal-input{
  width:100%;
  margin-top:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,0.35);
  background: rgba(255,255,255,0.75);
  font:inherit;
  font-weight:800;
  outline:none;
}
.modal-input:focus{
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.14);
}

.email-auth-card{
  width:min(560px, 100%);
  position:relative;
}
.email-auth-body{
  position:relative;
  padding:22px 22px 16px 22px;
}
.email-auth-close{
  top:14px;
  right:14px;
}
.email-auth-kicker{
  font-size:12px;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#2563eb;
  margin-bottom:10px;
}
.email-auth-title{
  font-size:24px;
  margin-bottom:10px;
}
.email-auth-text{
  margin-bottom:8px;
}
.email-auth-input-row{
  display:flex;
  align-items:stretch;
  gap:10px;
}
.email-auth-input{
  flex:1 1 auto;
  min-width:0;
  font-size:16px;
  font-weight:700;
  margin-top:0;
}
.email-auth-input::placeholder{
  color:#94a3b8;
  font-weight:600;
}
.email-auth-inline-btn{
  flex:0 0 auto;
  white-space:nowrap;
  padding-left:18px;
  padding-right:18px;
}
.email-auth-actions{
  padding-top:0;
}
.email-auth-actions .btn{
  width:100%;
}
.email-auth-status{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(239,246,255,0.9);
  border:1px solid rgba(191,219,254,0.9);
  color:#1e3a8a;
  font-size:14px;
  line-height:1.45;
  white-space:pre-line;
}
.email-auth-status.error{
  background:rgba(254,242,242,0.92);
  border-color:rgba(252,165,165,0.9);
  color:#991b1b;
}
.email-auth-code-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:10px;
}
.email-auth-digit{
  width:100%;
  height:68px;
  border-radius:18px;
  border:1px solid rgba(191,219,254,0.85);
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239,246,255,0.92));
  box-shadow:0 12px 32px rgba(37,99,235,0.08);
  outline:none;
  text-align:center;
  font-size:32px;
  font-weight:800;
  color:#0f172a;
}
.email-auth-digit:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,0.14), 0 18px 40px rgba(37,99,235,0.14);
}
.email-auth-help{
  margin-top:12px;
  font-size:13px;
  color:#64748b;
  text-align:center;
}
.email-auth-link{
  display:block;
  width:100%;
  margin-top:8px;
  padding:8px 0 0;
  border:none;
  background:transparent;
  color:#2563eb;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}
.email-auth-link:disabled{
  background:transparent !important;
  border:none !important;
  color:#94a3b8 !important;
  opacity:1;
}
@media (max-width: 520px){
  .email-auth-body{ padding:18px 18px 14px 18px; }
  .email-auth-title{ font-size:22px; }
  .email-auth-close{
    top:10px;
    right:10px;
  }
  .email-auth-input-row{
    flex-direction:column;
  }
  .email-auth-inline-btn{
    width:100%;
  }
  .email-auth-code-grid{ gap:8px; }
  .email-auth-digit{
    height:58px;
    font-size:28px;
    border-radius:16px;
  }
}


.sipi-onb-overlay{
  position:fixed; inset:0;
  background:rgba(15,23,42,0.34);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  display:flex; align-items:center; justify-content:center;
  padding:18px;
  z-index:9999;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.sipi-onb-card{
  width:min(760px, 100%);
  border-radius:30px;
  position:relative;
  background:
    radial-gradient(circle at 8% 2%, rgba(59,130,246,0.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,246,255,0.9));
  border:1px solid rgba(191,219,254,0.72);
  box-shadow:
    0 28px 90px rgba(15,23,42,0.24),
    inset 0 1px 0 rgba(255,255,255,0.88);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  overflow:hidden;
  max-height:calc(100dvh - 36px);
  max-height:calc(var(--vh, 1vh) * 100 - 36px);
  display:flex;
  flex-direction:column;
}

.sipi-onb-title{
  margin:0;
  padding-right:44px;
  font-size:28px;
  font-weight:800;
  line-height:1.15;
  color:#0f172a;
}
.sipi-onb-sub{
  margin:10px 0 0;
  color:#475569;
  font-size:16px;
  font-weight:500;
  line-height:1.5;
}

.sipi-onb-body{
  padding:28px 28px 22px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.sipi-onb-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding:0 28px calc(28px + env(safe-area-inset-bottom));
  flex:0 0 auto;
}
.sipi-onb-actions .btn{
  min-width:220px;
  border-radius:999px;
}

@media (max-width:520px){
  .sipi-onb-card{ border-radius:24px; }
  .sipi-onb-body{ padding:24px 20px 18px; }
  .sipi-onb-title{ font-size:24px; }
  .sipi-onb-sub{ font-size:15px; }
  .sipi-onb-actions{
    flex-direction:column;
    padding:0 20px calc(20px + env(safe-area-inset-bottom));
  }
  .sipi-onb-actions .btn{
    width:100%;
    min-width:0;
  }
}

.platform-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:20px;
}
.platform-card{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:88px;
  padding:14px 16px;
  border-radius:20px;
  text-decoration:none;
  color:inherit;
  min-width:0;
  background:rgba(247,249,255,0.78);
  border:1px solid rgba(191,219,254,0.62);
  box-shadow:
    0 10px 28px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.platform-card:hover{
  transform:translateY(-2px);
  border-color:rgba(37,99,235,0.34);
  box-shadow:
    0 16px 36px rgba(37,99,235,0.11),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.platform-card__icon{
  flex:0 0 auto;
  width:46px;
  height:46px;
  border-radius:15px;
  font-size:24px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2563eb;
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(15,23,42,0.05);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.95);
}
.platform-card__icon svg{
  width:24px;
  height:24px;
  fill:currentColor;
}
.platform-card__icon--apple{
  font-family:-apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
.platform-card__body{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  flex:1 1 auto;
}
.platform-card__title{
  font-size:16px;
  font-weight:700;
  color:#0f172a;
}
.platform-card__desc{
  margin-top:3px;
  color:#6b7280;
  font-weight:500;
  font-size:14px;
  line-height:1.3;
}
.platform-card__cta{
  flex:0 0 auto;
  font-weight:500;
  font-size:28px;
  line-height:1;
  padding-left:8px;
  color:#2563eb;
}

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

.onb-note{
  margin-top:16px;
  text-align:center;
}
.onb-muted-link{
  color:#2563eb;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}
.onb-muted-link:hover{ text-decoration:underline; }

.sipi-coach-overlay{
  position:fixed; inset:0;
  background: rgba(15,23,42,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index:9998;
}
.sipi-highlight{
  position:fixed;
  border-radius:18px;
  box-shadow:
    0 0 0 4px rgba(37,99,235,0.18),
    0 14px 40px rgba(15,23,42,0.22);
  border: 1px solid rgba(191,219,254,0.65);
  pointer-events:none;
  z-index:10000;
}
.sipi-coach-bubble{
  position:fixed;
  z-index:10001;

  width:auto;
  max-width:min(420px, calc(100vw - 24px));

  border-radius:16px;
  padding:12px 14px;
  min-height:58px;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(191,219,254,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 18px 45px rgba(15,23,42,0.16);
}
.sipi-coach-text{
  margin:0;
  font-size:14px;
  font-weight:var(--fw-medium);
  color:#475569;
  line-height:1.45;
  white-space:pre-line;
}
.sipi-coach-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.sipi-coach-actions .btn{ flex:1; }


.site-footer{
  margin: 34px 0 32px;
  text-align: center;
  font-size: 11px;
  opacity: .62;
}
.site-footer p{ margin: 0 16px; }
.site-footer a{
  color: #64748b;
  text-decoration-color: rgba(100, 116, 139, 0.35);
}
.site-footer a:hover{
  color: #475569;
  text-decoration-color: rgba(71, 85, 105, 0.55);
}


.login-wrap{
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: flex-start;     
  justify-content: center;
  padding-top: 22px;           
}

.login-card{
  width: min(520px, 100%);
  text-align: left;
}

.login-card h2{
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.login-card form{
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.login-card .btn{
  width: 180px;
  margin: 0 auto;
}

.standalone-card{
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.standalone-head{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.standalone-title{
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.standalone-text{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.standalone-text strong{
  color: var(--text);
}

.standalone-actions{
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.standalone-actions .btn,
.standalone-actions .btn-secondary{
  min-width: 220px;
  text-align: center;
}



:root{
  --fw-regular: 500;
  --fw-medium: 600;
  --fw-semibold: 700;
  --fw-bold: 800;

  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-34: 34px;
}

h1,h2,h3,h4 { margin: 0 0 10px 0; color: #0f172a; }
h1 { font-size: var(--fs-22); font-weight: var(--fw-bold); line-height: 1.15; }
h2 { font-size: var(--fs-20); font-weight: var(--fw-semibold); line-height: 1.2; }
h3 { font-size: var(--fs-18); font-weight: var(--fw-semibold); line-height: 1.25; }

p { margin: 10px 0; font-size: var(--fs-15); }
a { color: #1d4ed8; }

b, strong { font-weight: var(--fw-semibold); } 

.muted {
  color: var(--muted);
  font-size: var(--fs-14);
  font-weight: var(--fw-regular);
  line-height: 1.55;
}


.logo {
  font-weight: var(--fw-bold);
  font-size: 20px;
  letter-spacing: 0.2px;
}

.nav-menu-btn { font-weight: var(--fw-medium); }
.nav-menu a { font-weight: var(--fw-medium); font-size: var(--fs-14); }


.btn {
  font-weight: var(--fw-semibold); 
  font-size: var(--fs-16);
}
.btn-small {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-14);
}


.modal-title,
.sipi-onb-title { font-weight: var(--fw-bold); }      
.modal-text,
.sipi-onb-sub { font-weight: var(--fw-regular); }    

.platform-card__title,
.card-title,
.kpi-text,
.badge,
.pill,
.faq summary { font-weight: var(--fw-semibold); }    

.platform-card__desc,
.card-sub,
.setup-sub { font-weight: var(--fw-regular); }
