@font-face {
  font-family: "Asap Expanded";
  src: url("assets/fonts/AsapExpanded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("assets/fonts/Montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink-950: #05070d;
  --ink-900: #0a1020;
  --ink-850: #101827;
  --ink-800: #172033;
  --primary-700: #1737c9;
  --primary-600: #2557ff;
  --primary-500: #3b6cff;
  --teal: #18b7a6;
  --gold: #f2b84b;
  --paper: #f7faff;
  --paper-blue: #eaf1ff;
  --border: #d9e2f2;
  --text: #f8fafc;
  --muted: #b8c3d7;
  --dark-text: #101827;
  --soft-text: #526071;
  --white: #ffffff;
  --radius: 8px;
  --container: 1180px;
  --shadow-primary: 0 20px 40px -18px rgba(37, 87, 255, 0.65);
  --shadow-card: 0 18px 50px -32px rgba(5, 7, 13, 0.55);
  --font-display: "Asap Expanded", "Arial Black", sans-serif;
  --font-body: "Montserrat Local", Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--paper);
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

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

.section-dark {
  color: var(--text);
  background-color: var(--ink-950);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px 32px;
  color: var(--text);
  background: rgba(5, 7, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  color: var(--text);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-600), var(--teal));
  box-shadow: var(--shadow-primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
}

.header-cta {
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
}

.header-cta path,
.button path,
.icon-box path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  padding: 0 24px;
  border: 0;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--primary-700), var(--primary-500));
  box-shadow: var(--shadow-primary);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost {
  color: var(--primary-700);
  background: var(--paper-blue);
  border: 1px solid rgba(37, 87, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(to right, rgba(59, 108, 255, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 108, 255, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 68% 40%, rgba(24, 183, 166, 0.18), transparent 28%),
    radial-gradient(circle at 50% 15%, rgba(37, 87, 255, 0.22), transparent 34%),
    var(--ink-950);
  background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%, 100% 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 760px;
  max-width: 690px;
  padding: 96px 0 130px;
}

.hero .container.hero-content {
  margin-left: max(24px, calc((100% - var(--container)) / 2));
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: 3.85rem;
  line-height: 1.02;
}

h2 {
  font-size: 2.75rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 680px);
  margin: 44px 0 0;
}

.hero-metrics div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.64);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.hero-metrics dd {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.study-card {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  width: 315px;
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(23, 32, 51, 0.96), rgba(10, 16, 32, 0.92));
  box-shadow: 0 30px 90px -45px rgba(0, 0, 0, 0.92);
}

.study-card span,
.flashcard-front span,
.flashcard-back span,
.package-topline span {
  display: inline-flex;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.study-card strong {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.12;
}

.study-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.card-a {
  top: 150px;
  transform: rotate(7deg);
}

.card-b {
  top: 315px;
  right: max(64px, calc((100vw - var(--container)) / 2 + 130px));
  transform: rotate(-8deg);
}

.card-c {
  top: 500px;
  transform: rotate(4deg);
}

.benefits,
.showcase,
.testimonials,
.about,
.faq,
.package-list {
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading p,
.showcase-copy p,
.packages-teaser p,
.about-copy p,
.page-hero-content p,
.package-card p,
.faq-list p {
  color: var(--soft-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-heading h2,
.showcase-copy h2,
.about-copy h2,
.faq-layout h2 {
  color: var(--dark-text);
  margin-bottom: 18px;
}

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

.benefit-card,
.package-card,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  min-height: 280px;
  padding: 28px;
}

.benefit-card h3 {
  margin-top: 24px;
  color: var(--dark-text);
}

.benefit-card p {
  margin-top: 12px;
  color: var(--soft-text);
  line-height: 1.7;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--primary-600);
  background: var(--paper-blue);
}

.icon-box.teal {
  color: var(--teal);
  background: rgba(24, 183, 166, 0.12);
}

.icon-box.gold {
  color: #9a6a10;
  background: rgba(242, 184, 75, 0.18);
}

.icon-box svg {
  width: 25px;
  height: 25px;
}

.showcase-layout,
.about-layout,
.faq-layout,
.split-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.showcase {
  overflow: hidden;
}

.showcase-copy {
  max-width: 560px;
}

.check-list,
.package-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.package-card li {
  position: relative;
  padding-left: 28px;
  color: var(--soft-text);
  line-height: 1.55;
}

.check-list li::before,
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.anki-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 620px;
  overflow: hidden;
  padding: 12px;
  border-radius: var(--radius);
  background:
    linear-gradient(to right, rgba(59, 108, 255, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 108, 255, 0.09) 1px, transparent 1px),
    var(--ink-900);
  background-size: 28px 28px;
  border: 1px solid rgba(37, 87, 255, 0.18);
  box-shadow: 0 26px 80px -42px rgba(37, 87, 255, 0.9);
}

.anki-showcase::before,
.anki-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 110px;
  pointer-events: none;
}

.anki-showcase::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-900), rgba(10, 16, 32, 0));
}

