/* Public home and authentication. Content stays visible without animation or JS. */
:root {
  color-scheme:dark;
  --bg:#091522;
  --surface:#101f30;
  --line:#263749;
  --text:#f5f7fa;
  --muted:#b0becf;
  --blue:#5496ff;
  --green:#a4e7d2;
  --ink:#152638;
  --radius:20px;
}

* {
  box-sizing:border-box;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

button,input,select {
  font:inherit;
}

button,a,input,select,summary {
  -webkit-tap-highlight-color:transparent;
}

button,a {
  touch-action:manipulation;
}

button {
  cursor:pointer;
}

a {
  color:inherit;
  text-decoration:none;
}

button:focus-visible,a:focus-visible,summary:focus-visible,select:focus-visible,input:focus-visible {
  outline:3px solid #508dff;
  outline-offset:4px;
}

button:disabled {
  opacity:.65;
  cursor:wait;
}

[hidden] {
  display:none!important;
}

h1,h2,h3,p {
  margin:0;
}

h1,h2,h3 {
  line-height:1.1;
  letter-spacing:-.04em;
}

img {
  max-width:100%;
}

.container {
  width:min(1240px,calc(100% - 96px));
  margin-inline:auto;
}

.site-header {
  border-bottom:1px solid var(--line);
}

.nav-inner {
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand {
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-size:30px;
  font-weight:750;
  letter-spacing:-1.5px;
  line-height:1;
}

.brand>span {
  display:inline;
}

.brand-dot {
  color:var(--blue);
}

.brand img {
  object-fit:contain;
}

.nav-links,.nav-actions {
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-links {
  font-size:14px;
  color:var(--muted);
}

.nav-links a:hover,.text-link:hover {
  color:#fff;
}

.nav-signin {
  font-weight:650;
  font-size:14px;
  white-space:nowrap;
}

.nav-signin span {
  margin-left:10px;
  color:var(--blue);
}

.locale-switch select {
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--surface);
  color:var(--text);
  padding:8px;
  font-size:13px;
}

.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:56px;
  padding-block:94px 100px;
}

.eyebrow {
  font-size:11px;
  font-weight:750;
  letter-spacing:.13em;
  color:var(--green);
  display:block;
  margin-bottom:26px;
}

.hero .eyebrow {
  display:flex;
  align-items:center;
  gap:9px;
}

.status-dot {
  height:6px;
  width:6px;
  background:var(--green);
  border-radius:50%;
}

.hero h1 {
  font-size:clamp(44px,4.2vw,62px);
  letter-spacing:-.055em;
  line-height:1.06;
}

.hero h1>span {
  color:var(--blue);
}

.hero-description {
  font-size:19px;
  line-height:1.6;
  max-width:480px;
  margin-top:28px;
  color:#e0e6ee;
}

.hero-detail {
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  max-width:470px;
  margin-top:16px;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:30px;
}

.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  border-radius:10px;
  padding:14px 22px;
  font-size:14px;
  font-weight:650;
  border:1px solid transparent;
  min-height:50px;
}

.button-primary {
  background:#3278ed;
  color:#fff;
  box-shadow:0 5px 20px #0002;
}

.button-primary:hover {
  background:#2466d4;
}

.button-text {
  padding-inline:8px;
  color:var(--text);
}

.button-text:hover {
  text-decoration:underline;
}

.hero-reassurance {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:12px;
  color:var(--muted);
  margin-top:23px;
}

.hero-reassurance span:before {
  content:'✓';
  margin-right:7px;
  color:var(--green);
}

.import-preview {
  color-scheme:light;
  background:#f7f9fc;
  border:1px solid #d9e1ed;
  color:var(--ink);
  border-radius:var(--radius);
  box-shadow:0 28px 80px #0004;
  scroll-margin-top:30px;
  overflow:hidden;
}

.preview-top {
  padding:18px 22px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
}

.preview-brand {
  display:flex;
  gap:9px;
  align-items:center;
  font-size:13px;
  font-weight:750;
}

.demo-label {
  font-size:10px;
  color:#5b6b7f;
}

.preview-heading {
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:center;
  padding:28px 22px 24px;
}

.small-label {
  font-size:9px;
  font-weight:750;
  letter-spacing:.1em;
  color:#68798e;
}

.preview-heading h2 {
  font-size:26px;
  margin-top:7px;
}

.file-pill {
  font-size:11px;
  color:#5b6b7f;
  border:1px solid #dbe2ec;
  border-radius:6px;
  padding:5px 9px;
}

