/* Arrow Shift: Brain Puzzle — warm cream, soft cards, orange gradient CTAs (game-home inspired) */

:root {
  --cream: #fff9f0;
  --cream-alt: #fff9eb;
  --card: #ffffff;
  --ink: #4b3621;
  --ink-muted: #6b5344;
  --accent: #ff8c42;
  --accent-deep: #ff7e3d;
  --accent-soft: #ffa64d;
  --border-orange: rgba(255, 140, 66, 0.55);
  --shadow-card: 0 18px 40px rgba(75, 54, 33, 0.08);
  --shadow-card-hover: 0 22px 48px rgba(75, 54, 33, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --header-h: 4.5rem;
  --font: "Nunito", system-ui, sans-serif;
  --tone-blue: #4895ef;
  --tone-pink: #f497be;
  --tone-purple: #b794f4;
  --tone-red: #e85d44;
}

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

html {
  scroll-behavior: smooth;
}

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

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

#features,
#how,
#download {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  padding-top: var(--header-h);
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--card);
  color: var(--ink);
  border-radius: 10px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.skip-link:focus {
  left: 0.5rem;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 1.25rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: calc(100% - 2rem);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 1rem 0;
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 0.5rem;
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(75, 54, 33, 0.1);
}

.header-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 140, 66, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-scrolled .header-inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink);
}

.brand-mark {
  display: flex;
  flex-shrink: 0;
}

.brand-name {
  line-height: 1.1;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(75, 54, 33, 0.08);
  transition: box-shadow 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  color: var(--accent-deep);
  box-shadow: var(--shadow-card-hover);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

/* [hidden] alone is overridden by display:flex — must restate hidden + hide on desktop */
.mobile-nav {
  max-width: 1120px;
  margin: 0.6rem auto 0;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 140, 66, 0.2);
  box-shadow: var(--shadow-card);
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  color: var(--ink);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, #ff9d5c 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 126, 61, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(255, 126, 61, 0.45);
}

.btn-compact {
  padding: 0.6rem 1.15rem;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.25rem;
}

.btn-play {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 126, 61, 0.38);
  padding: 0.85rem 1.6rem;
}

.btn-play:hover {
  box-shadow: 0 16px 40px rgba(255, 126, 61, 0.48);
}

.btn-outline {
  background: var(--card);
  color: var(--accent-deep);
  border: 2px solid var(--border-orange);
  box-shadow: 0 4px 16px rgba(75, 54, 33, 0.06);
}

.btn-outline:hover {
  border-color: var(--accent-deep);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.25px;
}

.icon-left {
  margin-right: 0.1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-blobs::before,
.hero-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-blobs::before {
  width: 320px;
  height: 320px;
  background: #ffd8a8;
  top: -80px;
  right: -60px;
}

.hero-blobs::after {
  width: 260px;
  height: 260px;
  background: #c4e4ff;
  bottom: 10%;
  left: -80px;
}

.hero-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent-deep);
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.text-accent {
  color: var(--accent-deep);
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  font-weight: 600;
  max-width: 36rem;
}

@media (max-width: 767px) {
  .hero {
    padding: 2rem 0 2.75rem;
  }

  .hero-copy,
  .hero-lead {
    max-width: none;
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Layered hero cards: phone base + floating stat/info cards */
.hero-panel {
  width: 100%;
  min-width: 0;
}

.hero-panel-inner {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
  padding: 0.25rem 0.25rem 1rem;
}

@media (max-width: 767px) {
  .hero-panel-inner {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}

.stat-card {
  width: min(300px, calc(100% - 1rem));
  margin: -3.25rem auto 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 140, 66, 0.2);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 767px) {
  .stat-card {
    width: 100%;
    max-width: none;
    margin: 0.85rem auto 0;
  }
}

.float-card {
  display: none;
}

.float-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  background: #ffe5cf;
}

@media (min-width: 1024px) {
  .hero-panel-inner {
    width: min(470px, 100%);
    margin-left: auto;
    padding: 0.5rem 0 0.75rem;
  }

  .stat-card {
    position: absolute;
    top: 1.75rem;
    left: -1.35rem;
    width: min(230px, 48%);
    margin: 0;
    z-index: 3;
  }

  .float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 16px;
    color: var(--ink);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 4;
  }

  .float-card-top {
    top: 2rem;
    right: -0.7rem;
    padding: 0.3rem;
  }

  .float-card-bottom {
    left: -0.85rem;
    bottom: 2.3rem;
    padding: 0.3rem;
  }

  .float-card-right {
    right: -1.2rem;
    bottom: 5.9rem;
    padding: 0.3rem;
  }

  .float-card img {
    width: 92px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero-panel-inner {
    width: min(520px, 100%);
    margin-left: auto;
    padding: 0.5rem 0 0.75rem;
  }

  .stat-card {
    left: -1.8rem;
    top: 2.2rem;
    width: min(245px, 46%);
  }

  .float-card-top {
    right: -1.1rem;
    top: 2.4rem;
  }

  .float-card-bottom {
    left: -1.2rem;
    bottom: 2.6rem;
  }

  .float-card-right {
    right: -1.4rem;
    bottom: 6.5rem;
  }
}

.stat-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.stat-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent-deep);
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-deep);
  line-height: 1;
}

