@font-face{font-family:"Outfit";font-style:normal;font-weight:300;font-display:swap;src:url("../fonts/Outfit_Light.woff2") format("woff2");}
@font-face{font-family:"Outfit";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/Outfit_Regular.woff2") format("woff2");}
@font-face{font-family:"Outfit";font-style:normal;font-weight:500;font-display:swap;src:url("../fonts/Outfit_Medium.woff2") format("woff2");}
@font-face{font-family:"Outfit";font-style:normal;font-weight:600;font-display:swap;src:url("../fonts/Outfit_SemiBold.woff2") format("woff2");}
@font-face{font-family:"Outfit";font-style:normal;font-weight:700;font-display:swap;src:url("../fonts/Outfit_Bold.woff2") format("woff2");}
@font-face{font-family:"Outfit";font-style:normal;font-weight:800;font-display:swap;src:url("../fonts/Outfit_ExtraBold.woff2") format("woff2");}

:root {
      --navy: #061943;
      --navy-2: #08245f;
      --blue: #176bff;
      --blue-2: #0f8dff;
      --sky: #eef6ff;
      --sky-2: #f7fbff;
      --paper: #ffffff;
      --ink: #071735;
      --muted: #5c6a82;
      --line: #dce6f3;
      --red: #e12929;
      --amber: #f59e0b;
      --green: #17a66a;
      --shadow: 0 24px 70px rgba(6, 25, 67, .12);
      --shadow-soft: 0 14px 35px rgba(6, 25, 67, .08);
      --radius-lg: 30px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --max: 1120px;
    }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
      margin: 0;
      font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: #f5f8fc;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
a { color: inherit; text-decoration: none; }
.page {
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 5%, rgba(23, 107, 255, .18), transparent 34rem),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fb 38%, #ffffff 100%);
    }
.container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }
.topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(248, 251, 255, .86);
      border-bottom: 1px solid rgba(220, 230, 243, .8);
      transition: transform .3s ease;
      will-change: transform;
    }
    .topbar.topbar-hidden { transform: translateY(-100%); }
.nav {
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
.brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 860;
      color: var(--navy);
      letter-spacing: -.03em;
    }
.brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: white;
      background: linear-gradient(135deg, var(--navy), var(--blue));
      box-shadow: 0 10px 24px rgba(23, 107, 255, .22);
      font-size: 18px;
    }
.nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      color: #31415c;
      font-weight: 720;
    }
.nav-links a {
      padding: 10px 0;
    }
.nav-links a:hover { color: var(--blue); }
.nav-links a.nav-cta {
      padding: 13px 30px;
      white-space: nowrap;
      border-radius: 999px;
      color: white;
      background: var(--navy);
      box-shadow: 0 12px 26px rgba(6, 25, 67, .18);
    }
.hero {
      padding: 86px 0 56px;
    }
.hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
      gap: 54px;
      align-items: center;
    }
.eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border: 1px solid rgba(23, 107, 255, .16);
      border-radius: 999px;
      color: var(--blue);
      background: rgba(23, 107, 255, .07);
      font-size: 13px;
      font-weight: 840;
      letter-spacing: .02em;
      text-transform: uppercase;
    }
.eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(23, 166, 106, .13);
    }
h1, h2, h3, p { margin-top: 0; }
h1 {
      max-width: 720px;
      margin: 22px 0 20px;
      font-size: clamp(44px, 6vw, 76px);
      line-height: 1.0;
      letter-spacing: -.03em;
      font-weight: 800;
      color: var(--navy);
    }
.lead {
      max-width: 650px;
      margin: 0 0 30px;
      color: #43516b;
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.58;
    }
.hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 30px;
    }
.hero-actions .btn { min-height: 54px; }
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 850;
      letter-spacing: -.01em;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      cursor: pointer;
    }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      box-shadow: 0 16px 34px rgba(23, 107, 255, .25);
    }
.btn-secondary {
      color: var(--navy);
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 12px 28px rgba(6, 25, 67, .06);
    }
.visual-wrap {
      position: relative;
      min-height: 520px;
    }
.visual-glow {
      position: absolute;
      inset: 14% 0 0 8%;
      border-radius: 42px;
      background:
        radial-gradient(circle at 70% 20%, rgba(23, 107, 255, .32), transparent 15rem),
        radial-gradient(circle at 20% 75%, rgba(23, 166, 106, .13), transparent 12rem),
        linear-gradient(145deg, rgba(6, 25, 67, .08), rgba(23, 107, 255, .11));
      transform: rotate(-4deg);
      filter: blur(.2px);
    }
