@layer reset, base, components, pages, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

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

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

  a {
    color: inherit;
  }
}

@layer base {
  :root {
    --ink: #24162d;
    --ink-soft: #5f5265;
    --paper: #fffafc;
    --white: #ffffff;
    --line: #eadfe8;
    --violet: #6f50ae;
    --violet-deep: #4d337d;
    --magenta: #cd317e;
    --coral: #f14b6f;
    --rose: #f16583;
    --pink-soft: #ffe4ed;
    --plum: #30163f;
    --shadow: 0 30px 80px rgb(59 25 73 / 12%);
    --shell: min(1180px, calc(100% - 48px));
    --radius-lg: 38px;
    --radius-md: 24px;
  }

  body {
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3 {
    font-weight: 750;
    letter-spacing: -.045em;
    line-height: .98;
  }

  h1 {
    font-size: clamp(3.65rem, 7.7vw, 7rem);
  }

  h2 {
    font-size: clamp(2.75rem, 5.6vw, 5rem);
  }

  h3 {
    font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  }

  em {
    color: var(--coral);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
  }

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

  ::selection {
    background: var(--pink-soft);
    color: var(--plum);
  }
}

@layer components {
  .shell {
    width: var(--shell);
    margin-inline: auto;
  }

  .skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    transform: translateY(-160%);
  }

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

  .site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid rgb(234 223 232 / 65%);
    background: rgb(255 250 252 / 84%);
    backdrop-filter: blur(18px);
  }

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

  .brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 780;
    letter-spacing: -.03em;
    text-decoration: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
    margin-right: 9px;
    border-radius: 12px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3.2vw, 42px);
    font-size: .9rem;
    font-weight: 650;
  }

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

  .site-nav a:not(.nav-contact):hover {
    color: var(--coral);
  }

  .nav-contact {
    padding: 10px 18px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .nav-contact:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-2px);
  }

  .eyebrow,
  .section-kicker {
    color: var(--magenta);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
  }

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

  .eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--coral);
  }

  .button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border-radius: 999px;
    font-size: .91rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .button:hover {
    transform: translateY(-3px);
  }

  .button-primary {
    background: var(--ink);
    box-shadow: 0 14px 34px rgb(36 22 45 / 18%);
    color: white;
  }

  .button-primary:hover {
    box-shadow: 0 18px 42px rgb(36 22 45 / 28%);
  }

  .button-light {
    background: white;
    color: var(--plum);
  }

  .text-link {
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 650;
    text-decoration-color: var(--line);
    text-underline-offset: 5px;
  }

  .text-link:hover {
    color: var(--coral);
  }

  .site-footer {
    padding: 80px 0 28px;
    background: #211529;
    color: white;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: clamp(50px, 9vw, 120px);
  }

  .footer-brand .brand {
    color: white;
  }

  .footer-brand > p {
    margin-top: 12px;
    color: #bcb0c0;
  }

  .footer-grid nav,
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-grid nav p,
  .footer-contact p {
    margin-bottom: 8px;
    color: #8e7d94;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .footer-grid nav a,
  .footer-contact a {
    color: white;
    font-size: .9rem;
    text-decoration-color: #65566a;
    text-underline-offset: 4px;
  }

  .footer-grid nav a:hover,
  .footer-contact a:hover {
    color: #ff8ba3;
  }

  .footer-contact span {
    color: #bcb0c0;
    font-size: .9rem;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid #403245;
    color: #8e7d94;
    font-size: .77rem;
  }
}

