/* meno marketing site — shared styles */

:root {
  color-scheme: light dark;
  --bg: #f2f1ec;
  --text: #1a1a1a;
  --muted: #6b6560;
  --accent: #76885b;
  --accent-hover: #657349;
  --accent-dim: #eef3e8;
  --border: #edeae6;
  --surface: #faf8f7;
  --on-accent: #fff;
  --phone-start: #2a2a2a;
  --phone-end: #1a1a1a;
  --notepad-start: #faf8f7;
  --notepad-end: #edeae6;
  --phone-shadow: 0 24px 48px color-mix(in srgb, var(--text) 18%, transparent),
    0 8px 16px color-mix(in srgb, var(--text) 8%, transparent);
  --notepad-shadow: 0 12px 24px color-mix(in srgb, var(--text) 8%, transparent);
  --error-bg: #fdf0ee;
  --error-text: #8b3a34;
  --error-border: #e8c4c0;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-body: "Segoe UI", Segoe UI, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --hero-bg: #f2f1ec;
  --header-bg: #f6f1f0;
  --card-bg: #faf8f6;
  --hero-art-height: calc(100vw * 720 / 1770);
  --solution-advisors: #5a9a82;
  --solution-advisors-light: #9ecdb8;
  --solution-advisors-dark: #4a7564;
  --solution-advisors-dim: #eef5f1;
  --solution-wealth: #6a9fb0;
  --solution-insurance: #b09a72;
  --solution-retirement: #9189b0;
  --header-height: 72px;
  --page-pad: clamp(1.25rem, 4vw, 3rem);
  --page-pad-hero: clamp(1.25rem, 4vw, 3rem);
  --content-max: 1120px;
  --narrow-max: 720px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #1a1917;
    --text: #f2f0eb;
    --muted: #a8a29c;
    --accent: #8ba874;
    --accent-hover: #9bb882;
    --accent-dim: #2a3324;
    --border: #3d3a35;
    --surface: #242220;
    --on-accent: #fff;
    --hero-bg: #1e1d1a;
    --header-bg: #1e1d1a;
    --phone-start: #3a3a3a;
    --phone-end: #252525;
    --notepad-start: #2e2c28;
    --notepad-end: #3d3a35;
    --phone-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    --notepad-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    --error-bg: #3d2422;
    --error-text: #f0a9a3;
    --error-border: #6b3a35;
    --card-bg: #242220;
  }

  .hero__phone-screen img {
    opacity: 0.7;
  }
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

a:hover:not(.btn) {
  color: var(--accent);
}

a.btn:hover {
  color: inherit;
}

a.btn--accent:hover {
  color: var(--on-accent);
}

/* ---- layout ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 var(--page-pad);
  background: var(--header-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.page-home,
.page-pricing {
  background: var(--hero-bg);
}

body.page-home {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-header__brand {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  line-height: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-header__brand svg {
  flex-shrink: 0;
  height: 1.2em;
  width: auto;
  transform: translateY(0.1em);
}

.site-header__brand svg g {
  fill: var(--accent);
}

.site-header__brand svg path[fill="none"] {
  fill: none;
  stroke: var(--accent);
}

.site-header__brand:hover {
  color: var(--text);
}

.site-header__end {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.site-nav a:hover:not(.site-nav__cta) {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
  font-weight: 600;
}

.site-nav a.site-nav__cta {
  color: var(--on-accent);
}

.site-nav a.site-nav__cta:hover {
  color: var(--on-accent);
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.site-nav__cta {
  min-height: 0;
  padding: 0.42rem 0.95rem;
  font-size: 0.72rem;
  border-radius: 999px;
  margin-left: 0;
}

.site-nav .site-nav__cta.btn--hero {
  min-height: 0;
  padding: 0.42rem 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--on-accent);
}

.btn--outline {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--text) 18%, transparent);
  color: var(--text);
}

.btn--outline:hover {
  background: var(--surface);
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 28%, transparent);
}

.site-main {
  min-height: 0;
}

.container {
  width: min(var(--content-max), 100% - 2 * var(--page-pad));
  margin-inline: auto;
}

.container--narrow {
  width: min(var(--narrow-max), 100% - 2 * var(--page-pad));
  margin-inline: auto;
}

/* ---- hero ---- */

