@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #17302b;
  --ink-strong: #0d211c;
  --muted: #5d6d66;
  --line: #17302b;
  --paper: #fff7df;
  --paper-strong: #f1e7c7;
  --white: #fffdf6;
  --mint: #c9efd3;
  --sprout: #e4f6bf;
  --butter: #ffe98c;
  --peach: #ffc7a6;
  --tomato: #ff927c;
  --sky: #bce7ef;
  --blue: #62b4c4;
  --leaf: #77c98d;
  --green: #2a7b4f;
  --green-2: #173d32;
  --shadow: 8px 8px 0 rgba(23, 48, 43, .16), 0 16px 34px rgba(23, 48, 43, .08);
  --shadow-soft: 0 18px 42px rgba(23, 48, 43, .12);
  --shadow-hover: 10px 10px 0 rgba(23, 48, 43, .18), 0 20px 42px rgba(23, 48, 43, .10);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 48, 43, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 48, 43, .055) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }

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

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

button,
input,
select,
textarea { font: inherit; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--ink-strong);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}

.skip-link:focus { left: 1rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 223, .94);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink-strong);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(23, 48, 43, .18);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-mark path:last-child { fill: var(--butter); }

.brand-sub {
  display: block;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav a {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 850;
  padding: .62rem .82rem;
  border: 2px solid transparent;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  background: var(--sprout);
  border-color: var(--line);
  box-shadow: 3px 3px 0 rgba(23, 48, 43, .14);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink) !important;
  background: var(--butter) !important;
  border: 2px solid var(--line) !important;
  box-shadow: 4px 4px 0 rgba(23, 48, 43, .18);
}

.mobile-toggle {
  display: none;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(23, 48, 43, .16);
}

main { overflow: hidden; }

.section {
  padding: 84px 0;
  background: var(--paper);
  border-top: 2px solid var(--line);
}

.section.compact { padding: 54px 0; }

.section.white { background: var(--white); }

.section.dark {
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 18px),
    var(--green-2);
}

.section.gradient {
  background:
    repeating-linear-gradient(135deg, rgba(23, 48, 43, .075) 0 1px, transparent 1px 20px),
    var(--mint);
  border-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 1rem;
  color: var(--green-2);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark .eyebrow { color: var(--butter); }

.kicker-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--tomato);
  border: 2px solid var(--line);
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(23, 48, 43, .16);
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 1.35rem;
  font-size: 5.6rem;
  line-height: .94;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.65rem;
  line-height: 1;
}

h3 {
  margin-bottom: .75rem;
  font-size: 1.28rem;
  line-height: 1.12;
}

.dark h1,
.dark h2,
.dark h3,
.cta-band h2,
.cta-band h3 { color: inherit; }

.lead {
  max-width: 760px;
  color: #41524c;
  font-size: 1.2rem;
  line-height: 1.6;
}

.dark .lead,
.dark .muted { color: rgba(255, 253, 246, .78); }

.muted { color: var(--muted); }

.tight { max-width: 690px; }

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  padding: 88px 0 62px;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  width: 132px;
  height: 74px;
  pointer-events: none;
  background:
    linear-gradient(var(--line), var(--line)) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, var(--line), var(--line)) 0 0 / 2px 100% no-repeat,
    repeating-linear-gradient(90deg, var(--butter) 0 18px, var(--peach) 18px 36px, var(--sky) 36px 54px);
  border: 2px solid var(--line);
  border-radius: 999px 999px 8px 8px;
  box-shadow: 6px 6px 0 rgba(23, 48, 43, .14);
  opacity: .7;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .76fr);
  gap: 52px;
  align-items: center;
}

.hero-copy .lead { margin-bottom: 1.65rem; }

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .85rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.1rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 5px 5px 0 rgba(23, 48, 43, .18), 0 12px 24px rgba(23, 48, 43, .08);
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 rgba(23, 48, 43, .18), 0 16px 28px rgba(23, 48, 43, .10);
}

.button.primary {
  color: var(--ink);
  background: var(--butter);
}

.button.secondary {
  color: var(--ink);
  background: var(--sky);
}

.button.dark-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 253, 246, .58);
  box-shadow: 5px 5px 0 rgba(255, 253, 246, .12);
}

.button.small {
  min-height: 40px;
  padding: .62rem .9rem;
  font-size: .9rem;
}

.hero-panel,
.aside-box,
.path-switcher,
.card,
.form-card,
.thank-you-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
  transform: rotate(1deg);
}