.anki-showcase::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-900), rgba(10, 16, 32, 0));
}

.anki-column {
  overflow: hidden;
}

.anki-track {
  display: grid;
  gap: 16px;
  animation: anki-scroll 24s linear infinite;
}

.anki-column.reverse .anki-track {
  animation-direction: reverse;
}

.anki-showcase:hover .anki-track {
  animation-play-state: paused;
}

.anki-track img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--white);
  box-shadow: 0 18px 42px -28px rgba(0, 0, 0, 0.8);
}

@keyframes anki-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 8px));
  }
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 18px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(248, 250, 253, 0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(248, 250, 253, 0) 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-slide 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track figure {
  margin: 0;
}

.testimonial-track figure {
  flex: 0 0 300px;
}

.testimonial-track img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f0f4fb;
  box-shadow: var(--shadow-card);
}

@keyframes testimonial-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.packages-teaser {
  padding: 86px 0;
  background:
    linear-gradient(to right, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    var(--ink-950);
  background-size: 34px 34px;
}

.packages-teaser h2,
.page-hero-content h1 {
  color: var(--white);
}

.packages-teaser p,
.page-hero-content p {
  max-width: 680px;
  color: var(--muted);
}

.about-media {
  display: flex;
  justify-content: center;
}

.about-media img {
  width: min(100%, 440px);
  max-height: 680px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  background: var(--paper-blue);
  box-shadow: 0 30px 80px -52px rgba(5, 7, 13, 0.8);
}

.about-copy {
  max-width: 620px;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy strong {
  color: var(--primary-700);
}

.about-proof {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}

.about-proof span {
  display: block;
  color: var(--primary-700);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about-proof ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.about-proof li {
  position: relative;
  padding-left: 18px;
  color: var(--dark-text);
  font-weight: 800;
}

.about-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.about-origin {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

.faq-layout {
  align-items: start;
  grid-template-columns: 0.45fr 1fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--dark-text);
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.site-footer {
  padding: 30px 0;
  color: var(--text);
  background: var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.instagram-link {
  color: var(--muted);
  font-weight: 800;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  color: var(--white);
}

.packages-hero {
  padding: 118px 0 86px;
  background:
    linear-gradient(to right, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(24, 183, 166, 0.2), transparent 32%),
    var(--ink-950);
  background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%;
}

.page-hero-content {
  max-width: 820px;
}

.page-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.08;
}

.page-hero-content p {
  margin-top: 22px;
  font-size: 1.1rem;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
}

.package-card.featured {
  color: var(--text);
  background:
    linear-gradient(to right, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    var(--ink-900);
  background-size: 28px 28px;
  border-color: rgba(37, 87, 255, 0.36);
}

.package-card.featured p,
.package-card.featured li {
  color: var(--muted);
}

.package-card h2 {
  margin-top: 22px;
  color: inherit;
  font-size: 1.55rem;
  line-height: 1.15;
}

.package-card p {
  margin-top: 16px;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
}

.package-topline strong {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary-600);
  font-size: 0.82rem;
}

body.modal-open {
  overflow: hidden;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(12px);
}

.waitlist-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 30px;
  border: 1px solid rgba(37, 87, 255, 0.32);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(to right, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 108, 255, 0.12) 1px, transparent 1px),
    var(--ink-900);
  background-size: 28px 28px;
  box-shadow: 0 30px 90px -42px rgba(5, 7, 13, 0.95);
}

.waitlist-panel h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.12;
}

.waitlist-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.waitlist-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.waitlist-close svg {
  width: 18px;
  height: 18px;
}

.waitlist-close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.waitlist-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(24, 183, 166, 0.72);
  box-shadow: 0 0 0 3px rgba(24, 183, 166, 0.14);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.waitlist-status {
  min-height: 22px;
  color: var(--teal) !important;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .hero-content {
    max-width: 650px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .study-card {
    opacity: 0.28;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 44px;
  }

  .hero .container.hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  h2,
  .page-hero-content h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero-copy,
  .section-heading p,
  .showcase-copy p,
  .packages-teaser p,
  .about-copy p,
  .page-hero-content p {
    font-size: 1rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 12px 10px;
  }

  .hero-metrics dt {
    font-size: 0.92rem;
  }

  .hero-metrics dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .study-card {
    display: none;
  }

  .benefits,
  .showcase,
  .testimonials,
  .about,
  .faq,
  .package-list {
    padding: 68px 0;
  }

  .benefit-grid,
  .showcase-layout,
  .about-layout,
  .faq-layout,
  .split-band,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .anki-showcase {
    grid-template-columns: 1fr;
    height: 540px;
  }

  .anki-column.reverse {
    display: none;
  }

  .testimonial-track figure {
    flex-basis: 280px;
  }

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

@media (max-width: 520px) {
  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .benefit-card,
  .package-card,
  .faq-list details {
    padding: 20px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 34px;
  }

  .testimonial-track figure {
    flex-basis: 270px;
  }

  .testimonial-track img {
    height: 520px;
  }

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