.hero {
  padding: 0;
  overflow: visible;
}

.site-main--home {
  flex: 1 0 auto;
  width: 100%;
}

.hero__scene {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: var(--hero-bg);
}

.hero--has-bg .hero__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  flex-shrink: 0;
}

.hero--has-bg .hero__art {
  position: relative;
  container-type: inline-size;
  width: 100%;
  height: var(--hero-art-height);
  flex: 0 0 var(--hero-art-height);
  overflow: visible;
}

.hero--has-bg .hero__copy {
  position: absolute;
  z-index: 1;
  left: var(--page-pad);
  top: 11%;
  width: min(32.5rem, 47.5cqi);
  align-items: flex-start;
  text-align: left;
}

.hero--has-bg .hero__title-line {
  font-size: clamp(1.75rem, 4.6cqi, 3.75rem);
}

.hero--has-bg .hero__title-accent {
  font-size: clamp(2rem, 5.8cqi, 4.5rem);
}

.hero--has-bg .hero__subtitle {
  max-width: none;
  font-size: clamp(0.85rem, 1.55cqi, 1.05rem);
}

@media (min-width: 769px) {
  .hero--has-bg .hero__title-line {
    color: #1a1a1a;
  }

  .hero--has-bg .hero__title-accent {
    color: var(--accent);
  }

  .hero--has-bg .hero__subtitle {
    color: #4a4a4a;
  }
}

.hero--has-bg .hero__cta {
  justify-content: flex-start;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--hero-bg);
  background-image: url("/images/hero-background.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (prefers-color-scheme: dark) and (min-width: 769px) {
  .hero__bg {
    background-image: url("/images/hero-background-dark.png");
  }

  .hero--has-bg .hero__title-line {
    color: var(--text);
  }

  .hero--has-bg .hero__subtitle {
    color: var(--muted);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--page-pad-hero) clamp(1.5rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: var(--text);
}

.hero__title-accent {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.75rem, 7.5vw, 4.5rem);
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
  line-height: 1;
  margin-top: 0.1em;
}