@layer pages {
  .hero {
    display: grid;
    min-height: calc(100vh - 82px);
    min-height: calc(100svh - 82px);
    grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr);
    align-items: center;
    gap: clamp(30px, 5vw, 80px);
    padding-block: 80px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    max-width: 760px;
    margin-top: 20px;
  }

  .hero h1 em {
    display: block;
  }

  .hero-lede {
    max-width: 620px;
    margin-top: 30px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 36px;
  }

  .logo-stage {
    position: relative;
    justify-self: end;
    width: min(100%, 540px);
  }

  .logo-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    animation: settle-in .9s cubic-bezier(.16, 1, .3, 1) both;
  }

  .logo-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .logo-note {
    position: relative;
    z-index: 4;
    width: max-content;
    margin: -24px auto 0;
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    box-shadow: 0 10px 30px rgb(59 25 73 / 10%);
    color: var(--ink-soft);
    font-size: .75rem;
    font-weight: 650;
  }

  .logo-note span {
    margin-right: 5px;
    color: var(--coral);
  }

  .shape {
    position: absolute;
    z-index: 1;
    display: block;
  }

  .shape-one {
    top: -42px;
    right: -34px;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(45deg, #9162b8 0 11px, #7a4ba1 11px 22px);
    clip-path: polygon(0 0, 100% 25%, 30% 100%);
    animation: drift 6s ease-in-out infinite;
  }

  .shape-two {
    bottom: 18px;
    left: -64px;
    width: 128px;
    height: 112px;
    background-color: var(--magenta);
    background-image: radial-gradient(#ed4c98 2px, transparent 2px);
    background-size: 13px 13px;
    clip-path: polygon(0 24%, 100% 0, 72% 100%);
    animation: drift 7s ease-in-out -2s infinite;
  }

  .shape-three {
    right: -38px;
    bottom: 92px;
    width: 84px;
    height: 84px;
    background: var(--coral);
    clip-path: polygon(50% 0, 100% 100%, 0 75%);
  }

  .studio-section {
    padding: 130px 0;
    background: white;
  }

  .studio-grid {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) 1.2fr;
    gap: clamp(60px, 9vw, 135px);
  }

  .studio-grid h2 {
    margin-top: 18px;
  }

  .studio-copy > p {
    max-width: 690px;
    color: var(--ink-soft);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.55;
  }

  .principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 55px;
  }

  .principles article {
    min-height: 215px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
  }

  .principles article > span {
    color: var(--coral);
    font-size: .67rem;
    font-weight: 850;
    letter-spacing: .14em;
  }

  .principles h3 {
    margin-top: 36px;
    font-size: 1.14rem;
    letter-spacing: -.025em;
    line-height: 1.15;
  }

  .principles p {
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: .84rem;
    line-height: 1.5;
  }

  .work-section {
    padding-block: 130px;
  }

  .section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px);
    align-items: end;
    gap: 40px;
    margin-bottom: 55px;
  }

  .section-heading h2 {
    margin-top: 15px;
  }

  .section-heading > p {
    padding-bottom: 7px;
    color: var(--ink-soft);
    font-size: 1.05rem;
  }

  .weyt-card {
    display: grid;
    overflow: hidden;
    min-height: 660px;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    border-radius: var(--radius-lg);
    background: var(--plum);
    color: white;
  }

  .weyt-copy {
    position: relative;
    z-index: 3;
    align-self: center;
    padding: clamp(45px, 7vw, 90px);
  }

  .app-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbbdd1;
    font-size: .73rem;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 5px rgb(241 75 111 / 16%);
  }

  .weyt-copy h3 {
    margin-top: 24px;
    font-size: clamp(2.45rem, 4.2vw, 4.3rem);
    line-height: 1.02;
  }

  .weyt-copy > p:not(.app-label) {
    max-width: 530px;
    margin-top: 25px;
    color: #cbbdd1;
    font-size: .98rem;
  }

  .feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
  }

  .feature-list li {
    position: relative;
    padding-left: 18px;
    color: #f4edf6;
    font-size: .82rem;
  }

  .feature-list li::before {
    position: absolute;
    top: .72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    content: "";
    transform: translateY(-50%);
  }

  .play-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding: 11px 18px;
    border-radius: 13px;
    background: white;
    color: var(--ink);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .play-button:hover {
    box-shadow: 0 13px 32px rgb(0 0 0 / 25%);
    transform: translateY(-3px);
  }

  .play-button span {
    font-size: 1.12rem;
    font-weight: 750;
    line-height: 1.1;
  }

  .play-button small {
    display: block;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .11em;
  }

  .progress-visual {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    background:
      radial-gradient(circle at 72% 28%, rgb(245 101 131 / 55%), transparent 28%),
      linear-gradient(145deg, #6f50ae 0%, #a83d8e 48%, #f14b6f 100%);
  }

  .progress-visual::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgb(255 255 255 / 22%) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    content: "";
    mask-image: linear-gradient(120deg, transparent 10%, black 90%);
  }

  .visual-orbit {
    position: absolute;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 50%;
  }

  .orbit-one {
    top: -170px;
    right: -120px;
    width: 520px;
    height: 520px;
  }

  .orbit-two {
    right: -60px;
    bottom: -230px;
    width: 610px;
    height: 610px;
  }

  .metric-card {
    position: absolute;
    z-index: 2;
    border: 1px solid rgb(255 255 255 / 58%);
    background: rgb(255 255 255 / 91%);
    box-shadow: 0 26px 65px rgb(60 17 69 / 24%);
    color: var(--ink);
    backdrop-filter: blur(14px);
  }

  .metric-main {
    top: 17%;
    right: 8%;
    left: 8%;
    padding: clamp(24px, 3vw, 36px);
    border-radius: 27px;
    transform: rotate(-2deg);
  }

  .metric-topline {
    display: flex;
    justify-content: space-between;
    color: var(--ink-soft);
    font-size: .76rem;
  }

  .metric-topline strong {
    color: var(--magenta);
    font-weight: 750;
  }

  .metric-value {
    margin-top: 17px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 780;
    letter-spacing: -.06em;
    line-height: 1;
  }

  .metric-value small {
    color: var(--ink-soft);
    font-size: .3em;
    letter-spacing: -.02em;
  }

  .chart {
    overflow: visible;
    width: 100%;
    margin-top: 18px;
  }

  .chart-area {
    fill: url(#chart-fill);
  }

  .chart-line {
    fill: none;
    stroke: var(--coral);
    stroke-linecap: round;
    stroke-width: 5;
  }

  .chart circle {
    fill: white;
    stroke: var(--coral);
    stroke-width: 5;
  }

  .chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: -5px;
    color: #8d7d92;
    font-size: .68rem;
  }

  .metric-goal {
    top: 6%;
    right: 2%;
    display: flex;
    flex-direction: column;
    min-width: 148px;
    padding: 18px 20px;
    border-radius: 18px;
    transform: rotate(4deg);
  }

  .metric-goal span,
  .metric-goal small {
    color: var(--ink-soft);
    font-size: .66rem;
  }

  .metric-goal strong {
    font-size: 1.45rem;
    letter-spacing: -.05em;
  }

  .metric-streak {
    right: 11%;
    bottom: 7%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 18px;
    transform: rotate(2deg);
  }

  .metric-streak > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    background: var(--pink-soft);
    color: var(--coral);
  }

  .metric-streak strong,
  .metric-streak small {
    display: block;
  }

  .metric-streak strong {
    font-size: .83rem;
  }

  .metric-streak small {
    color: var(--ink-soft);
    font-size: .65rem;
  }

  .contact-section {
    padding: 130px 0;
    background: linear-gradient(135deg, var(--violet-deep), var(--plum) 55%, #67234f);
    color: white;
    text-align: center;
  }

  .contact-section .section-kicker {
    color: #ff8ba3;
  }

  .contact-section h2 {
    margin-top: 20px;
  }

  .contact-section .button {
    margin-top: 36px;
  }

  .legal-main {
    padding: 72px 0 120px;
  }

  .legal-hero,
  .legal-layout {
    max-width: 1000px;
  }

  .legal-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: .78rem;
  }

  .legal-breadcrumbs a {
    text-underline-offset: 3px;
  }

  .legal-hero h1 {
    max-width: 850px;
    font-size: clamp(3rem, 7vw, 6rem);
  }

  .legal-intro {
    max-width: 750px;
    margin-top: 25px;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  }

  .legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .legal-meta span {
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink-soft);
    font-size: .72rem;
    font-weight: 650;
  }

  .legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 680px);
    gap: 72px;
    margin-top: 75px;
  }

  .legal-toc {
    position: sticky;
    top: 112px;
    align-self: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
  }

  .legal-toc p {
    margin-bottom: 10px;
    color: var(--magenta);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .legal-toc a {
    display: block;
    padding: 5px 0;
    color: var(--ink-soft);
    font-size: .76rem;
    text-decoration: none;
  }

  .legal-toc a:hover {
    color: var(--coral);
  }

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

  .legal-content section + section {
    margin-top: 55px;
    padding-top: 55px;
    border-top: 1px solid var(--line);
  }

  .legal-content h2 {
    margin-bottom: 20px;
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    letter-spacing: -.035em;
    line-height: 1.12;
  }

  .legal-content h3 {
    margin: 30px 0 10px;
    font-size: 1.08rem;
    letter-spacing: -.015em;
    line-height: 1.25;
  }

  .legal-content p,
  .legal-content li {
    color: #594c5d;
    font-size: .94rem;
    line-height: 1.75;
  }

  .legal-content p + p {
    margin-top: 14px;
  }

  .legal-content ul {
    margin-top: 14px;
    padding-left: 20px;
  }

  .deletion-steps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
  }

  .deletion-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
  }

  .deletion-steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    background: var(--pink-soft);
    color: var(--magenta);
    font-size: .8rem;
    font-weight: 800;
  }

  .deletion-steps strong {
    display: block;
    margin-top: 2px;
  }

  .deletion-steps p {
    margin-top: 2px;
    font-size: .86rem;
    line-height: 1.55;
  }

  .deletion-button {
    margin-top: 24px;
    color: white !important;
  }

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

  .legal-content strong {
    color: var(--ink);
  }

  .legal-content a {
    color: var(--magenta);
    text-underline-offset: 3px;
  }

  .not-found {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: 70px;
    text-align: center;
  }

  .not-found img {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 28px;
  }

  .not-found h1 {
    max-width: 800px;
    margin-top: 16px;
    font-size: clamp(3rem, 8vw, 6rem);
  }

  .not-found > p:not(.section-kicker) {
    margin-top: 22px;
    color: var(--ink-soft);
    font-size: 1.08rem;
  }

  .not-found .button {
    margin-top: 30px;
  }

  .legal-callout {
    margin: 25px 0;
    padding: 20px 22px;
    border-left: 4px solid var(--coral);
    border-radius: 0 15px 15px 0;
    background: var(--pink-soft);
  }

  .legal-callout p {
    color: #4d344c;
  }
}