.contract-card {
      position: absolute;
      inset: 38px 38px auto auto;
      width: min(440px, 100%);
      min-height: 456px;
      padding: 24px;
      border: 1px solid rgba(220, 230, 243, .95);
      border-radius: 32px;
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
    }
.contract-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }
.doc-title { font-size: 16px; font-weight: 900; color: var(--navy); }
.doc-sub { margin-top: 3px; font-size: 12px; color: var(--muted); }
.score {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      color: white;
      background: linear-gradient(135deg, var(--red), #ff714f);
      font-size: 22px;
      font-weight: 950;
      box-shadow: 0 12px 28px rgba(225, 41, 41, .22);
    }
.doc-line {
      height: 13px;
      border-radius: 999px;
      background: #edf3fb;
      margin: 12px 0;
      overflow: hidden;
    }
.doc-line.w1 { width: 92%; }
.doc-line.w2 { width: 78%; }
.doc-line.w3 { width: 88%; }
.doc-line.w4 { width: 60%; }
.highlight {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      margin-top: 14px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(245, 158, 11, .22);
      background: rgba(245, 158, 11, .08);
    }
.highlight.red {
      border-color: rgba(225, 41, 41, .22);
      background: rgba(225, 41, 41, .07);
    }
.highlight.green {
      border-color: rgba(23, 166, 106, .2);
      background: rgba(23, 166, 106, .07);
    }
.highlight strong {
      display: block;
      color: var(--navy);
      font-size: 13px;
      margin-bottom: 2px;
    }
.highlight span {
      display: block;
      color: var(--muted);
      font-size: 12px;
    }
.tag {
      padding: 7px 10px;
      border-radius: 999px;
      background: white;
      border: 1px solid var(--line);
      font-size: 12px;
      font-weight: 900;
      color: var(--navy);
      white-space: nowrap;
    }
.magnifier {
      position: absolute;
      right: 2px;
      bottom: 70px;
      width: 142px;
      height: 142px;
      border-radius: 50%;
      border: 12px solid #0b7cff;
      background: rgba(255, 255, 255, .88);
      box-shadow: 0 24px 42px rgba(6, 25, 67, .23);
      display: grid;
      place-items: center;
      transform: rotate(-9deg);
    }
.magnifier::after {
      content: "";
      position: absolute;
      width: 74px;
      height: 17px;
      border-radius: 999px;
      background: var(--navy);
      right: -58px;
      bottom: -20px;
      transform: rotate(45deg);
      transform-origin: left center;
    }
.magnifier b {
      font-size: 42px;
      color: var(--red);
      letter-spacing: -.05em;
    }
.note-card {
      position: absolute;
      left: 8px;
      bottom: 38px;
      max-width: 270px;
      padding: 18px 18px 18px 20px;
      border-radius: 22px;
      color: white;
      background: linear-gradient(135deg, var(--navy), #123d92);
      box-shadow: var(--shadow-soft);
    }
.note-card strong {
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
    }
.note-card span {
      display: block;
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
    }
.section {
      padding: 78px 0;
    }
.section.light {
      background: white;
    }
.section.soft {
      background: #f3f7fc;
    }
.section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }
.kicker {
      margin-bottom: 10px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
h2 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -.025em;
      font-weight: 800;
    }
.section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }
.path-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
.path-card {
      position: relative;
      min-height: 246px;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }
.path-card::after {
      content: "";
      position: absolute;
      right: -42px;
      bottom: -50px;
      width: 150px;
      height: 150px;
      border-radius: 999px;
      background: rgba(23, 107, 255, .08);
    }
.path-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: white;
      background: var(--navy);
      margin-bottom: 20px;
      font-size: 22px;
    }
.path-icon svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; }
.path-card:nth-child(2) .path-icon { background: var(--blue); }
.path-card:nth-child(3) .path-icon { background: var(--green); }
.path-card h3 {
      position: relative;
      margin: 0 0 10px;
      color: var(--navy);
      font-size: 23px;
      line-height: 1.15;
      letter-spacing: -.03em;
    }
.path-card p {
      position: relative;
      margin: 0 0 20px;
      color: var(--muted);
      font-size: 15px;
    }
.path-card a {
      position: relative;
      display: inline-flex;
      color: var(--blue);
      font-weight: 900;
      font-size: 14px;
    }
