/* ===========================================================
   Frank — Ireland's commission-free taxi platform
   Static marketing site recreated from the design handoff.
   =========================================================== */

:root {
  --cream: #FBF6ED;
  --ink: #181512;
  --amber: #E89611;
  --amber-deep: #B8740A;
  --navy: #1B2A4A;
  --navy-card: #111E38;
  --navy-text: #EDEFF6;

  --font-display: 'Schibsted Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --maxw: 1180px;
  --pad-x: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
::selection { background: var(--amber); color: var(--ink); }

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

@keyframes frankrise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes meterblink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
@keyframes fkvblink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.rise { animation: frankrise 0.6s ease both; }
.rise--delayed { animation-duration: 0.7s; animation-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}

/* ---------- Shared blocks ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 520px;
}
.section-title--wide { font-size: 44px; line-height: 1.0; max-width: 640px; margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--cream); font-size: 15px; font-weight: 600; }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid rgba(24,21,18,0.25); }
.btn--lg { font-size: 16px; padding: 15px 26px; }
.btn--block { display: block; text-align: center; padding: 16px; margin-top: 28px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,246,237,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(24,21,18,0.08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  position: relative;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(232,150,17,0.35), inset 0 1.5px 0 rgba(255,255,255,0.45);
}
.brand__fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 11px solid var(--ink);
  border-left: 11px solid transparent;
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  opacity: 0.8;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__ghost {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 84px var(--pad-x) 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,150,17,0.16);
  border: 1px solid rgba(232,150,17,0.4);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--amber);
  animation: meterblink 1.6s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.hero__lede {
  font-size: 19px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 0 32px;
  opacity: 0.78;
}
.hero__lede strong { opacity: 1; color: var(--ink); }
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stats {
  display: flex;
  gap: 26px;
  margin-top: 34px;
}
.stat__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
}
.stat__label { font-size: 13px; opacity: 0.6; }
.stat__rule { width: 1px; background: rgba(24,21,18,0.12); }

/* ---------- Receipt visual ---------- */
.hero__visual { align-self: center; }
.receipt {
  background: var(--ink);
  color: var(--cream);
  border-radius: 22px;
  padding: 30px 30px 26px;
  box-shadow: 0 30px 60px -24px rgba(24,21,18,0.5);
  max-width: 380px;
  margin: 0 auto;
}
.receipt .muted { opacity: 0.7; }
.receipt__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.receipt__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.receipt__live { font-family: var(--font-mono); font-size: 12px; color: var(--amber); }
.receipt__rows {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2.1;
}
.receipt__rows--top { border-bottom: 1px dashed rgba(251,246,237,0.25); padding-bottom: 14px; }
.receipt__rows--mid { padding: 14px 0; border-bottom: 1px dashed rgba(251,246,237,0.25); }
.receipt__row { display: flex; justify-content: space-between; }
.receipt__row--strike { opacity: 0.55; }
.receipt__row--amber { color: var(--amber); }
.strike { text-decoration: line-through; }
.receipt__total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 18px;
}
.receipt__total .muted { font-size: 14px; }
.receipt__amount {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 34px;
  color: var(--amber);
}
.receipt__foot {
  text-align: center;
  font-size: 13px;
  opacity: 0.55;
  margin: 16px 0 0;
}

/* ---------- Vista band ---------- */
.vista-band {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px var(--pad-x) 20px;
}
.vista-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.vista-frame--tall { height: 440px; box-shadow: 0 30px 60px -30px rgba(24,21,18,0.4); }
.vista-frame--mid { height: 320px; margin-bottom: 44px; box-shadow: 0 20px 40px -24px rgba(24,21,18,0.35); }
.vista { position: absolute; inset: 0; }
.vista-frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 48px;
  background: linear-gradient(180deg, transparent, rgba(16,12,26,0.6));
}
.vista-frame--mid .vista-frame__caption {
  padding: 32px 36px;
  background: linear-gradient(180deg, transparent, rgba(16,12,26,0.55));
}
.vista-frame__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--cream);
  max-width: 560px;
}
.vista-frame__title--sm { font-size: 28px; line-height: 1.0; letter-spacing: -0.02em; margin: 0; }
.vista-frame__text {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(251,246,237,0.85);
  margin: 0;
  max-width: 480px;
}

