﻿


@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-origin: 70% 70%;
  animation: logoWave 3.2s ease-in-out infinite;
}
@keyframes logoWave {
  0%, 80%, 100% { transform: rotate(0deg); }
  83% { transform: rotate(16deg); }
  86% { transform: rotate(-10deg); }
  89% { transform: rotate(6deg); }
  92% { transform: rotate(-3deg); }
  95% { transform: rotate(1deg); }
}


.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: 46px;
  min-width: 190px;

  display: none;
  padding: 6px;

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

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 16px 36px rgba(15,23,42,0.12);
}
.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;
}
.nav-menu a:hover { background: rgba(243, 244, 255, 0.75); }
.nav-menu a:active { background: rgba(224, 231, 255, 0.8); }


.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: 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); }

.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;
}

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

.modal-title{
  font-size:18px;
  font-weight:900;
  margin:0 0 8px 0;
  color:#0f172a;
}
.modal-text{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:#475569;
  font-weight:700;
  white-space: pre-line;
}

.modal-actions{
  display:flex;
  gap:10px;
  padding:14px 18px 18px 18px;
}
.modal-actions .btn{ flex:1; }

.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{
  position:absolute;
  top:14px;
  right:14px;
  width:32px;
  height:32px;
  border:none;
  border-radius:0;
  background:transparent;
  color:#64748b;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
  transition: color 0.15s ease, transform 0.12s ease;
}
.email-auth-close:hover{
  color:#0f172a;
}
.email-auth-close:active{ transform:scale(0.96); }
.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.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display:flex; align-items:center; justify-content:center;
  padding:18px;
  z-index:9999;

  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.sipi-onb-card{
  width:min(720px, 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;

  max-height:calc(100dvh - 36px);
  max-height:calc(var(--vh, 1vh) * 100 - 36px);

  display:flex;
  flex-direction:column;
}

.sipi-onb-head{ padding:18px 18px 10px 18px; }
.sipi-onb-title{
  margin:0;
  font-size:20px;
  font-weight:900;
  color:#0f172a;
}
.sipi-onb-sub{
  margin:8px 0 0 0;
  color:#475569;
  font-size:14px;
  font-weight:700;
  line-height:1.45;
}

.sipi-onb-body{
  padding:0 18px 18px 18px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:calc(18px + env(safe-area-inset-bottom));
}

.sipi-onb-actions{
  display:flex;
  gap:10px;
  padding:14px 18px 18px 18px;
  border-top: 1px solid rgba(191,219,254,0.35);
  background: rgba(250,251,255,0.65);
  flex:0 0 auto;
}
.sipi-onb-actions .btn{ flex:1; }

@media (max-width:520px){
  .sipi-onb-actions{ flex-direction:column; }
  .sipi-onb-actions .btn{ width:100%; }
}


.platform-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
}
.platform-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:18px;
  text-decoration:none;
  color:inherit;
  min-width:0;

  background: rgba(243,244,255,0.75);
  border:1px solid rgba(15,23,42,0.06);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.platform-card--ios{ align-items:flex-start; }
.platform-card--ios .platform-card__icon{ margin-top:1px; }

.platform-card__icon{
  flex:0 0 auto;
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  background:transparent;
  border:none;
  transform: translateY(-1px);
}
.platform-card__body{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  flex:1 1 auto;
}
.platform-card__title{
  font-weight:800;
  color:#0f172a;
}
.platform-card__desc{
  margin:0;
  color:#6b7280;
  font-weight:600;
  font-size:13px;
  line-height:1.3;
}
.platform-card__cta{
  flex:0 0 auto;
  font-weight:900;
  font-size:18px;
  padding-left:8px;
  color:#0f172a;
  opacity:0.9;
}


.store-split{
  display:flex;
  gap:8px;
  margin-top:10px;
  flex-wrap:wrap;
}
.store-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  text-decoration:none;

  font-weight:900;
  font-size:13px;
  line-height:1;

  color:#0f172a;
  background: rgba(239,246,255,0.85);
  border:1px solid rgba(191,219,254,0.85);
}
.store-pill:hover{ transform: translateY(-1px); }
@media (max-width:520px){
  .store-pill{ width:100%; }
}


.onb-note{
  margin-top:12px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(239,246,255,0.85);
  border: 1px solid rgba(191,219,254,0.85);
  display:flex;
  gap:10px;
}
.onb-note__icon{ font-size:18px; }
.onb-note__text{
  font-size:13px;
  font-weight:700;
  color:#6b7280;
  line-height:1.4;
}
.onb-muted-link{ color:#1d4ed8; font-weight:900; 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:13px;
  font-weight:900;
  color:#6b7280;
  line-height:1.35;
  display:inline;
  white-space:pre-line;
}
.sipi-coach-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.sipi-coach-actions .btn{ flex:1; }


.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(243,244,255,0.66));
  border: 1px solid rgba(191,219,254,0.62);
  border-radius: var(--radius-xl);
  padding: 26px 18px;

  text-align: center;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.75);
}

.hero-hand{
  font-size: 42px;
  line-height: 1;
  margin-top: 2px;
}

.hero-brand{
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 8px;
  opacity: 0.98;
}

.hero-title{
  margin: 14px 0 8px 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  color: #0f172a;
}

.hero-sub{
  margin: 0 0 14px 0;
  color: #475569;
  font-weight: 800;
}

.hero-list{
  list-style: none;
  padding: 0;
  margin: 14px auto 16px auto;
  display: grid;
  gap: 8px;
  max-width: 420px;
  text-align: left;
}

.hero-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  color: #111827;
}

.hero-list .emoji{
  width: 22px;
  flex: 0 0 22px;
  justify-content: center;
  transform: translateY(1px);
}

.hero-cta{
  width: min(320px, 100%);
  margin-top: 6px;
}
.hero-auth-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-top:6px;
}
.hero-auth-actions .hero-cta{
  margin-top:0;
}
.hero-email-cta{
  width:min(320px, 100%);
}

.tariff-note{
  margin-top: 10px;
  font-weight: 900;
  color: #0f172a;
  opacity: 0.85;
}

.site-footer{
  margin: 24px 0 32px;
  text-align: center;
  font-size: 13px;
  opacity: .85;
}
.site-footer p{ margin: 0 16px; }


.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;
}



: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,
.onb-note__text { font-weight: var(--fw-regular); }  


.hero-title { font-weight: var(--fw-bold); font-size: var(--fs-34); }
.hero-sub   { font-weight: var(--fw-regular); font-size: var(--fs-14); color:#475569; }
.hero-list li { font-weight: var(--fw-medium); }
.tariff-note { font-weight: var(--fw-medium); font-size: var(--fs-13); opacity: 0.82; }