.warning-band {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 20px;
      align-items: center;
      margin-top: 28px;
      padding: 26px;
      border-radius: 28px;
      color: white;
      background: linear-gradient(135deg, var(--navy), #1147a5);
      box-shadow: var(--shadow-soft);
    }
.warning-sign {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 20px;
      background: rgba(225, 41, 41, .92);
      border: 1px solid rgba(255, 255, 255, .18);
      font-size: 28px;
    }
.warning-band h3 {
      margin: 0 0 4px;
      font-size: 24px;
      line-height: 1.14;
      letter-spacing: -.035em;
    }
.warning-band p {
      margin: 0;
      color: rgba(255, 255, 255, .78);
    }
.steps {
      display: grid;
      gap: 14px;
      counter-reset: step;
    }
.step {
      counter-increment: step;
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      padding: 22px;
      border-radius: 24px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 10px 26px rgba(6, 25, 67, .055);
    }
.step::before {
      content: counter(step);
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 20px;
      color: white;
      background: var(--navy);
      font-weight: 950;
      font-size: 20px;
    }
.step h3 {
      margin: 0 0 5px;
      color: var(--navy);
      font-size: 19px;
    }
.step p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }
.trust-box {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
      gap: 30px;
      align-items: center;
      padding: 34px;
      border-radius: 34px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }
.trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--navy);
      background: #f0f6ff;
      border: 1px solid #dbeaff;
      font-size: 13px;
      font-weight: 850;
    }
.trust-box h2 {
      margin-bottom: 12px;
      font-size: clamp(30px, 3.5vw, 44px);
    }
.trust-box p {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 0;
    }
.trust-list {
      display: grid;
      gap: 12px;
    }
.trust-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 16px;
      border-radius: 18px;
      background: #f8fbff;
      border: 1px solid #e8eef7;
      color: #34435c;
      font-size: 15px;
    }
.trust-item::before {
      content: "✓";
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: white;
      background: var(--green);
      font-size: 13px;
      font-weight: 950;
    }
.faq {
      display: grid;
      gap: 12px;
      max-width: 860px;
    }
details {
      border-radius: 18px;
      background: white;
      border: 1px solid var(--line);
      box-shadow: 0 8px 20px rgba(6, 25, 67, .04);
      overflow: hidden;
    }
summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 20px;
      color: var(--navy);
      font-weight: 850;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
summary::-webkit-details-marker { display: none; }
summary::after {
      content: "+";
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--blue);
      background: #eef6ff;
      font-weight: 950;
    }
details[open] summary::after { content: "−"; }
details p {
      margin: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }
