:root {
  color-scheme: light;
  --midnight: #0b1f33;
  --midnight-2: #102c45;
  --teal: #0e8b81;
  --teal-dark: #096f68;
  --teal-soft: #d9eeea;
  --amber: #e28a2c;
  --amber-soft: #f8e9d4;
  --ivory: #f8f4e6;
  --canvas: #f8f6f0;
  --surface: #fffffc;
  --line: #d8ded9;
  --ink: #0b1f33;
  --muted: #56646e;
  --dark-muted: #b9c8cf;
  --shadow: 0 26px 70px rgba(11, 31, 51, 0.12);
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--midnight);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  background: color-mix(in srgb, var(--canvas) 86%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--midnight);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11, 31, 51, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--teal-dark);
}

.nav-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.button-primary {
  background: var(--midnight);
  color: var(--ivory);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 18px;
}

.button-primary,
.button-secondary {
  padding: 12px 20px;
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--teal-dark);
}

.button-secondary {
  border: 1px solid rgba(11, 31, 51, 0.18);
  background: var(--surface);
  color: var(--midnight);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  padding: clamp(60px, 8vw, 108px) 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(70vw, 880px);
  aspect-ratio: 1;
  top: -38%;
  left: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 139, 129, 0.15), rgba(14, 139, 129, 0));
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(14, 139, 129, 0.24);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(14, 139, 129, 0.12);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  font-weight: 850;
}

.hero h1 span {
  color: var(--teal-dark);
}

.hero .lede {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
}

.store-badge img {
  width: auto;
  height: 56px;
  filter: grayscale(1);
  opacity: 0.48;
}