@layer utilities {
  @keyframes settle-in {
    from {
      opacity: 0;
      transform: translateY(24px) rotate(5deg) scale(.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotate(2deg) scale(1);
    }
  }

  @keyframes drift {
    0%,
    100% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-12px) rotate(4deg);
    }
  }

  @media (max-width: 980px) {
    .hero {
      grid-template-columns: 1fr 380px;
      gap: 20px;
    }

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

    .principles article {
      min-height: auto;
    }

    .principles h3 {
      margin-top: 18px;
    }

    .weyt-card {
      grid-template-columns: 1fr;
    }

    .progress-visual {
      min-height: 570px;
    }
  }

  @media (max-width: 760px) {
    :root {
      --shell: min(100% - 32px, 620px);
      --radius-lg: 28px;
    }

    .header-inner {
      min-height: 70px;
    }

    .site-nav > a:not(.nav-contact) {
      display: none;
    }

    .brand img {
      width: 43px;
      height: 43px;
    }

    .hero {
      min-height: auto;
      grid-template-columns: 1fr;
      padding-block: 68px 95px;
    }

    .hero h1 {
      margin-top: 17px;
    }

    .hero-lede {
      margin-top: 23px;
    }

    .hero-actions {
      align-items: flex-start;
      flex-direction: column;
      gap: 18px;
    }

    .logo-stage {
      width: min(88vw, 500px);
      margin: 52px auto 0;
    }

    .shape-one {
      right: -15px;
    }

    .shape-two {
      left: -22px;
    }

    .studio-section,
    .work-section,
    .contact-section {
      padding-block: 90px;
    }

    .studio-grid,
    .section-heading {
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .section-heading {
      gap: 20px;
    }

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

    .weyt-copy {
      padding: 50px 30px 58px;
    }

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

    .progress-visual {
      min-height: 500px;
    }

    .metric-main {
      top: 14%;
      right: 6%;
      left: 6%;
    }

    .metric-goal {
      right: 2%;
    }

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

    .footer-brand {
      grid-column: 1 / -1;
    }

    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }

    .legal-main {
      padding-top: 55px;
    }

    .legal-layout {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-top: 55px;
    }

    .legal-toc {
      position: static;
      columns: 2;
    }

    .legal-toc p {
      column-span: all;
    }
  }

  @media (max-width: 430px) {
    .brand span {
      font-size: .92rem;
    }

    .nav-contact {
      padding: 8px 13px;
      font-size: .78rem;
    }

    .progress-visual {
      min-height: 410px;
    }

    .metric-main {
      padding: 20px;
    }

    .metric-goal {
      min-width: 125px;
      padding: 13px 15px;
    }

    .metric-streak {
      right: 6%;
      bottom: 4%;
    }

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

    .footer-brand {
      grid-column: auto;
    }

    .legal-toc {
      columns: 1;
    }
  }

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

    *,
    *::before,
    *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: .01ms !important;
    }
  }
}