.final-cta {
      padding: 44px;
      border-radius: 36px;
      text-align: center;
      color: white;
      background:
        radial-gradient(circle at 18% 10%, rgba(23, 107, 255, .6), transparent 18rem),
        radial-gradient(circle at 90% 80%, rgba(23, 166, 106, .24), transparent 18rem),
        linear-gradient(135deg, var(--navy), #123e91);
      box-shadow: var(--shadow);
    }
.final-cta h2 {
      color: white;
      margin-bottom: 12px;
    }
.final-cta p {
      max-width: 680px;
      margin: 0 auto 24px;
      color: rgba(255, 255, 255, .78);
      font-size: 18px;
    }
.final-cta .btn-secondary {
      color: var(--navy);
      background: white;
      border-color: transparent;
    }
footer {
      padding: 52px 0;
      color: rgba(255, 255, 255, .68);
      background: #041232;
    }
.footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
footer .brand { color: white; margin-bottom: 16px; }
footer p { margin: 0; font-size: 13.5px; line-height: 1.65; max-width: 480px; color: rgba(255,255,255,.62); }
footer h3 { letter-spacing: .02em; }
footer a { white-space: nowrap; }
footer h3 { margin: 9px 0 14px; color: white; font-size: 15px; }
footer a { display: block; margin: 8px 0; font-size: 14px; color: rgba(255, 255, 255, .76); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

@media (max-width: 980px) {
.hero-grid, .trust-box {
        grid-template-columns: 1fr;
      }
.visual-wrap { min-height: 500px; }
.contract-card { left: 0; right: 0; margin: auto; }
.path-grid { grid-template-columns: 1fr; }
.warning-band { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }

    
}

@media (max-width: 720px) {
.container { width: min(100% - 28px, var(--max)); }
.nav { height: auto; padding: 16px 0; position: relative; }
.nav-toggle { display: flex; }
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 6px 18px 16px;
  background: rgba(248, 251, 255, .98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.nav-links.open { display: flex; }
.nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
.nav-links a.nav-cta { margin-top: 12px; text-align: center; justify-content: center; border-bottom: 0; }
.page .pozor { grid-template-columns: 1fr; }
.page .pozor .pozor-tag { justify-self: start; }
.warning-sign { display: none; }
.hero { padding: 44px 0 28px; }
.hero-grid { gap: 18px; }
.hero-actions { margin-bottom: 4px; }
.visual-wrap { min-height: 430px; margin-top: 8px; }
.contract-card { inset: 8px 0 auto 0; }
.hero { padding: 52px 0 42px; }
.hero-actions { align-items: stretch; }
.btn { width: 100%; }
.visual-wrap { min-height: 470px; margin-top: 4px; }
.contract-card { width: 100%; padding: 20px; }
.magnifier { width: 118px; height: 118px; right: -6px; bottom: 62px; border-width: 10px; }
.magnifier b { font-size: 34px; }
.note-card { left: 0; max-width: 245px; }
.section { padding: 58px 0; }
.path-card, .trust-box, .final-cta { padding: 24px; border-radius: 26px; }
.step { grid-template-columns: 1fr; }

    
}
.prose { max-width: 770px; }
.prose p { color: #43516b; font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { color: var(--navy); font-size: 23px; letter-spacing: -.03em; margin: 30px 0 10px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 8px 0 24px; }
.fact-card { padding: 24px 26px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(6,25,67,.055); }
.fact-card h3 { margin: 0 0 14px; color: var(--navy); font-size: 18px; letter-spacing: -.02em; }
.bullets { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.bullets li { position: relative; padding-left: 22px; color: #43516b; font-size: 15px; line-height: 1.5; }
.bullets li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 999px; background: var(--blue); }
.pozor { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; margin-top: 26px; padding: 22px 24px; border-radius: 22px; background: rgba(225,41,41,.06); border: 1px solid rgba(225,41,41,.22); border-left: 5px solid var(--red); }
.pozor-tag { align-self: start; padding: 6px 12px; border-radius: 999px; background: var(--red); color: white; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pozor p { margin: 0; color: #4b5563; font-size: 15px; line-height: 1.6; }
.dark-panel { padding: 44px; border-radius: var(--radius-lg); color: white; background: radial-gradient(circle at 82% 8%, rgba(23,107,255,.42), transparent 16rem), linear-gradient(135deg, var(--navy), #123f98); box-shadow: var(--shadow); }
.dark-panel .kicker { color: #83c7ff; }
.dark-panel h2 { color: white; }
.dark-panel p { color: rgba(255,255,255,.82); max-width: 760px; font-size: 17px; }
.dark-panel .bullets li { color: rgba(255,255,255,.85); }
.dark-panel .bullets li::before { background: #83c7ff; }
.dark-panel .feature-kicker { color: white; font-size: 18px; margin-top: 20px; margin-bottom: 0; }
.dodont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dd-card { padding: 30px 32px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.dd-card.do { border-top: 4px solid var(--green); }
.dd-card.dont { border-top: 4px solid var(--red); }
.dd-card h3 { margin: 0 0 18px; color: var(--navy); font-size: 23px; letter-spacing: -.03em; }
.good-list, .bad-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.good-list li, .bad-list li { position: relative; padding-left: 34px; color: #34435c; font-size: 15px; line-height: 1.5; }
.good-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 999px; background: var(--green); color: white; font-size: 12px; font-weight: 900; }
.bad-list li::before { content: "✕"; position: absolute; left: 0; top: 1px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 999px; background: var(--red); color: white; font-size: 12px; font-weight: 900; }
.faq-more { margin-top: 24px; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom a { display: inline; margin: 0; }
.footer-bottom a:hover { color: white; }
.warning-band.spaced { margin-top: 56px; }
.warning-sign { border: 1px solid rgba(255, 255, 255, .35); }
.notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; margin: 6px 0 32px; }
.note { position: relative; background: white; border: 1px solid var(--line); border-top: 4px solid var(--blue); border-radius: var(--radius-md); padding: 28px 28px 24px; box-shadow: var(--shadow-soft); }
.note.red { border-top-color: var(--red); }
.note h3 { margin: 0 0 14px; color: var(--navy); font-size: 18px; letter-spacing: -.02em; }

@media (max-width: 980px) {
.two-col, .dodont-grid { grid-template-columns: 1fr; }
.notes-grid { grid-template-columns: 1fr; }

    
}