.panel-top {
  padding: 1.35rem;
  background:
    repeating-linear-gradient(90deg, rgba(23, 48, 43, .075) 0 1px, transparent 1px 15px),
    var(--peach);
  border-bottom: 2px solid var(--line);
}

.panel-top strong {
  display: block;
  color: var(--ink-strong);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.panel-body { padding: 1.35rem; }

.metric-list { display: grid; gap: .85rem; }

.metric {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .8rem;
  align-items: start;
}

.metric-icon,
.number,
.process-row b {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--butter);
  border: 2px solid var(--line);
  border-radius: 12px;
  font-weight: 950;
  box-shadow: 3px 3px 0 rgba(23, 48, 43, .14);
}

.metric-icon {
  width: 42px;
  height: 42px;
}

.metric p {
  margin: .12rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .66rem;
  color: var(--ink);
  background: rgba(255, 253, 246, .76);
  border: 2px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(23, 48, 43, .12);
  font-size: .82rem;
  font-weight: 850;
}

.dark .badge {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 253, 246, .35);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 1.35rem;
}

.card:nth-child(4n+1) { background: var(--white); }
.card:nth-child(4n+2) { background: #effbd8; }
.card:nth-child(4n+3) { background: #fff2bb; }
.card:nth-child(4n+4) { background: #e2f5f8; }

.card.flat {
  background: rgba(255, 253, 246, .78);
  box-shadow: 4px 4px 0 rgba(23, 48, 43, .10);
}

.card.dark-card {
  color: var(--white);
  background: rgba(255, 253, 246, .11);
  border-color: rgba(255, 253, 246, .45);
  box-shadow: 6px 6px 0 rgba(255, 253, 246, .10);
}

.card p:last-child { margin-bottom: 0; }

.card-link {
  display: inline-flex;
  margin-top: .65rem;
  color: var(--green-2);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.dark .card-link { color: var(--butter); }

.number {
  width: 38px;
  height: 38px;
  margin-bottom: .9rem;
  background: var(--sky);
}

.dark-card .number {
  color: var(--ink);
  background: var(--butter);
}

.unit-tag {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .35rem .58rem;
  color: var(--ink);
  background: var(--tomato);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  box-shadow: 2px 2px 0 rgba(23, 48, 43, .13);
}

.dark-card .unit-tag {
  color: var(--ink);
  background: var(--butter);
  border-color: rgba(255, 253, 246, .72);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.audience-card {
  padding: 1rem;
  background: rgba(255, 253, 246, .76);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 rgba(23, 48, 43, .10);
}

.audience-card strong {
  display: block;
  margin-bottom: .35rem;
}

.audience-card span {
  color: var(--muted);
  font-size: .93rem;
}

.path-switcher {
  padding: .75rem;
  background: #fff5c6;
}

.switch-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-bottom: .75rem;
}

.switch-buttons button {
  min-height: 48px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0 rgba(23, 48, 43, .12);
  cursor: pointer;
  font-weight: 950;
}

.switch-buttons button.active {
  background: var(--green-2);
  color: var(--white);
}

.audience-panel {
  display: none;
  padding: 1.05rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}

.audience-panel.active { display: block; }

.audience-panel ul {
  margin: .65rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sequence-step {
  padding: 1.35rem;
  border-right: 2px solid var(--line);
}

.sequence-step:nth-child(2) { background: #effbd8; }
.sequence-step:nth-child(3) { background: #fff2bb; }
.sequence-step:nth-child(4) { background: #e2f5f8; }
.sequence-step:last-child { border-right: 0; }

.sequence-step small {
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sequence-step h3 { margin-top: .5rem; }

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.pill-list li {
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 rgba(23, 48, 43, .11);
  padding: .45rem .68rem;
  font-weight: 850;
}

.pill-list li:nth-child(3n+1) { background: var(--mint); }
.pill-list li:nth-child(3n+2) { background: var(--butter); }
.pill-list li:nth-child(3n+3) { background: var(--peach); }

.check-list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  color: #33453f;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .33rem;
  width: 1rem;
  height: 1rem;
  background: var(--leaf);
  border: 2px solid var(--line);
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(23, 48, 43, .12);
}

.dark .check-list li { color: rgba(255, 253, 246, .86); }

.dark .check-list li::before { background: var(--butter); }

.page-hero {
  padding: 72px 0 52px;
  background:
    repeating-linear-gradient(135deg, rgba(23, 48, 43, .07) 0 1px, transparent 1px 20px),
    var(--sky);
  border-bottom: 2px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
  gap: 44px;
  align-items: end;
}

.page-hero h1 { font-size: 4.65rem; }

.aside-box {
  padding: 1.25rem;
  background: var(--white);
  transform: rotate(-1deg);
}

.aside-box dl {
  display: grid;
  gap: .85rem;
  margin: 0;
}

.aside-box div {
  display: grid;
  gap: .12rem;
  padding-bottom: .85rem;
  border-bottom: 2px dashed rgba(23, 48, 43, .18);
}

.aside-box div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.aside-box dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aside-box dd {
  margin: 0;
  font-weight: 900;
}

.process {
  display: grid;
  gap: 14px;
}

.process-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 5px 5px 0 rgba(23, 48, 43, .12);
}

.process-row:nth-child(2n) { background: #effbd8; }

.process-row b {
  width: 42px;
  height: 42px;
  background: var(--butter);
}

.process-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 2.4rem;
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 246, .06) 0 1px, transparent 1px 18px),
    var(--green-2);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 110px;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--butter) 0 18px, var(--peach) 18px 36px, var(--sky) 36px 54px);
  border: 2px solid rgba(255, 253, 246, .48);
  border-radius: 999px;
  opacity: .72;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 { font-size: 3rem; }

.cta-band p { color: rgba(255, 253, 246, .78); }

.form-card {
  padding: 1.3rem;
  background: var(--white);
}

.dark .form-card,
.cta-band .form-card { color: var(--ink); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

.form-full { grid-column: 1 / -1; }

label {
  display: block;
  margin-bottom: .35rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fffefa;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  padding: .85rem .9rem;
  box-shadow: inset 0 -2px 0 rgba(23, 48, 43, .06);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(119, 201, 141, .28);
}

textarea {
  min-height: 122px;
  resize: vertical;
}

.bot-field { display: none; }

.form-note {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .86rem;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 253, 246, .80);
  background: var(--ink-strong);
  border-top: 2px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: .65rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: .35rem;
}

.footer-links a:hover { color: var(--butter); }

.footer-brand {
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.source-note {
  margin-top: 1.2rem;
  color: rgba(255, 253, 246, .58);
  font-size: .82rem;
}

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.thank-you-card {
  max-width: 660px;
  padding: 3rem;
}

@media (max-width: 980px) {
  h1 { font-size: 4.1rem; }
  h2 { font-size: 2.8rem; }
  .page-hero h1 { font-size: 3.7rem; }
  .hero-grid,
  .page-hero-grid,
  .product-grid,
  .cta-band { grid-template-columns: 1fr; }
  .grid-3,
  .grid-4,
  .audience-strip,
  .sequence { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sequence-step { border-right: 0; border-bottom: 2px solid var(--line); }
  .sequence-step:nth-child(odd) { border-right: 2px solid var(--line); }
  .sequence-step:nth-last-child(-n+2) { border-bottom: 0; }
  .switch-buttons { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero::after { display: none; }
  .hero-panel,
  .aside-box { transform: none; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 68px; }
  .mobile-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 82px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  body.menu-open .nav { display: flex; }
  .nav a { border-radius: var(--radius-sm); }
  .section { padding: 60px 0; }
  .hero { padding: 58px 0 44px; }
  .page-hero { padding: 52px 0 42px; }
  h1,
  .page-hero h1 { font-size: 3rem; }
  h2,
  .cta-band h2 { font-size: 2.25rem; }
  .lead { font-size: 1.06rem; }
  .grid-2,
  .grid-3,
  .grid-4,
  .audience-strip,
  .sequence,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .sequence-step,
  .sequence-step:nth-child(odd) {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }
  .sequence-step:last-child { border-bottom: 0; }
  .form-full { grid-column: auto; }
  .brand-sub { display: none; }
  .cta-band {
    padding: 1.35rem;
    box-shadow: 6px 6px 0 rgba(23, 48, 43, .15);
  }
  .cta-band::after { display: none; }
  .button {
    width: 100%;
    min-height: 50px;
  }
  .actions { align-items: stretch; }
}

@media (max-width: 420px) {
  .brand { font-size: 1.06rem; }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  h1,
  .page-hero h1 { font-size: 2.55rem; }
  h2,
  .cta-band h2 { font-size: 2rem; }
  .switch-buttons { grid-template-columns: 1fr; }
  .hero-panel,
  .aside-box,
  .path-switcher,
  .card,
  .form-card,
  .thank-you-card {
    box-shadow: 5px 5px 0 rgba(23, 48, 43, .13);
  }
}
