/* ============================================================
   SIGNON — Design system
   Palette dérivée du logo : bleu de marque, navy, teal-violet
   Typo : Plus Jakarta Sans (géométrique & chaleureuse)
   ============================================================ */

:root {
  /* Couleurs */
  --ink: #0B2942;          /* texte principal (navy) */
  --ink-2: #51637A;        /* texte secondaire */
  --ink-3: #5A6A80;        /* texte tertiaire / légendes (AA sur blanc) */
  --bg: #FFFFFF;
  --bg-soft: #F4F8FC;      /* sections off-white */
  --bg-tint: #EAF3FC;      /* aplats très doux */
  --accent: #006CCD;       /* bleu de marque (CTA, focus) */
  --accent-deep: #064E96;  /* liens / texte accent sur blanc (AA+) */
  --teal: #0E9C9C;
  --violet: #5B6FE0;
  --grad: linear-gradient(118deg, #0E9C9C 0%, #006CCD 52%, #5B6FE0 100%);
  --grad-soft: linear-gradient(135deg, #D6F0F7 0%, #E4EEFF 55%, #ECE9FF 100%);
  --line: #E1EAF3;
  --line-strong: #CBD8E6;

  /* Forme */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Ombres douces */
  --shadow-xs: 0 1px 2px rgba(11,41,66,.05);
  --shadow-sm: 0 2px 8px rgba(11,41,66,.06), 0 1px 2px rgba(11,41,66,.04);
  --shadow-md: 0 12px 34px rgba(11,41,66,.09), 0 3px 8px rgba(11,41,66,.05);
  --shadow-lg: 0 28px 70px rgba(11,41,66,.14), 0 8px 18px rgba(11,41,66,.06);
  --shadow-accent: 0 14px 34px rgba(0,108,205,.30);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Typo */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Intensité d'animation (piloté par Tweaks : 0 = off, 1 = full) */
  --anim: 1;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--accent-deep); text-decoration: none; }

img, svg { display: block; max-width: 100%; }

/* Accessibilité : focus visible net partout */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------- */
/* Conteneurs & utilitaires                                    */
/* ----------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------------------------------------------- */
/* Boutons                                                     */
/* ----------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,108,205,.34);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-xs);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-sm { padding: 11px 18px; font-size: 15px; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ----------------------------------------------------------- */
/* HEADER                                                      */
/* ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(11,41,66,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand svg, .brand img { height: 38px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.main-nav a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 15.5px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); }
.main-nav a { position: relative; }
.main-nav a.active { color: var(--accent-deep); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

/* Menu mobile */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--bg-soft); }
.mobile-nav .btn { margin-top: 10px; }

@media (max-width: 1024px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ----------------------------------------------------------- */
/* Sections génériques                                         */
/* ----------------------------------------------------------- */
section { position: relative; }

/* Les ancres ne doivent jamais passer sous le header sticky (76px) */
section[id] { scroll-margin-top: 92px; }
@media (max-width: 1024px) { section[id] { scroll-margin-top: 80px; } }

.section-pad { padding-block: clamp(72px, 10vw, 132px); }

.section-head { max-width: 720px; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 16px;
}
.section-head .lead {
  margin-top: 18px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--ink-2);
}

/* ----------------------------------------------------------- */
/* HERO                                                        */
/* ----------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.hero-blob.b1 {
  width: 540px; height: 540px;
  top: -180px; right: -120px;
  background: radial-gradient(circle at 30% 30%, #9fd3ff, transparent 70%);
}
.hero-blob.b2 {
  width: 460px; height: 460px;
  bottom: -200px; left: -140px;
  background: radial-gradient(circle at 50% 50%, #c9e9e6, transparent 70%);
  opacity: .5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 8px 8px 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-badge .tag {
  background: var(--bg-tint);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(40px, 6.6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.hero h1 .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.28em;
  margin-bottom: -0.28em;
}
/* le span porte le dégradé (background-clip:text) : on étend sa boîte sous la
   ligne de base pour que le dégradé couvre les jambages (g, y…) ; la marge
   négative neutralise l'impact sur la mise en page */
.hero h1 .w > span {
  display: inline-block;
  will-change: transform;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}
/* une fois l'intro terminée, on libère le masque pour ne jamais rogner les jambages */
.hero h1.reveal-done .w { overflow: visible; }