.stat-card-divider {
  height: 1px;
  background: rgba(75, 54, 33, 0.1);
  margin: 1rem 0;
}

.stat-card-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-sub-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}

.stat-sub-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}

.phone-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.phone-frame {
  position: relative;
  width: min(292px, 80vw);
  padding: 12px;
  background: linear-gradient(160deg, #fff 0%, var(--cream-alt) 100%);
  border-radius: 36px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(75, 54, 33, 0.06);
}

@media (max-width: 767px) {
  .phone-frame {
    width: 100%;
    max-width: 340px;
  }
}

@media (min-width: 1280px) {
  .phone-frame {
    width: min(300px, 42vw);
  }
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  opacity: 0.88;
  z-index: 2;
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: var(--cream-alt);
}

.phone-screen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 3rem 0 3.5rem;
}

@media (max-width: 767px) {
  .section {
    padding: 2.25rem 0 2.75rem;
  }
}

.section-tight {
  padding-top: 1rem;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

@media (max-width: 767px) {
  .section-head {
    max-width: none;
    margin-bottom: 1.25rem;
  }
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.section-sub {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 600;
}

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

@media (min-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.how-flow {
  display: grid;
  gap: 1rem;
}

.how-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 140, 66, 0.1);
  transition: box-shadow 0.2s ease;
}

.how-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.how-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe8d6, #ffd6b8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
}

.how-icon .icon,
.how-icon svg {
  width: 22px;
  height: 22px;
}

.how-text {
  margin: 0;
  font-weight: 600;
  color: var(--ink-muted);
}

.how-text strong {
  color: var(--ink);
}

.how-step {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffb27a, var(--accent-deep));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 0.55rem;
}

.how-gallery {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 140, 66, 0.16);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

@media (max-width: 767px) {
  .how-gallery {
    width: 100%;
    max-width: none;
  }
}

.how-gallery-head {
  margin-bottom: 0.85rem;
}

.how-gallery-title {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
}

.how-gallery-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.how-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(145px, 1fr);
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 140, 66, 0.35) transparent;
}

.how-phone {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  padding: 0.2rem;
  border: 1px solid rgba(75, 54, 33, 0.08);
  box-shadow: 0 8px 16px rgba(75, 54, 33, 0.08);
}

.how-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 11px;
}

@media (min-width: 1024px) {
  .how-gallery-track {
    grid-auto-columns: minmax(160px, 1fr);
  }
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .feature-grid {
    gap: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(75, 54, 33, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .feature-card:hover {
    transform: none;
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-icon .icon,
.feature-icon svg {
  width: 24px;
  height: 24px;
}

.tone-orange {
  background: linear-gradient(145deg, #ff9d5c, var(--accent-deep));
}

.tone-blue {
  background: linear-gradient(145deg, #6eb5ff, var(--tone-blue));
}

.tone-pink {
  background: linear-gradient(145deg, #ffb8d9, var(--tone-pink));
}

.tone-purple {
  background: linear-gradient(145deg, #d4c4ff, var(--tone-purple));
}

.feature-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.feature-desc {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Download */
.download {
  padding-bottom: 4rem;
}

.download-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 140, 66, 0.15);
  overflow: hidden;
}

@media (max-width: 767px) {
  .download-card {
    width: 100%;
  }
}

.download-inner {
  padding: 2.25rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .download-inner {
    padding: 2.75rem 2rem;
  }
}

.download-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.download-sub {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.download-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, var(--cream-alt) 0%, #fff5e8 100%);
  border-top: 1px solid rgba(255, 140, 66, 0.15);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

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

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(75, 54, 33, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  width: min(400px, 100% - 2rem);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 28px 80px rgba(75, 54, 33, 0.2);
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: #ffe8d6;
  color: var(--accent-deep);
}

.modal-close .icon,
.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-right: 2rem;
}

.modal-text {
  margin: 0 0 1.35rem;
  color: var(--ink-muted);
  font-weight: 600;
}