/* ---------- Trust band ---------- */
.trust { background: var(--ink); color: var(--cream); overflow: hidden; }
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.trust__sep { color: var(--amber); }

/* ---------- How it works ---------- */
.how {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px var(--pad-x) 70px;
}
.how__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.toggle {
  display: inline-flex;
  background: rgba(24,21,18,0.06);
  border-radius: 999px;
  padding: 4px;
}
.toggle--dark { background: rgba(251,246,237,0.1); margin-bottom: 16px; }
.toggle__btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  opacity: 0.6;
  transition: all 0.15s;
}
.toggle__btn.is-active { background: var(--ink); color: var(--cream); opacity: 1; }
.toggle--dark .toggle__btn { font-size: 14px; padding: 9px 16px; color: var(--cream); }
.toggle--dark .toggle__btn.is-active { background: var(--amber); color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: #fff;
  border: 1px solid rgba(24,21,18,0.08);
  border-radius: 18px;
  padding: 30px 26px;
}
.step__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--amber);
  margin-bottom: 60px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.step__body { font-size: 15.5px; line-height: 1.5; opacity: 0.72; margin: 0; }

/* ---------- The honest math ---------- */
.math { background: var(--navy); color: var(--navy-text); }
.math__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px var(--pad-x);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.math__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.math__lede { font-size: 17px; line-height: 1.55; opacity: 0.8; margin: 0 0 28px; max-width: 440px; }
.slider { margin-bottom: 24px; }
.slider:last-child { margin-bottom: 0; }
.slider__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.slider__head label { font-size: 15px; font-weight: 600; opacity: 0.85; }
.slider__val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--amber);
}
.slider input[type="range"] { width: 100%; accent-color: var(--amber); height: 6px; }

.calc {
  background: var(--navy-card);
  border: 1px solid rgba(237,239,246,0.12);
  border-radius: 22px;
  padding: 34px;
}
.calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.calc__cell {
  background: rgba(237,239,246,0.05);
  border-radius: 16px;
  padding: 20px;
}
.calc__cell--frank { background: rgba(232,150,17,0.12); border: 1px solid rgba(232,150,17,0.3); }
.calc__cell-label { font-size: 13px; opacity: 0.6; margin-bottom: 8px; }
.calc__cell--frank .calc__cell-label { opacity: 0.7; }
.calc__cell-num { font-family: var(--font-mono); font-weight: 700; font-size: 30px; }
.calc__cell-num--bad { color: #E8A0A0; }
.calc__cell-num--amber { color: var(--amber); }
.calc__cell-sub { font-size: 12px; opacity: 0.5; margin-top: 6px; }
.calc__cell--frank .calc__cell-sub { opacity: 0.6; }
.calc__result {
  border-top: 1px dashed rgba(237,239,246,0.2);
  padding-top: 24px;
  text-align: center;
}
.calc__result-label { font-size: 14px; opacity: 0.7; margin-bottom: 6px; }
.calc__result-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 54px;
  line-height: 1;
  color: var(--amber);
}
.calc__result-sub { font-size: 15px; opacity: 0.7; margin-top: 8px; }
.calc__result-sub strong { color: var(--navy-text); }
.calc__result .btn { margin-top: 22px; font-size: 15px; padding: 13px 26px; }

/* ---------- For drivers ---------- */
.drivers {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px var(--pad-x) 70px;
}
.drivers__lede { font-size: 17px; line-height: 1.5; opacity: 0.74; max-width: 560px; margin: 0 0 30px; }
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.benefit {
  border: 1px solid rgba(24,21,18,0.1);
  border-radius: 16px;
  padding: 26px;
  background: #fff;
}
.benefit__tag {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(232,150,17,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--amber-deep);
}
.benefit__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.benefit__body { font-size: 15px; line-height: 1.5; opacity: 0.72; margin: 0; }

/* ---------- Plan ---------- */
.plan-wrap { max-width: 540px; margin: 0 auto; }
.plan {
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 38px;
  background: #fff;
  position: relative;
}
.plan__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,150,17,0.16);
  border: 1px solid rgba(232,150,17,0.4);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.plan__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 28px; margin: 0; }