.hero .subtitle {
  margin-top: 26px;
  max-width: 30ch;
  font-size: clamp(17px, 2.3vw, 21px);
  line-height: 1.6;
  color: var(--ink-2);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-3);
  font-size: 14.5px;
  font-weight: 500;
}
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }

/* --- Visuel produit du hero : illustrations d'usage réelles --- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-stage {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1.04;
}

/* Carte principale : visioconférence accessible */
.hm-main {
  position: absolute;
  top: 0; left: 0;
  width: 76%;
  margin: 0;
  background: #0B2942;
  border-radius: var(--radius-lg);
  padding: 9px 9px 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hm-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3px 5px 9px;
}
.hm-dots { display: flex; gap: 5px; }
.hm-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); }
.hm-dots i:first-child { background: #ff5f57; }
.hm-dots i:nth-child(2) { background: #febc2e; }
.hm-dots i:nth-child(3) { background: #28c840; }
.hm-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .03em; color: #fff;
  background: rgba(255,255,255,.13); padding: 4px 11px; border-radius: var(--radius-pill);
}
.hm-live .led {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7CFFB2; box-shadow: 0 0 0 3px rgba(124,255,178,.3);
}
.hm-main img {
  display: block; width: 100%; height: auto;
  border-radius: calc(var(--radius-lg) - 5px);
}

/* Vignette : station d'accueil */
.hm-thumb {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hm-thumb img { display: block; width: 100%; height: auto; }

/* étiquettes flottantes autour du visuel */
.float-tag {
  position: absolute;
  z-index: 4;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  will-change: transform;
}
.float-tag .ic {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; color:#fff;
  background: var(--grad);
}
.float-tag .ic svg { width: 17px; height: 17px; }
.float-tag small { display:block; font-size: 11px; font-weight: 600; color: var(--ink-3); }
.float-tag.t-app { top: 30px; left: -20px; }
.float-tag.t-borne { bottom: 26px; right: -18px; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero .subtitle { max-width: 46ch; }
  .hero-visual { margin-top: 30px; width: 100%; }
  .visual-stage { width: min(480px, 100%); }
}
@media (max-width: 760px) {
  .float-tag.t-app { left: 0; }
  .float-tag.t-borne { right: 0; }
}
@media (max-width: 420px) {
  .float-tag { font-size: 12px; padding: 9px 11px; }
  .float-tag .ic { width: 26px; height: 26px; }
  .float-tag small { font-size: 10px; }
  .float-tag.t-app { top: 14px; left: 0; }
}

/* ----------------------------------------------------------- */
/* SECTION PRODUIT                                             */
/* ----------------------------------------------------------- */
.product { background: var(--bg-soft); }
.product .section-head { margin-inline: auto; text-align: center; }
.product .eyebrow { justify-content: center; }

.product-core {
  margin-top: clamp(40px, 5vw, 60px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.product-core .pc-copy { padding: clamp(28px, 4vw, 52px); }
.product-core .pc-copy h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 14px;
}
.product-core .pc-copy p {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 17px;
}
.flow-pills {
  margin-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.flow-pills .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-tint);
  color: var(--accent-deep);
  font-weight: 700; font-size: 14px;
  padding: 9px 15px; border-radius: var(--radius-pill);
}
.flow-pills .arrow { color: var(--ink-3); }
.flow-pills .arrow svg { width: 18px; height: 18px; }

.pc-visual {
  position: relative;
  background:
    radial-gradient(130% 100% at 80% 10%, #e2effc 0%, #f4f8fc 70%);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  overflow: hidden;
}
.latency-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
  width: 100%;
  max-width: 320px;
}
.latency-card .lc-top { display:flex; align-items:center; justify-content:space-between; gap: 10px; }
.latency-card .lc-label { font-size: 14px; font-weight: 800; color: var(--ink); }
.latency-card .lc-live {
  display:inline-flex; align-items:center; gap:7px;
  font-size: 12px; font-weight: 800; color: var(--accent-deep);
  background: var(--bg-tint); padding: 5px 11px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.latency-card .lc-live .led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 3px rgba(14,156,156,.22);
}
.latency-card .lc-flow {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.latency-card .lc-mode {
  flex: 1; text-align: center;
  font-size: 13px; font-weight: 800; color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 4px;
}
.latency-card .lc-flow > svg { width: 16px; height: 16px; color: var(--ink-3); flex-shrink: 0; }
.latency-card .lc-rows { margin-top: 18px; display:flex; flex-direction:column; gap: 10px; }
.latency-card .lc-row { display:flex; align-items:center; gap: 10px; font-size: 13px; font-weight:600; color: var(--ink); }
.latency-card .lc-row .ck {
  width: 20px; height:20px; border-radius:50%;
  background: var(--bg-tint); color: var(--accent); display:grid; place-items:center; flex-shrink:0;
}
.latency-card .lc-row .ck svg { width: 12px; height:12px; }

/* deux modes de déploiement */
.modes-grid {
  margin-top: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 26px);
}
.mode-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.mode-card::after {
  content:"";
  position:absolute; inset:0 0 auto 0; height: 4px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s ease;
}
.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.mode-card:hover::after { opacity: 1; }

.mode-card .badge {
  display:inline-flex; align-items:center; gap: 7px;
  white-space: nowrap;
  font-size: 12px; font-weight: 800; letter-spacing:.04em; text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--bg-tint);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.mode-card .mc-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--grad); color:#fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-accent);
}
.mode-card .mc-icon svg { width: 28px; height: 28px; }
.mode-card h3 { font-size: clamp(22px, 2.6vw, 28px); margin-top: 16px; }
.mode-card > p { margin-top: 12px; color: var(--ink-2); font-size: 16.5px; }
.mode-feats { list-style: none; padding: 0; margin: 22px 0 0; display:flex; flex-direction:column; gap: 12px; }
.mode-feats li { display:flex; align-items:flex-start; gap: 11px; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.mode-feats .ck {
  margin-top: 1px; flex-shrink:0;
  width: 22px; height:22px; border-radius:50%;
  background: var(--bg-tint); color: var(--accent);
  display:grid; place-items:center;
}
.mode-feats .ck svg { width:13px; height:13px; }
.mode-card .mc-foot {
  margin-top: 26px;
  display:flex; align-items:center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--accent-deep);
}
.mode-card .mc-foot svg { width: 18px; height:18px; transition: transform .2s ease; }
.mode-card:hover .mc-foot svg { transform: translateX(4px); }

@media (max-width: 820px) {
  .product-core { grid-template-columns: 1fr; }
  .pc-visual { border-left: 0; border-top: 1px solid var(--line); }
  .modes-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------- */
/* FOOTER minimal (placeholder pour cette itération)           */
/* ----------------------------------------------------------- */
.foot-strip {
  border-top: 1px solid var(--line);
  padding-block: 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 14px;
}
.foot-strip .brand svg { height: 30px; }
.foot-note { display:flex; align-items:center; gap: 8px; }

/* ----------------------------------------------------------- */
/* Animations : états initiaux gérés par JS via classe .reveal */
/* ----------------------------------------------------------- */
.reveal { will-change: transform, opacity; }

/* ----------------------------------------------------------- */
/* Tweaks panel (vanilla)                                      */
/* ----------------------------------------------------------- */
#tw-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 9999;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-family: var(--font);
  display: none;
  overflow: hidden;
}
#tw-panel.show { display: block; }
.tw-head {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  cursor: grab;
}
.tw-head h4 { font-size: 15px; font-weight: 800; }
.tw-close {
  border:0; background: var(--bg-soft); cursor:pointer;
  width: 28px; height:28px; border-radius: 8px; display:grid; place-items:center;
  color: var(--ink-2);
}
.tw-close:hover { background: var(--line); color: var(--ink); }
.tw-body { padding: 16px; display:flex; flex-direction:column; gap: 18px; }
.tw-field > label { display:block; font-size: 12px; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing:.05em; }
.tw-seg { display:flex; gap: 6px; background: var(--bg-soft); padding: 4px; border-radius: var(--radius-md); }
.tw-seg button {
  flex:1; border:0; background:transparent; cursor:pointer;
  font-family:inherit; font-size: 13px; font-weight: 700; color: var(--ink-2);
  padding: 8px 6px; border-radius: 9px; transition: all .15s ease;
}
.tw-seg button.active { background:#fff; color: var(--accent-deep); box-shadow: var(--shadow-xs); }
.tw-select {
  width:100%; font-family:inherit; font-size: 14px; font-weight:600; color: var(--ink);
  padding: 11px 12px; border:1.5px solid var(--line-strong); border-radius: var(--radius-md);
  background:#fff; cursor:pointer;
}