.preview-columns {
  display:flex;
  justify-content:space-between;
  margin:0 22px;
  padding-bottom:10px;
  font-size:10px;
  color:#5b6b7f;
  border-bottom:1px solid #e0e6ef;
}

.demo-row {
  margin:0 16px;
  border-bottom:1px solid #e0e6ef;
}

.demo-row summary {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:19px 6px;
  cursor:pointer;
  list-style:none;
}

.demo-row summary::-webkit-details-marker {
  display:none;
}

.demo-transaction {
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.demo-transaction strong {
  display:block;
  font-size:12px;
  line-height:1.4;
}

.demo-transaction small,.demo-result small {
  display:block;
  font-size:10px;
  color:#64748b;
  margin-top:4px;
}

.transaction-icon {
  width:30px;
  height:34px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-shrink:0;
  background:#e6f2ee;
  border-radius:8px;
  color:#28705e;
  font-size:20px;
}

.blue-icon {
  background:#e8efff;
  color:#3466cf;
}

.amber-icon {
  background:#fcf0d7;
  color:#936111;
}

.demo-result {
  text-align:right;
  max-width:47%;
}

.meaning-tag {
  display:inline-block;
  background:#e4f2ed;
  color:#225b4b;
  border-radius:5px;
  padding:4px 7px;
  font-weight:650;
  font-size:10px;
  line-height:1.4;
}

.amber-tag {
  background:#fcf0d7;
  color:#815916;
}

.demo-explanation {
  font-size:11px;
  line-height:1.65;
  background:#eaf0f8;
  border-radius:8px;
  padding:11px 13px;
  margin:0 6px 15px;
  color:#44576f;
}

.demo-explanation span {
  margin-right:6px;
  color:#306bca;
}

.preview-footer {
  display:flex;
  gap:10px;
  align-items:center;
  padding:20px 22px;
  color:#4d6274;
  font-size:11px;
}

.shield-icon {
  color:#2b7960;
  font-size:16px;
}

.principle-strip {
  border-block:1px solid var(--line);
  background:#0d1c2c;
}

.principle-strip>.container {
  display:flex;
  gap:30px;
  align-items:center;
  justify-content:space-between;
  padding-block:27px;
}

.principle-strip span {
  font-size:15px;
  font-weight:650;
  flex-shrink:0;
}

.principle-strip p {
  font-size:13px;
  color:var(--muted);
  max-width:560px;
}

.workflow-section {
  background:#f1f4f8;
  color:var(--ink);
  padding-block:84px;
}

.section-heading h2,.control-copy h2 {
  font-size:clamp(30px,3.1vw,44px);
}

.section-heading .eyebrow,.control-copy .eyebrow {
  margin-bottom:20px;
}

.workflow-section .eyebrow {
  color:#356cc0;
}

.section-heading>p {
  margin-top:22px;
  color:var(--muted);
  font-size:16px;
  max-width:500px;
}

.workflow-section .section-heading>p {
  color:#5c6b7d;
}

.workflow-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px;
  margin-top:44px;
}

.workflow-grid article {
  border-top:1px solid #cbd5e1;
  padding-top:20px;
}

.step-number {
  display:flex;
  justify-content:space-between;
  color:#4277ca;
  font-size:13px;
  font-weight:650;
}

.step-number span {
  font-size:22px;
  line-height:1;
}

.workflow-grid h3 {
  font-size:21px;
  margin-top:26px;
  letter-spacing:-.025em;
}

.workflow-grid p {
  font-size:14px;
  line-height:1.8;
  color:#536376;
  margin-top:15px;
}

.context-section {
  padding-block:92px;
}

.context-section h2 span {
  color:var(--muted);
}

.context-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:40px;
}

.context-grid article {
  border:1px solid var(--line);
  border-radius:14px;
  padding:26px;
  background:var(--surface);
}

.context-symbol {
  display:flex;
  align-items:center;
  justify-content:center;
  height:40px;
  width:40px;
  border-radius:10px;
  background:#213851;
  color:#8fb9ff;
  font-size:24px;
}

.context-grid h3 {
  font-size:19px;
  line-height:1.3;
  margin-top:24px;
  letter-spacing:-.025em;
}

.context-grid p {
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
  margin-top:14px;
}

.control-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  border-block:1px solid var(--line);
  padding-block:62px;
}

.control-copy p {
  margin-top:22px;
  font-size:15px;
  color:var(--muted);
  max-width:460px;
}

.control-points>div {
  display:flex;
  gap:20px;
  padding-block:17px;
  border-bottom:1px solid var(--line);
}

.control-points>div:last-child {
  border:0;
}

