/* ════════════════════════════════════════════════
   ROLEPLAY — Public Site
   Design tokens rooted in the product's world:
   career exploration, warm paper, natural light,
   the threshold between college and a career.
   ════════════════════════════════════════════════ */


/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--page);
  color: var(--ink);
  line-height: 1.6;
}

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

ul, ol {
  list-style: none;
}


/* ── TOKENS ── */
:root {
  /* The page — warm paper, not sterile white */
  --page:       #faf9f7;
  --page-warm:  #f5f3ef;
  --page-deep:  #eeece7;

  /* Ink — deep charcoal, not black */
  --ink:        #1a1a1a;
  --ink-soft:   #4a4a4a;
  --ink-muted:  #8a8a8a;
  --ink-faint:  #b5b5b5;

  /* Accent — terracotta, warmth and energy */
  --clay:       #c45d3e;
  --clay-deep:  #a84a30;
  --clay-light: #e8d5cf;
  --clay-wash:  #f5ebe6;

  /* Sage — growth, calm, secondary */
  --sage:       #6b8f71;
  --sage-light: #e8f0e9;
  --sage-wash:  #f2f6f3;

  /* Warm gold — scores, highlights */
  --gold:       #c9a84c;
  --gold-light: #f5f0e0;

  /* Structure — subtle borders */
  --line:       #e5e3de;
  --line-soft:  #eeede9;

  /* Typography */
  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'DM Sans', -apple-system, sans-serif;
  --mono:   'DM Mono', monospace;

  /* Spacing — 8px base */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;
  --sp-20: 160px;

  /* Depth — soft, warm shadows */
  --shadow-sm:  0 1px 2px rgba(26, 26, 26, 0.04), 0 1px 3px rgba(26, 26, 26, 0.06);
  --shadow-md:  0 2px 4px rgba(26, 26, 26, 0.04), 0 4px 12px rgba(26, 26, 26, 0.08);
  --shadow-lg:  0 4px 8px rgba(26, 26, 26, 0.04), 0 8px 24px rgba(26, 26, 26, 0.10);
  --shadow-xl:  0 8px 16px rgba(26, 26, 26, 0.04), 0 16px 40px rgba(26, 26, 26, 0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}


/* ── TYPOGRAPHY ── */
.hero__heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__heading em {
  font-style: italic;
  color: var(--clay);
}

.section__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.final__heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.step__title,
.role-group__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
}

.section__subheading,
.section__body,
.hero__body,
.final__body {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}


/* ── OVERLINES ── */
.hero__overline,
.section__overline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-2);
}


/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.btn--fill {
  background: var(--clay);
  color: #fff;
}

.btn--fill:hover {
  background: var(--clay-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--ink-muted);
}

.btn--bare {
  background: transparent;
  color: var(--ink-soft);
  padding-left: 0;
}

.btn--bare:hover {
  color: var(--clay);
}

.btn--lg {
  padding: var(--sp-2) var(--sp-5);
  font-size: 1rem;
}


/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.nav__logo-mark {
  color: var(--clay);
  font-size: 1.3rem;
}

.nav__links {
  display: flex;
  gap: var(--sp-4);
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__login {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav__login:hover {
  color: var(--ink);
}

.nav__start {
  font-size: 0.85rem;
  font-weight: 500;
  padding: var(--sp-1) var(--sp-2);
  background: var(--ink);
  color: var(--page);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav__start:hover {
  background: var(--ink-soft);
}


/* ── HERO ── */
.hero {
  padding-top: var(--sp-16);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle warm gradient in hero */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--clay-wash) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage-wash) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__text {
  max-width: 540px;
}

.hero__heading {
  margin-bottom: var(--sp-3);
}

.hero__body {
  margin-bottom: var(--sp-4);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}


/* ── ROLE CARD — Signature Element ── */
.hero__preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.role-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.role-card--hero {
  width: 380px;
  z-index: 2;
}

.role-card--hero:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.role-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
}

.role-card__badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  background: var(--clay-wash);
  padding: 4px 10px;
  border-radius: 100px;
}

.badge--finance {
  color: var(--sage);
  background: var(--sage-light);
}

.role-card__level {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.role-card__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.role-card__title--sm {
  font-size: 1.2rem;
}

.role-card__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.role-card__meta {
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}

.role-card__tag {
  font-size: 0.75rem;
  color: var(--ink-muted);
  background: var(--page-warm);
  padding: 4px 10px;
  border-radius: 100px;
}

.role-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clay);
}

.role-card__arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.role-card:hover .role-card__arrow {
  transform: translateX(3px);
}

/* Floating secondary card */
.role-card--float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 260px;
  padding: var(--sp-3);
  z-index: 3;
  box-shadow: var(--shadow-md);
  opacity: 0.9;
}

.role-card--float .role-card__top {
  margin-bottom: var(--sp-1);
}

.role-card__footer--sm {
  font-size: 0.8rem;
  padding-top: var(--sp-1);
  margin-top: var(--sp-1);
  border-top: 1px solid var(--line-soft);
}


/* ── PROOF BAR ── */
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--page-warm);
}

.proof__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.proof__stat {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
}

.proof__number {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
}

.proof__label {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.proof__divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}


/* ── SECTIONS ── */
.section {
  padding: var(--sp-16) 0;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-10);
}

.section__subheading {
  margin-top: var(--sp-2);
}