.plan__amount { font-family: var(--font-mono); font-weight: 700; font-size: 44px; }
.plan__per { font-size: 15px; opacity: 0.6; }
.plan__body { font-size: 15px; line-height: 1.5; opacity: 0.72; margin: 0 0 24px; }
.plan__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 24px;
  border-top: 1px solid rgba(24,21,18,0.1);
}
.feature { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.feature span:last-child { opacity: 0.85; }
.feature__check { color: var(--amber); font-weight: 700; }
.drivers__note { text-align: center; font-size: 14px; opacity: 0.6; margin: 22px 0 0; }

/* ---------- About ---------- */
.about {
  background: #fff;
  border-top: 1px solid rgba(24,21,18,0.08);
  border-bottom: 1px solid rgba(24,21,18,0.08);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px var(--pad-x);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.about__body { font-size: 18px; line-height: 1.6; opacity: 0.82; }
.about__body p { margin: 0 0 18px; }
.about__body p:last-child { margin: 0; }

/* ---------- Waitlist ---------- */
.waitlist {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px var(--pad-x);
}
.waitlist__card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 26px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.waitlist__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.waitlist__lede { font-size: 17px; line-height: 1.5; opacity: 0.78; margin: 0; }
.waitlist__form { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist__form input {
  flex: 1;
  min-width: 200px;
  background: rgba(251,246,237,0.08);
  border: 1px solid rgba(251,246,237,0.2);
  border-radius: 999px;
  padding: 15px 20px;
  color: var(--cream);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
}
.waitlist__form input::placeholder { color: rgba(251,246,237,0.5); }
.waitlist__form .btn { font-size: 15px; padding: 15px 24px; }
.waitlist__done {
  background: rgba(232,150,17,0.15);
  border: 1px solid rgba(232,150,17,0.4);
  border-radius: 14px;
  padding: 22px;
  font-size: 16px;
}
.waitlist__fine { font-size: 13px; opacity: 0.5; margin: 14px 0 0; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 88px;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-align: center;
}
.faq__item { border-bottom: 1px solid rgba(24,21,18,0.12); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}
.faq__q-text { font-size: 18px; font-weight: 600; color: var(--ink); }
.faq__sign {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--amber);
  flex: none;
}
.faq__a {
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.74;
  margin: 0 0 24px;
  max-width: 620px;
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--pad-x) 40px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__brand { max-width: 300px; }
.brand--footer { margin-bottom: 14px; }
.brand--footer .brand__word { color: var(--cream); }
.footer__tagline { font-size: 14px; line-height: 1.5; opacity: 0.6; margin: 0; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.footer__col a { text-decoration: none; color: var(--cream); opacity: 0.8; font-size: 15px; }
.footer__col a:hover { opacity: 1; }
.footer__bottom {
  border-top: 1px solid rgba(251,246,237,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.5;
}
.footer__stamp { font-family: var(--font-mono); }

/* ===========================================================
   Vista scenes (CSS art) — built by script.js into .vista
   =========================================================== */
.vscene {
  position: absolute;
  inset: 0;
  min-height: 200px;
  overflow: hidden;
  background: #16244A;
  font-family: var(--font-mono);
}
.vscene__layer { position: absolute; }
.vscene__sun {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.vscene__rays {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask: radial-gradient(circle, #000 4%, transparent 52%);
  mask: radial-gradient(circle, #000 4%, transparent 52%);
}
.vscene__overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 28%, transparent 42%, rgba(16,12,26,0.30) 100%);
  pointer-events: none;
}
.vscene__overlay-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
  }
  .hero__title { font-size: 48px; }
  .math__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__inner { grid-template-columns: 1fr; gap: 28px; }
  .waitlist__card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .nav__links { display: none; }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .step__num { margin-bottom: 24px; }
  .vista-frame--tall { height: 360px; }
  .vista-frame__caption { padding: 32px 28px; }
  .vista-frame__title { font-size: 30px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }
  .hero__title { font-size: 38px; }
  .section-title, .section-title--wide, .math__title, .waitlist__title, .about__title { font-size: 32px; }
  .stats { gap: 16px; flex-wrap: wrap; }
  .stat__rule { display: none; }
  .calc, .plan, .waitlist__card { padding: 26px; }
  .calc__result-num { font-size: 44px; }
  .nav__ghost { display: none; }
  .trust__inner { gap: 16px; font-size: 12px; }
}