.control-points>div>span {
  font-size:11px;
  color:var(--blue);
  padding-top:5px;
}

.control-points strong {
  display:block;
  color:var(--text);
  font-size:15px;
  margin-bottom:5px;
}

.control-points p {
  color:var(--muted);
  font-size:13px;
}

.faq-section {
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:65px;
  padding-block:86px;
}

.faq-list details {
  border-bottom:1px solid var(--line);
}

.faq-list summary {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  list-style:none;
  cursor:pointer;
  font-size:15px;
  padding:21px 0;
  font-weight:600;
}

.faq-list summary::-webkit-details-marker {
  display:none;
}

.faq-list summary span {
  color:var(--blue);
  font-size:24px;
  font-weight:400;
}

.faq-list details[open] summary span {
  transform:rotate(45deg);
}

.faq-list p {
  font-size:14px;
  color:var(--muted);
  padding-bottom:22px;
}

.final-cta {
  text-align:center;
  border:1px solid #2e4767;
  border-radius:20px;
  padding:54px 32px;
  margin-bottom:80px;
  background:radial-gradient(ellipse at 50% 0,#18365a 0,transparent 75%),#112136;
}

.final-cta .eyebrow {
  margin-bottom:20px;
}

.final-cta h2 {
  font-size:clamp(29px,3vw,42px);
}

.final-cta h2 span {
  color:#a8caff;
}

.final-cta p {
  color:var(--muted);
  font-size:15px;
  margin:18px auto 26px;
  max-width:530px;
}

.final-signin {
  display:block;
  width:fit-content;
  margin:18px auto 0;
  font-size:12px;
  color:var(--muted);
  text-decoration:underline;
  text-underline-offset:3px;
}

.site-footer {
  border-top:1px solid var(--line);
  padding-block:28px;
}

.footer-inner {
  display:flex;
  gap:30px;
  justify-content:space-between;
  align-items:center;
}

.footer-inner .brand {
  font-size:25px;
  gap:0;
}

.footer-inner p {
  font-size:12px;
  color:var(--muted);
}

.footer-inner p span {
  margin-left:15px;
  color:#90a2b8;
}

.footer-inner>a:last-child {
  font-size:13px;
  color:var(--muted);
}

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

.skip-link {
  position:absolute;
  top:-100px;
  left:20px;
  background:#fff;
  color:#152638;
  padding:12px;
  z-index:20;
}

.skip-link:focus {
  top:12px;
}

/* Shared existing sign-in / signup behavior. */
.signin-page {
  min-height:100dvh;
  display:flex;
  flex-direction:column;
}

.signin-page main {
  flex:1;
}

.auth-layout {
  display:grid;
  grid-template-columns:1fr 440px;
  gap:80px;
  align-items:center;
  padding-block:74px;
}

.auth-intro h2 {
  font-size:clamp(40px,4vw,58px);
}

.auth-intro h2 span {
  color:var(--blue);
}

.auth-intro p {
  color:var(--muted);
  max-width:370px;
  margin:24px 0;
  font-size:17px;
}

.text-link {
  font-size:14px;
  color:var(--muted);
}

.login-card,.modal {
  color-scheme:light;
  background:#fff;
  color:var(--ink);
  border-radius:20px;
  padding:34px;
}

.auth-kicker {
  color:#4778c7;
  font-size:10px;
  letter-spacing:.18em;
  font-weight:750;
  margin-bottom:18px;
}

.login-card h1,.modal h2 {
  font-size:30px;
  letter-spacing:-.035em;
}

.auth-subtitle,.modal form>p {
  color:#5e6f84;
  font-size:14px;
  margin:10px 0 24px;
}

.form-stack {
  display:flex;
  flex-direction:column;
  gap:18px;
}

.field-label {
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:7px;
}

.login-input-shell {
  position:relative;
  display:flex;
  align-items:center;
}

.login-input-shell>svg {
  position:absolute;
  left:13px;
  width:17px;
  height:17px;
  fill:none;
  stroke:#7589a3;
  stroke-width:1.6;
  pointer-events:none;
}

.login-input-shell input {
  width:100%;
  min-width:0;
  border:1px solid #cbd5e1;
  border-radius:8px;
  background:#f8fafc;
  color:#152638;
  padding:12px 42px 12px 40px;
  font-size:14px;
  min-height:46px;
}

.login-input-shell input::placeholder {
  color:#738296;
}

.eye-btn {
  position:absolute;
  right:5px;
  width:35px;
  height:35px;
  border:0;
  background:transparent;
  color:#5c6c82;
  display:flex;
  align-items:center;
  justify-content:center;
}

.eye-btn svg {
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
}

.form-actions {
  display:flex;
  margin-top:3px;
}

.btn-primary,.btn-request {
  width:100%;
  border-radius:8px;
  padding:12px 16px;
  min-height:46px;
  font-size:14px;
  font-weight:650;
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
}

.btn-primary {
  border:1px solid #2465d6;
  background:#2465d6;
  color:white;
}

.btn-primary:hover {
  background:#1e56b8;
}

.btn-request {
  border:1px solid #cbd5e1;
  background:#fff;
  color:#284262;
  margin-top:24px;
}

.btn-request svg {
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
}

.login-forgot-row {
  text-align:center;
  font-size:13px;
}

.login-forgot-link {
  color:#245bb0;
}

.divider {
  display:flex;
  align-items:center;
  gap:14px;
  font-size:12px;
  color:#63738a;
  margin:20px 0;
}

.divider:before,.divider:after {
  content:'';
  height:1px;
  background:#dce3ed;
  flex:1;
}

.login-google-button-row,.login-google-signup-row {
  display:flex;
  justify-content:center;
  min-height:40px;
  margin-top:18px;
}

.login-error,.modal-error {
  color:#a02626;
  background:#fff0f0;
  border-radius:8px;
  padding:12px;
  font-size:13px;
  margin-bottom:16px;
}

.login-success {
  color:#21604b;
  background:#eaf8f0;
  padding:12px;
  border-radius:8px;
  font-size:13px;
  margin-bottom:16px;
}

.modal-overlay {
  position:fixed;
  inset:0;
  background:#030d1bcc;
  backdrop-filter:blur(8px);
  z-index:100;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.modal {
  position:relative;
  width:100%;
  max-width:480px;
  max-height:calc(100dvh - 40px);
  overflow:auto;
  box-shadow:0 25px 100px #0006;
}

.modal h2 {
  padding-right:25px;
}

.modal-close {
  position:absolute;
  right:15px;
  top:12px;
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  color:#52647c;
  font-size:23px;
}

.signup-password-hint {
  font-size:12px;
  color:#5e6f84;
  margin-top:8px;
}

.signup-referral-toggle {
  display:flex;
  align-items:center;
  gap:8px;
  border:0;
  background:transparent;
  text-align:left;
  color:#45648c;
  font-size:13px;
  padding:3px 0;
}

.signup-referral-toggle svg {
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
}

.signup-referral-toggle[aria-expanded=true] svg {
  transform:rotate(180deg);
}

.modal-error {
  display:none;
  margin-top:16px;
}

.modal-error.show {
  display:block;
}

.modal .form-actions {
  margin-top:24px;
}

.modal-success {
  display:none;
}

.modal-success.show {
  display:block;
}

.success-icon {
  color:#28705e;
  font-size:30px;
}

@media(min-width:1400px) {
  .hero {
    gap:74px;
  }
}

@media(max-width:1100px) {
  .container {
    width:calc(100% - 64px);
  }
  .hero {
    gap:30px;
    padding-block:68px;
  }
  .hero h1 {
    font-size:46px;
  }
  .hero-description {
    font-size:17px;
  }
  .demo-row summary {
    gap:8px;
  }
  .transaction-icon {
    display:none;
  }
  .control-section {
    gap:45px;
  }
  .auth-layout {
    gap:40px;
    grid-template-columns:1fr 400px;
  }
  .context-grid article {
    padding:22px;
  }
}

@media(max-width:820px) {
  .nav-links {
    display:none;
  }
  .hero {
    grid-template-columns:1fr;
    gap:44px;
    padding-block:55px;
  }
  .hero-copy {
    max-width:640px;
  }
  .hero h1 {
    font-size:clamp(43px,7vw,60px);
  }
  .hero-description,.hero-detail {
    max-width:560px;
  }
  .import-preview {
    max-width:620px;
    width:100%;
    justify-self:center;
  }
  .transaction-icon {
    display:flex;
  }
  .principle-strip>.container {
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .workflow-grid {
    gap:24px;
  }
  .workflow-grid h3 {
    font-size:19px;
  }
  .context-grid {
    grid-template-columns:1fr;
  }
  .context-grid article {
    padding:24px;
    display:grid;
    grid-template-columns:40px 1fr;
    column-gap:20px;
  }
  .context-grid h3 {
    margin:4px 0 0;
  }
  .context-grid p {
    grid-column:2;
    margin-top:8px;
  }
  .control-section {
    grid-template-columns:1fr;
    gap:25px;
  }
  .faq-section {
    grid-template-columns:1fr;
    gap:20px;
  }
  .auth-layout {
    grid-template-columns:1fr;
    padding-block:40px;
  }
  .auth-intro {
    display:none;
  }
  .login-card {
    max-width:440px;
    width:100%;
    margin:auto;
  }
  .footer-inner {
    flex-wrap:wrap;
  }
  .footer-inner p {
    order:3;
    width:100%;
  }
}

@media(max-width:540px) {
  .container {
    width:calc(100% - 40px);
  }
  .nav-inner {
    min-height:76px;
    gap:12px;
  }
  .brand {
    font-size:27px;
  }
  .brand img {
    width:27px;
    height:27px;
  }
  .nav-actions {
    gap:15px;
  }
  .nav-signin {
    font-size:12px;
  }
  .hero {
    padding-block:42px;
  }
  .hero h1 {
    font-size:42px;
  }
  .hero .eyebrow {
    font-size:9px;
    letter-spacing:.1em;
  }
  .hero-description {
    font-size:17px;
  }
  .hero-detail {
    font-size:14px;
  }
  .hero-actions {
    gap:8px;
  }
  .button {
    padding:13px 17px;
    font-size:13px;
    gap:13px;
  }
  .hero-reassurance {
    gap:7px 15px;
    font-size:11px;
  }
  .preview-top {
    padding:15px;
  }
  .preview-brand {
    font-size:12px;
  }
  .demo-label {
    font-size:9px;
    max-width:100px;
    text-align:right;
  }
  .preview-heading {
    padding:22px 15px;
  }
  .preview-heading h2 {
    font-size:24px;
  }
  .demo-row {
    margin-inline:10px;
  }
  .demo-transaction {
    gap:7px;
  }
  .demo-transaction strong {
    font-size:11px;
  }
  .demo-transaction small,.demo-result small {
    font-size:9px;
  }
  .meaning-tag {
    font-size:9px;
    padding:4px 5px;
  }
  .transaction-icon {
    display:none;
  }
  .preview-columns {
    margin-inline:16px;
    font-size:9px;
  }
  .preview-footer {
    padding:17px 15px;
    font-size:10px;
  }
  .workflow-section,.context-section {
    padding-block:56px;
  }
  .workflow-grid {
    grid-template-columns:1fr;
    gap:28px;
    margin-top:32px;
  }
  .workflow-grid h3 {
    margin-top:16px;
    font-size:22px;
  }
  .workflow-grid p {
    margin-top:10px;
  }
  .context-grid article {
    display:block;
  }
  .context-grid h3 {
    margin-top:18px;
  }
  .control-section {
    padding-block:42px;
  }
  .faq-section {
    padding-block:54px;
  }
  .section-heading h2,.control-copy h2 {
    font-size:32px;
  }
  .final-cta {
    padding:36px 22px;
    margin-bottom:48px;
  }
  .final-cta h2 {
    font-size:32px;
  }
  .final-cta h2 span {
    display:block;
    margin-top:7px;
  }
  .footer-inner {
    gap:20px;
  }
  .footer-inner p span {
    display:block;
    margin:5px 0 0;
  }
  .login-card,.modal {
    padding:26px 20px;
  }
  .modal-overlay {
    padding:12px;
  }
  .modal {
    max-height:calc(100dvh - 24px);
  }
  .login-google-button-row,.login-google-signup-row {
    max-width:100%;
    overflow:hidden;
  }
}

@media(prefers-reduced-motion:no-preference) {
  html {
    scroll-behavior:smooth;
  }
}

@media print {
  body {
    background:white;
    color:#152638;
  }
  .site-header,.site-footer,.hero-actions,.final-cta,.modal-overlay {
    display:none!important;
  }
  .container {
    width:100%;
  }
  .hero,.workflow-grid,.context-grid,.control-section,.faq-section {
    display:block;
    padding:20px 0;
  }
  .hero h1,.section-heading h2 {
    font-size:30px;
  }
  .hero-copy {
    margin-bottom:25px;
  }
  .import-preview,.context-grid article {
    break-inside:avoid;
    box-shadow:none;
  }
  .workflow-section {
    padding:20px 0;
  }
  .eyebrow,.hero-detail,.section-heading p,.context-grid p,.control-copy p,.control-points p,.faq-list p {
    color:#45566a;
  }
  .context-grid article {
    margin-block:15px;
    background:white;
  }
  .principle-strip {
    background:white;
  }
  .principle-strip p {
    color:#45566a;
  }
  .hero-description,.hero-reassurance,.control-points strong,.context-section h2 span {
    color:#26394e;
  }
}