.store-badge small {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
  flex-wrap: wrap;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-facts li::before {
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-stage {
  position: relative;
  width: min(100%, 1030px);
  min-height: clamp(590px, 68vw, 830px);
  margin: 40px auto 0;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 4%;
  left: 8%;
  height: 26%;
  border-radius: 50%;
  background: rgba(11, 31, 51, 0.16);
  filter: blur(52px);
}

.hero-phone {
  margin: 0;
  position: absolute;
  bottom: 0;
  width: clamp(220px, 32vw, 354px);
  filter: drop-shadow(0 28px 38px rgba(11, 31, 51, 0.2));
}

.hero-phone img {
  width: 100%;
  height: auto;
}

.hero-phone.primary {
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.hero-phone.left {
  z-index: 1;
  left: 8%;
  bottom: 0;
  width: clamp(180px, 27vw, 300px);
  transform: rotate(-7deg);
}

.hero-phone.right {
  z-index: 2;
  right: 8%;
  bottom: 0;
  width: clamp(180px, 27vw, 300px);
  transform: rotate(7deg);
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -2px;
  background: var(--midnight);
  color: var(--ivory);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(248, 244, 230, 0.16);
}

.proof-item {
  padding: clamp(26px, 4vw, 46px) 24px;
  background: var(--midnight);
  text-align: center;
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  color: #78d1c8;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-item span {
  color: var(--dark-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.section {
  padding: clamp(74px, 9vw, 120px) 0;
}

.section.alt {
  border-block: 1px solid rgba(11, 31, 51, 0.08);
  background: #f0f1ec;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4.7vw, 3.8rem);
  font-weight: 830;
  text-align: center;
}

.section-lede {
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.path-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(11, 31, 51, 0.06);
}

.path-card::before {
  content: attr(data-number);
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(11, 31, 51, 0.12);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.path-icon,
.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 1.45rem;
  font-weight: 900;
}

.path-card:nth-child(3) .path-icon {
  background: var(--amber-soft);
  color: #ae5b10;
}

.path-card h3 {
  margin: 28px 0 10px;
  font-size: 1.42rem;
}

.path-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.screenshot-shell {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.screenshot-gallery {
  display: grid;
  grid-auto-columns: clamp(280px, 28vw, 350px);
  grid-auto-flow: column;
  gap: 24px;
  padding: 12px max(20px, calc((100vw - var(--wrap)) / 2)) 32px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(20px, calc((100vw - var(--wrap)) / 2));
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--teal) rgba(11, 31, 51, 0.08);
  scrollbar-width: thin;
}

.screenshot-card {
  min-width: 0;
  padding: 24px 18px 0;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--surface), #eef3ef);
  box-shadow: 0 18px 44px rgba(11, 31, 51, 0.08);
  scroll-snap-align: start;
  overflow: hidden;
}

.screenshot-card:last-child {
  scroll-snap-align: end;
}

.screenshot-index {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.screenshot-card h3 {
  margin: 6px 0 8px;
  font-size: 1.32rem;
}

.screenshot-card p {
  min-height: 4.8em;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.screenshot-media {
  aspect-ratio: 900 / 1859;
  width: min(100%, 292px);
  margin-inline: auto;
}

.screenshot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-note {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.split-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.split-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.source-stack {
  display: grid;
  gap: 12px;
}

.source-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 15px 16px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 20px;
  background: var(--surface);
  text-decoration: none;
}

.source-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(11, 31, 51, 0.08);
}

.source-card .seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.source-card strong,
.source-card small {
  display: block;
}

.source-card small {
  color: var(--muted);
}

.source-card .source-arrow {
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.privacy-panel {
  position: relative;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  background: var(--midnight);
  color: var(--ivory);
  overflow: hidden;
}

.privacy-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(14, 139, 129, 0.35);
}

.privacy-panel > * {
  position: relative;
  z-index: 1;
}

.privacy-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.privacy-panel p {
  color: var(--dark-muted);
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  padding: 14px 16px;
  border: 1px solid rgba(248, 244, 230, 0.16);
  border-radius: 17px;
  background: rgba(248, 244, 230, 0.06);
  color: #e6efec;
  font-size: 0.9rem;
  font-weight: 700;
}

.privacy-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #78d1c8;
}

.plus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(226, 138, 44, 0.32);
  border-radius: 34px;
  background: linear-gradient(135deg, #fffaf1, var(--amber-soft));
}

.plus-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.plus-panel p {
  color: #655b50;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 28px;
  border-radius: 26px;
  background: var(--midnight);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.price-card .price {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-weight: 870;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-card .price small {
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card ul {
  margin: 22px 0 0;
  padding: 0;
  color: var(--dark-muted);
  list-style: none;
}

.price-card li + li {
  margin-top: 8px;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: #78d1c8;
}

.fine-print {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.correction-band {
  padding: clamp(42px, 7vw, 72px);
  border-radius: 36px;
  background: var(--teal-soft);
  text-align: center;
}

.correction-band h2 {
  margin: 0 auto 14px;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

.correction-band p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: #425c5b;
}

.cta-band {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--ivory);
  text-align: center;
}

.cta-band .app-icon-large {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  border-radius: 25px;
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.18);
}

.cta-band h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.cta-band > .wrap > p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 38px;
  background: #071522;
  color: var(--ivory);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: start;
}

.footer-about {
  max-width: 630px;
}

.footer-about p {
  color: var(--dark-muted);
  font-size: 0.86rem;
}

.footer-links,
.footer-apps {
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
}

.footer-links {
  margin-top: 24px;
}

.footer-links a,
.footer-apps a {
  color: #d6e2e4;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-apps a:hover {
  color: #78d1c8;
}

.more-apps small,
.made-by small {
  display: block;
  margin-bottom: 10px;
  color: #7f98a4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.made-by {
  margin-top: 30px;
}

.made-by img {
  width: auto;
  height: 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 244, 230, 0.12);
  color: #7f98a4;
  font-size: 0.76rem;
}

/* Legal and support pages */
.subpage-hero {
  padding: clamp(60px, 9vw, 100px) 0 50px;
  background: var(--midnight);
  color: var(--ivory);
  text-align: center;
}

.subpage-hero .eyebrow {
  background: rgba(120, 209, 200, 0.12);
  color: #8de1d7;
}

.subpage-hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.subpage-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--dark-muted);
  font-size: 1.05rem;
}

.legal-main,
.support-main {
  padding: clamp(54px, 8vw, 88px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(32px, 7vw, 84px);
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 20px;
  background: var(--surface);
}

.legal-nav strong {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-nav a {
  color: var(--midnight);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--teal-dark);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: 100px;
}

.legal-content section + section {
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid rgba(11, 31, 51, 0.12);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.16rem;
}

.legal-content p,
.legal-content li {
  color: #43515c;
}

.legal-content li + li {
  margin-top: 8px;
}

.notice {
  padding: 20px 22px;
  border-left: 5px solid var(--teal);
  border-radius: 0 16px 16px 0;
  background: var(--teal-soft);
  color: #264b4a;
}

.notice strong {
  color: var(--midnight);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(11, 31, 51, 0.1);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(11, 31, 51, 0.06);
}

.support-card h2 {
  margin: 24px 0 10px;
  font-size: 1.4rem;
}

.support-card p {
  color: var(--muted);
}

.support-card .button-secondary {
  margin-top: auto;
}

.support-note {
  max-width: 850px;
  margin: 42px auto 0;
  padding: 28px;
  border-radius: 26px;
  background: var(--midnight);
  color: var(--ivory);
}

.support-note h2 {
  margin-bottom: 12px;
}

.support-note p {
  color: var(--dark-muted);
}

.support-note a {
  color: #8de1d7;
  font-weight: 800;
}

@media (max-width: 920px) {
  .path-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }

  .split,
  .plus-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .site-nav {
    min-height: 64px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-stage {
    min-height: 650px;
    margin-top: 24px;
  }

  .hero-phone.primary {
    width: min(76vw, 340px);
  }

  .hero-phone.left,
  .hero-phone.right {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    text-align: left;
  }

  .proof-item strong {
    margin: 0;
    font-size: 2.45rem;
  }

  .screenshot-gallery {
    grid-auto-columns: min(84vw, 330px);
    gap: 16px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .privacy-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .hero-stage {
    min-height: 600px;
  }

  .proof-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .store-badge img {
    height: 50px;
  }

  .path-card,
  .support-card {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #34434d;
    --line: #72808a;
  }

  .path-card,
  .source-card,
  .screenshot-card,
  .support-card {
    border-color: #66737c;
  }
}