.hero__subtitle {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.btn--hero {
  min-width: 0;
  padding: 0.65rem 1.35rem;
  font-size: 0.72rem;
  border-radius: 999px;
}

.btn--start-beta {
  font-weight: 600;
  font-size: calc(0.72rem + 1px);
}

.btn--open-app {
  font-weight: 600;
  font-size: calc(0.72rem - 0.5px);
}

.btn--accent.btn--start-beta:not(.btn--hero) {
  font-size: calc(0.85rem + 1px);
}

.btn--accent.btn--open-app:not(.btn--hero):not(.site-nav__cta) {
  font-size: calc(0.85rem - 0.5px);
}

/* ---- iPhone mockup (mobile hero) ---- */

.hero__phone {
  display: none;
}

.hero__phone-device {
  width: min(280px, 78vw);
  margin: 0 auto;
}

.hero__phone-bezel {
  position: relative;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(145deg, #3a3a3a 0%, #1a1a1a 50%, #2a2a2a 100%);
  box-shadow:
    0 20px 50px color-mix(in srgb, var(--text) 22%, transparent),
    0 8px 20px color-mix(in srgb, var(--text) 12%, transparent),
    inset 0 0 0 1px color-mix(in srgb, #fff 12%, transparent);
}

.hero__phone-island {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 22px;
  border-radius: 20px;
  background: #0a0a0a;
}

.hero__phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #000;
  aspect-ratio: 390 / 844;
}

.hero__phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.feature-card__text {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---- hero visual (right side) ---- */

.hero__visual {
  position: relative;
  min-height: clamp(280px, 50vw, 420px);
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.hero__props {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__plate {
  position: absolute;
  left: 6%;
  bottom: 16%;
  width: clamp(80px, 20vw, 115px);
  height: clamp(80px, 20vw, 115px);
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 8px 24px color-mix(in srgb, var(--text) 10%, transparent),
    0 2px 6px color-mix(in srgb, var(--text) 6%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bizcard {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58%;
  height: 38%;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 4px color-mix(in srgb, var(--text) 12%, transparent);
}

.hero__books {
  position: absolute;
  left: 24%;
  bottom: 10%;
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
}

.hero__book {
  display: block;
  width: clamp(28px, 7vw, 38px);
  border-radius: 2px 3px 1px 1px;
  box-shadow: 2px 2px 6px color-mix(in srgb, var(--text) 12%, transparent);
}

.hero__book--green {
  height: clamp(52px, 12vw, 68px);
  background: linear-gradient(180deg, #7a9468, #5f7552);
}

.hero__book--tan {
  height: clamp(44px, 10vw, 58px);
  background: linear-gradient(180deg, #d4c4a8, #b8a688);
}

.hero__book--cream {
  height: clamp(48px, 11vw, 62px);
  background: linear-gradient(180deg, #f0ebe2, #ddd5c8);
}

.hero__plant {
  position: absolute;
  right: 14%;
  bottom: 6%;
}

.hero__pot {
  display: block;
  width: clamp(36px, 9vw, 48px);
  height: clamp(28px, 7vw, 36px);
  border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg, #c8c2b8, #a8a29c);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--text) 10%, transparent);
}

.hero__leaves {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(40px, 10vw, 56px);
  height: clamp(36px, 9vw, 48px);
  background:
    radial-gradient(ellipse 45% 55% at 30% 70%, #6a8558 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 65%, #8ba874 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 50% 40%, #5a7349 0%, transparent 70%);
}

.hero__plan-card {
  position: absolute;
  top: 8%;
  right: 0;
  width: min(100%, 240px);
  padding: 1.1rem 1.15rem 1rem;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 16px 40px color-mix(in srgb, var(--text) 12%, transparent),
    0 4px 12px color-mix(in srgb, var(--text) 6%, transparent);
  transform: rotate(1.5deg);
}

.hero__plan-label {
  margin: 0 0 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero__plan-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text);
}

.hero__plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 6px;
}

.hero__plan-icon--chat {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}

.hero__plan-icon--clock {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: color-mix(in srgb, var(--accent) 80%, var(--text));
}

.hero__plan-icon--doc {
  background: color-mix(in srgb, #c4956a 18%, transparent);
  color: #a67c52;
}

.hero__note {
  position: absolute;
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  white-space: nowrap;
}

.hero__note-arrow {
  display: block;
  opacity: 0.85;
}

.hero__note--clarity {
  top: 2%;
  left: -2%;
}

.hero__note--clarity .hero__note-arrow {
  margin: 0 0 -0.15rem 0.5rem;
}

.hero__note--relationships {
  bottom: 38%;
  left: -8%;
}

.hero__note--relationships .hero__note-arrow {
  margin: 0.1rem 0 0 1.5rem;
}

.hero__note--matters {
  bottom: 22%;
  right: -4%;
}

.hero__note--matters .hero__note-arrow {
  margin: 0.1rem 0 0 auto;
}

/* ---- hero bottom bar (solutions) ---- */

.hero__bottom-bar {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  padding: 1.15rem var(--page-pad-hero) 1.35rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: var(--header-bg);
  box-sizing: border-box;
  overflow: visible;
}

.hero--has-bg .hero__bottom-bar {
  flex-shrink: 0;
  margin-top: 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: var(--header-bg);
}

.hero__bottom-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: calc(0.68rem + 1px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__solutions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  width: min(900px, 100%);
  overflow: visible;
}

.hero__solution-item {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__solution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.5rem;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: calc(0.72rem + 2px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: color 0.15s;
  white-space: normal;
  text-align: left;
}

.hero__solution:hover,
.hero__solution-item.is-open .hero__solution {
  color: var(--accent);
}

.hero__solution-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  color: #fff;
  overflow: hidden;
}

.hero__solution-icon::before {
  content: "";
  position: absolute;
  inset: 1px 3px auto;
  height: 42%;
  border-radius: 8px 8px 50% 50%;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.38), transparent);
  pointer-events: none;
}

.hero__solution-icon--advisors {
  background: linear-gradient(145deg, #9ecdb8 0%, #5a9a82 55%, #4a7564 100%);
}

.hero__solution-icon--wealth {
  background: linear-gradient(145deg, #9ec4d4 0%, #6a9fb0 55%, #5a808f 100%);
}

.hero__solution-icon--insurance {
  background: linear-gradient(145deg, #d4c4a0 0%, #b09a72 55%, #948664 100%);
}

.hero__solution-icon--retirement {
  background: linear-gradient(145deg, #b8aed0 0%, #9189b0 55%, #787098 100%);
}

.hero__solution-popup {
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(26.25rem, 92vw);
  padding: 1.65rem 1.7rem 1.45rem;
  border-radius: 18px;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--surface) 96%, #fff) 0%, var(--surface) 100%);
  border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  box-shadow:
    0 28px 56px color-mix(in srgb, var(--text) 16%, transparent),
    0 10px 24px color-mix(in srgb, var(--text) 8%, transparent),
    inset 0 1px 0 color-mix(in srgb, #fff 60%, transparent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 30;
  text-align: left;
  overflow: hidden;
}

.hero__solution-popup-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a7564, #9ecdb8, #4a7564);
}

.hero__solution-popup-accent--wealth {
  background: linear-gradient(90deg, #5a808f, #9ec4d4, #5a808f);
}

.hero__solution-popup-accent--insurance {
  background: linear-gradient(90deg, #948664, #d4c4a0, #948664);
}

.hero__solution-popup-accent--retirement {
  background: linear-gradient(90deg, #787098, #b8aed0, #787098);
}

.hero__solution-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hero__solution-popup-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  color: #fff;
  box-shadow:
    0 2px 0 color-mix(in srgb, var(--text) 18%, transparent),
    0 4px 10px color-mix(in srgb, var(--text) 10%, transparent);
  overflow: hidden;
}

.hero__solution-popup-badge::before {
  content: "";
  position: absolute;
  inset: 1px 3px auto;
  height: 40%;
  border-radius: 9px 9px 50% 50%;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.35), transparent);
  pointer-events: none;
}

.hero__solution-popup-badge--advisors {
  background: linear-gradient(145deg, #9ecdb8, #5a9a82);
}

.hero__solution-item:has(.hero__solution-icon--advisors) .hero__solution:hover,
.hero__solution-item:has(.hero__solution-icon--advisors).is-open .hero__solution {
  color: var(--solution-advisors);
}

.hero__solution-item:has(.hero__solution-icon--advisors) .hero__solution-popup-name {
  color: var(--solution-advisors);
}

.hero__solution-item:has(.hero__solution-icon--wealth) .hero__solution-popup-name {
  color: var(--solution-wealth);
}

.hero__solution-item:has(.hero__solution-icon--insurance) .hero__solution-popup-name {
  color: var(--solution-insurance);
}

.hero__solution-item:has(.hero__solution-icon--retirement) .hero__solution-popup-name {
  color: var(--solution-retirement);
}

.hero__solution-item:has(.hero__solution-icon--advisors) .hero__solution-popup-list li::before {
  background: var(--solution-advisors);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--solution-advisors) 25%, transparent);
}

.hero__solution-popup-badge--wealth {
  background: linear-gradient(145deg, #9ec4d4, #6a9fb0);
}

.hero__solution-popup-badge--insurance {
  background: linear-gradient(145deg, #d4c4a0, #b09a72);
}

.hero__solution-popup-badge--retirement {
  background: linear-gradient(145deg, #b8aed0, #9189b0);
}

.hero__solution-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: var(--surface);
  filter: drop-shadow(0 2px 2px color-mix(in srgb, var(--text) 8%, transparent));
}

.hero__solution-item.is-open .hero__solution-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hero__solution-popup-name {
  margin: 0;
  font-family: var(--font-body);
  font-size: calc(0.62rem + 5px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.35;
}

.hero__solution-popup-text {
  margin: 0 0 1rem;
  font-size: calc(0.82rem + 3px);
  line-height: 1.6;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  white-space: normal;
}

.hero__solution-popup-list {
  margin: 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent-dim) 35%, transparent), transparent 100%);
  margin-inline: -1.7rem;
  padding-inline: 1.7rem;
  padding-bottom: 0.15rem;
  border-radius: 0 0 18px 18px;
}

.hero__solution-popup-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
  font-size: calc(0.78rem + 3px);
  line-height: 1.5;
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  white-space: normal;
}

.hero__solution-popup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 25%, transparent);
}

@media (min-width: 769px) {
  .hero__solution-popup-name {
    font-size: calc(0.62rem + 7px);
  }

  .hero__solution-popup-text {
    font-size: calc(0.82rem + 5px);
  }

  .hero__solution-popup-list li {
    font-size: calc(0.78rem + 5px);
  }
}

@media (max-width: 899px) {
  .hero--has-bg .hero__copy {
    left: var(--page-pad);
    width: min(32.5rem, 78%);
  }
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-top: clamp(3rem, 7vw, 5rem);
  }

  .hero--has-bg .hero__copy {
    left: var(--page-pad);
    top: clamp(0.75rem, 11%, 3rem);
    width: min(32.5rem, 47.5cqi);
  }

  .hero--has-bg .hero__title-line {
    font-size: clamp(1.65rem, 8vw, 3.75rem);
  }

  .hero--has-bg .hero__title-accent {
    font-size: clamp(2rem, 10vw, 4.5rem);
  }

  .hero--has-bg .hero__subtitle {
    font-size: clamp(0.85rem, 3.2vw, 1.05rem);
  }

  .hero__copy {
    align-items: flex-start;
    text-align: left;
  }

  .hero__subtitle {
    max-width: 22rem;
  }

  .hero__cta {
    justify-content: flex-start;
  }

  .hero__visual {
    max-width: none;
    min-height: clamp(340px, 38vw, 460px);
    margin: 0;
  }

  .hero__plan-card {
    right: 5%;
    width: 250px;
  }

  .hero__bottom-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 3vw, 4rem);
    padding: 1.25rem var(--page-pad-hero) 1.5rem;
  }

  .hero__bottom-label {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .hero__solutions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 2.5rem);
    width: auto;
    max-width: 100%;
    flex: 1 1 16rem;
  }

  .hero__solution-item:first-child .hero__solution-popup {
    left: 0;
    transform: translateY(6px);
  }

  .hero__solution-item:first-child.is-open .hero__solution-popup {
    transform: translateY(0);
  }

  .hero__solution-item:first-child .hero__solution-popup::after {
    left: 2.5rem;
    transform: none;
  }

  .hero__solution-item:last-child .hero__solution-popup {
    left: auto;
    right: 0;
    transform: translateY(6px);
  }

  .hero__solution-item:last-child.is-open .hero__solution-popup {
    transform: translateY(0);
  }

  .hero__solution-item:last-child .hero__solution-popup::after {
    left: auto;
    right: 2.5rem;
    transform: none;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .hero__bottom-bar {
    flex-direction: column;
    align-items: center;
  }

  .hero__solutions {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* Row layout: hide the label before solution items wrap */
@media (min-width: 1101px) {
  .hero__bottom-bar {
    container-type: inline-size;
  }

  .hero__solutions {
    flex-wrap: nowrap;
  }

  @container (max-width: 1200px) {
    .hero__bottom-label {
      display: none;
    }
  }

  @container (max-width: 920px) {
    .hero__solutions {
      flex-wrap: wrap;
    }
  }
}

@media (min-width: 1200px) {
  .hero__solution {
    white-space: nowrap;
  }
}

@media (min-width: 1100px) {
  .hero__title-line {
    font-size: clamp(2.75rem, 4.2vw, 3.85rem);
  }

  .hero__title-accent {
    font-size: clamp(3.25rem, 5vw, 4.65rem);
  }
}

@media (max-width: 599px) {
  .hero__note {
    display: none;
  }

  .hero__visual {
    min-height: 260px;
  }

  .hero__plan-card {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto;
    transform: none;
    width: min(100%, 280px);
  }

  .hero__props {
    display: none;
  }
}

/* ---- sections ---- */

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.section__lead {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---- solutions (home list) ---- */

.solutions {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
}

.solutions__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.solutions__item:last-child {
  border-bottom: none;
}

.solutions__dot {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border: 2px solid var(--muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.solutions__title {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.solutions__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- solutions page ---- */

.solution-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.solution-page__card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface);
}

.solution-page__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.solution-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.solution-page__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.solution-page__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.solution-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.solution-page__list li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.solution-page__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

.solution-page__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.solution-page__cta-text {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  font-size: 0.95rem;
}

/* ---- steps ---- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.step__title {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.step__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- features ---- */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}

.feature-card__title {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.feature-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- cta band ---- */

.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) var(--page-pad);
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.cta-band__text {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

/* ---- home pricing ---- */

.home-pricing {
  display: none;
  padding: clamp(2rem, 5vw, 3rem) var(--page-pad) clamp(2.5rem, 6vw, 4rem);
  background: var(--hero-bg);
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.site-nav__pricing--home {
  display: none;
}

.home-pricing__inner {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  text-align: center;
}

.home-pricing__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.home-pricing__lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.home-pricing .pricing-card {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--border) 80%, transparent);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--text) 6%, transparent);
}

.home-pricing .pricing-note {
  color: var(--muted);
}

/* ---- page (pricing, contact, legal) ---- */

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) var(--page-pad) 2rem;
  text-align: center;
  background: var(--hero-bg);
}

.page-pricing .page-content {
  background: var(--hero-bg);
}

.page-pricing .pricing-card {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--border) 80%, transparent);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--text) 6%, transparent);
}