/* ── STEPS (How It Works) ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: var(--sp-4);
  align-items: start;
}

.step__number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--clay-light);
  line-height: 1;
  text-align: right;
}

.step__title {
  margin-bottom: var(--sp-1);
  grid-column: 2;
}

.step__body {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  grid-column: 2;
  margin-bottom: var(--sp-3);
}

.step__visual {
  grid-column: 3;
}

/* Step mockups */
.step__mockup {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  box-shadow: var(--shadow-sm);
}

.step__mockup--roles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
}

.mockup-pill {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: var(--page-warm);
  border-radius: 100px;
  color: var(--ink-soft);
}

.mockup-pill--ghost {
  border: 1px dashed var(--line);
  background: transparent;
  color: var(--ink-muted);
}

/* Task mockup */
.step__mockup--task {
  padding: var(--sp-2);
}

.task-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--line-soft);
}

.task-mockup__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
}

.task-mockup__timer {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.task-mockup__prompt {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.task-mockup__submit {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  background: var(--clay);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Debrief mockup */
.step__mockup--debrief {
  padding: var(--sp-3);
}

.debrief__score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--sp-3);
}

.debrief__score-value {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--clay);
}

.debrief__score-max {
  font-size: 1rem;
  color: var(--ink-muted);
}

.debrief__bars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.debrief__bar {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--sp-1);
  align-items: center;
}

.debrief__bar-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.debrief__bar-track {
  height: 6px;
  background: var(--page-deep);
  border-radius: 100px;
  overflow: hidden;
}

.debrief__bar-fill {
  height: 100%;
  background: var(--sage);
  border-radius: 100px;
}


/* ── ROLE GRID ── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.role-group__title {
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 2px solid var(--clay-light);
}

.role-group__cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.role-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-1) 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.role-mini:hover {
  color: var(--clay);
}

.role-mini__arrow {
  color: var(--ink-faint);
  transition: all 0.2s;
}

.role-mini:hover .role-mini__arrow {
  color: var(--clay);
  transform: translateX(2px);
}

.role-grid__cta {
  text-align: center;
}

.role-grid__cta p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: var(--sp-1);
}


/* ── CUSTOM JD ── */
.section--custom {
  background: var(--page-warm);
}

.custom__text {
  max-width: 480px;
}

.custom__steps {
  margin-top: var(--sp-3);
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.custom__steps li {
  counter-increment: step;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: var(--sp-4);
  position: relative;
}

.custom__steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--clay);
}

/* Paste mockup */
.paste-mockup {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.paste-mockup__header {
  padding: var(--sp-2) var(--sp-3);
  background: var(--page-warm);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.paste-mockup__body {
  padding: var(--sp-3);
  min-height: 160px;
}

.paste-mockup__placeholder p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.paste-mockup__cursor {
  display: inline;
  color: var(--clay);
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.paste-mockup__footer {
  padding: var(--sp-2) var(--sp-3);
  border-top: 1px solid var(--line-soft);
}

.paste-mockup__btn {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: var(--clay);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-block;
}


/* ── EMAIL SECTION ── */
.email-mockup {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 440px;
}

.email-mockup__header {
  padding: var(--sp-2) var(--sp-3);
  background: var(--page-warm);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-mockup__from {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.email-mockup__subject {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.email-mockup__body {
  padding: var(--sp-3);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.email-mockup__body p {
  margin-bottom: var(--sp-1);
}

.email-mockup__signoff {
  color: var(--ink-muted);
  font-style: italic;
  margin-top: var(--sp-2);
}

.email__text {
  max-width: 480px;
}

.email__features {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.email__features li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: var(--sp-2);
  position: relative;
}

.email__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clay);
}


/* ── PRICING ── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  max-width: 960px;
  margin: 0 auto;
}

.pricing__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing__card:hover {
  box-shadow: var(--shadow-md);
}

.pricing__card--featured {
  border-color: var(--clay);
  box-shadow: var(--shadow-md);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  right: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--clay);
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing__tier {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.pricing__price {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.pricing__price span {
  font-size: 1rem;
  color: var(--ink-muted);
  font-family: var(--sans);
}

.pricing__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}

.pricing__list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: var(--sp-2);
  position: relative;
}

.pricing__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

.pricing__card .btn {
  width: 100%;
}


/* ── FINAL CTA ── */
.section--final {
  background: var(--page-warm);
  border-top: 1px solid var(--line);
}

.final {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final__heading {
  margin-bottom: var(--sp-2);
}

.final__body {
  margin-bottom: var(--sp-4);
}

.final__note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: var(--sp-2);
}


/* ── FOOTER ── */
.footer {
  padding: var(--sp-8) 0 var(--sp-4);
  border-top: 1px solid var(--line);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-8);
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: var(--sp-1);
}

.footer__cols {
  display: flex;
  gap: var(--sp-8);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-1);
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--clay);
}


/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__body {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__preview {
    min-height: 300px;
  }

  .role-card--hero {
    width: 320px;
  }

  .role-card--float {
    display: none;
  }

  .step {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  .step__number {
    text-align: left;
    font-size: 1.5rem;
  }

  .step__title,
  .step__body {
    grid-column: 1;
  }

  .step__visual {
    grid-column: 1;
  }

  .role-grid,
  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .section__inner--split {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .custom__text,
  .email__text {
    max-width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .footer__cols {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .nav__links {
    display: none;
  }

  .proof__inner {
    flex-direction: column;
    gap: var(--sp-2);
  }

  .proof__divider {
    display: none;
  }
}