.page-pricing .pricing-note {
  color: var(--muted);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.page-hero__lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

.page-content {
  padding: 2rem 0 clamp(4rem, 8vw, 6rem);
}

/* ---- pricing ---- */

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  background: var(--surface);
  text-align: center;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.pricing-card__period {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

/* ---- contact ---- */

.contact-form {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form .form-field {
  text-align: left;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.form-field__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.form-field__input--textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__submit {
  display: inline-flex;
  margin-top: 0.5rem;
  margin-inline: auto;
}

.contact-form__status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.contact-form__status--success {
  background: var(--accent-dim);
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.contact-form__status--error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid var(--error-border);
}

.contact-block__note {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  margin: 0;
}

/* ---- legal ---- */

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin: 2rem 0 0.75rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p,
.legal li {
  color: var(--text);
}

.legal ul {
  padding-left: 1.25rem;
}

.legal .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ---- footer ---- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem var(--page-pad);
  background: var(--surface);
  flex-shrink: 0;
}

body.page-home .site-footer {
  margin-top: auto;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.site-footer__legal {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- mobile header ---- */

@media (max-width: 768px) {
  :root {
    --page-pad: clamp(1.25rem, 5vw, 1.75rem);
    --page-pad-hero: clamp(1.25rem, 5vw, 1.75rem);
    --header-height: 60px;
    --bg: #f6f1f0;
    --hero-bg: #f6f1f0;
    --header-bg: #f6f1f0;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #1a1917;
      --hero-bg: #1e1d1a;
      --header-bg: #1e1d1a;
      --card-bg: #242220;
    }
  }

  .hero--has-bg .hero__scene {
    min-height: 0;
    height: auto;
  }

  .hero--has-bg .hero__stack {
    width: 100%;
  }

  .hero--has-bg .hero__art {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    flex: none;
    aspect-ratio: unset;
    container-type: normal;
    width: 100%;
    padding: 2rem var(--page-pad) 2.25rem;
    box-sizing: border-box;
    gap: 2rem;
  }

  .hero--has-bg .hero__bg {
    display: none;
  }

  .hero--has-bg .hero__copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 0;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
  }

  .hero--has-bg .hero__title-line {
    font-size: calc(clamp(1.75rem, 7.5vw, 2.15rem) + 1px);
    color: var(--text);
  }

  .hero--has-bg .hero__title-accent {
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    color: var(--accent);
  }

  .hero--has-bg .hero__subtitle {
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
  }

  .hero--has-bg .hero__cta {
    justify-content: center;
    width: 100%;
    max-width: none;
    margin-top: 0.35rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 22rem;
  }

  .hero__cta .btn--hero {
    width: auto;
    min-height: 3rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .hero__cta .btn--hero.btn--start-beta {
    font-size: calc(0.75rem + 1px);
  }

  .hero__phone {
    display: block;
    width: 100%;
  }

  .hero--has-bg .hero__bottom-bar {
    align-items: stretch;
    padding: 0.5rem var(--page-pad) 2.5rem;
    border-top: none;
    gap: 1.75rem;
    background: var(--header-bg);
  }

  .hero__bottom-label {
    text-align: center;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: color-mix(in srgb, var(--muted) 85%, var(--text));
  }

  .hero__solutions {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    width: 100%;
  }

  .hero__solution-item {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero__solution {
    display: none;
  }

  .hero__solution-popup,
  .hero__solution-item.is-open .hero__solution-popup,
  .hero__solution-item:first-child .hero__solution-popup,
  .hero__solution-item:first-child.is-open .hero__solution-popup,
  .hero__solution-item:last-child .hero__solution-popup,
  .hero__solution-item:last-child.is-open .hero__solution-popup {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.35rem 1.4rem 1.15rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    box-shadow: none;
    border: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
    border-radius: 16px;
    background: var(--card-bg);
    overflow: hidden;
  }

  .hero__solution-popup-accent {
    display: none;
  }

  .hero__solution-popup-header {
    display: block;
    margin-bottom: 0.55rem;
  }

  .hero__solution-popup-badge {
    display: none;
  }

  .hero__solution-popup-name {
    font-size: calc(1.02rem + 2px);
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
  }

  .hero__solution-popup-text {
    display: block;
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.58;
    color: color-mix(in srgb, var(--text) 52%, var(--muted));
    letter-spacing: normal;
    text-transform: none;
    font-weight: 400;
  }

  .hero__solution-popup::after {
    display: none;
  }

  .hero__solution-popup-list,
  .hero__solution-item:has(.hero__solution-icon--advisors) .hero__solution-popup-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    margin-inline: 0;
    padding: 0.85rem 0 0;
    padding-inline: 0;
    border: none;
    border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    background: none;
    border-radius: 0;
  }

  .hero__solution-popup-list li {
    padding: 0.65rem 0;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
    letter-spacing: normal;
    text-transform: none;
    border-bottom: 1px solid color-mix(in srgb, var(--border) 55%, transparent);
  }

  .hero__solution-popup-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .hero__solution-popup-list li::before {
    display: none;
  }

  body.page-home .home-pricing {
    display: block;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 var(--page-pad);
  }

  .site-header__brand {
    font-size: 1.2rem;
    min-width: 0;
    justify-content: center;
  }

  .site-header__brand svg {
    height: 1.15em;
  }

  .site-header__end {
    display: none;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .page-home .site-nav__pricing--page {
    display: none;
  }

  .page-home .site-nav__pricing--home {
    display: block;
  }

  .home-pricing {
    padding: 2rem var(--page-pad) 2.5rem;
    border-top: none;
  }

  .home-pricing__title {
    text-align: center;
  }

  .home-pricing__lead,
  .home-pricing .pricing-note {
    font-size: 0.95rem;
    text-align: left;
  }

  .home-pricing .pricing-card {
    text-align: left;
    border: none;
    border-radius: 14px;
    background: var(--card-bg);
    box-shadow: none;
  }

  .home-pricing .pricing-card .btn--hero {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .solution-page__grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form__submit {
    width: 100%;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
  }

  .site-footer__legal {
    justify-content: center;
  }

  .site-footer__copy {
    text-align: center;
  }
}
