:root {
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;

  --bg: #f3f2ee;
  --surface: #ffffff;
  --surface-soft: #faf8f2;
  --ink: #172033;
  --ink-soft: #44516a;
  --line: #dde2eb;

  --brand: #b8862f;
  --brand-strong: #8c611a;
  --brand-soft: #efe2c5;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 8px 24px rgba(23, 32, 51, 0.06);
  --shadow-md: 0 18px 46px rgba(23, 32, 51, 0.1);
  --shadow-lg: 0 30px 70px rgba(23, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 10% -8%, rgba(184, 134, 47, 0.16), transparent 60%),
    radial-gradient(840px 420px at 100% 0%, rgba(75, 129, 170, 0.14), transparent 56%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

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

a:hover {
  color: var(--brand-strong);
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.site-body {
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: rgba(243, 242, 238, 0.85);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(23, 32, 51, 0.78);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(23, 32, 51, 0.06);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 32, 51, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-menu-button[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 30, 0.56);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mobile-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(78vw, 350px);
  background: linear-gradient(180deg, #fdfbf4 0%, #f3f2ee 72%);
  border-left: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: -20px 0 52px rgba(12, 18, 30, 0.16);
  padding: 84px 24px 30px;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 32, 51, 0.18);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.mobile-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 14px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 32, 51, 0.08);
}

.mobile-link:hover {
  background: #fff;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  padding: 62px 0 34px;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
}

.hero-content h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-content p {
  margin-top: 18px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 560px;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.waitlist-count-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(23, 32, 51, 0.18);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  color: rgba(23, 32, 51, 0.8);
}

.waitlist-count-chip strong {
  color: var(--brand-strong);
  font-size: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #c18a2f, #d8a140);
  color: #1f1507;
  box-shadow: 0 12px 30px rgba(184, 134, 47, 0.28);
}

.btn-primary:hover {
  color: #1f1507;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 51, 0.16);
  color: var(--ink);
}

.trusted-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(23, 32, 51, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(150deg, rgba(184, 134, 47, 0.68), rgba(78, 143, 173, 0.44));
  box-shadow: 0 8px 18px rgba(23, 32, 51, 0.18);
}

.avatar:first-child {
  margin-left: 0;
}

.hero-mockup {
  justify-self: center;
  width: 100%;
  max-width: 450px;
}

.phone-mockup {
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: clamp(10px, 2vw, 16px);
  box-shadow: var(--shadow-lg);
}

.phone-mockup .screen {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.08);
}

.section {
  padding: 74px 0;
}

section h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 14px;
}

.problem {
  padding-top: 36px;
  padding-bottom: 36px;
}

.problem-text h2 {
  margin-bottom: 8px;
}

.problem-text .highlight {
  color: var(--brand-strong);
}

.solution-grid,
.features-grid,
.trust-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.solution-card,
.feature,
.trust-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card:hover,
.feature:hover,
.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 47, 0.26);
}

.solution-card h3,
.feature h3,
.trust-item h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.solution-card p,
.feature p,
.trust-item p {
  font-size: 0.95rem;
}

.icon-container {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4e2bd, #edd39a);
  border: 1px solid rgba(184, 134, 47, 0.42);
}

.icon-svg {
  width: 30px;
  height: 30px;
  fill: #684615;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 26px;
  font-size: 1rem;
}

.soft-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.faq-shell {
  overflow: hidden;
}

.accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.accordion-item:last-child {
  border-bottom: 0;
}

.accordion-button {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  color: var(--ink);
  background: rgba(184, 134, 47, 0.12);
}

.accordion-body {
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

.waitlist {
  padding-top: 62px;
}

.waitlist-card {
  background:
    radial-gradient(560px 280px at 6% -30%, rgba(184, 134, 47, 0.2), transparent 64%),
    radial-gradient(560px 280px at 96% 130%, rgba(67, 135, 171, 0.16), transparent 66%),
    #fefcf7;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  padding: clamp(20px, 3vw, 34px);
}

.waitlist-copy {
  max-width: 760px;
}

.waitlist-copy h2 {
  text-align: left;
  margin-bottom: 10px;
}

.waitlist-copy p {
  font-size: 1rem;
}

.waitlist-live-count {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(23, 32, 51, 0.8);
}

.waitlist-live-count strong {
  color: var(--brand-strong);
}

.waitlist-form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.waitlist-field {
  display: grid;
  gap: 8px;
}

.waitlist-field span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(23, 32, 51, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.waitlist-field input {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(23, 32, 51, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 0 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-field input:focus {
  border-color: rgba(184, 134, 47, 0.8);
  box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.18);
}

.waitlist-form .btn {
  min-width: 160px;
  min-height: 48px;
}

.waitlist-form .btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.waitlist-feedback {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.waitlist-feedback.is-success {
  color: #1f7a43;
}

.waitlist-feedback.is-error {
  color: #a23227;
}

.waitlist-manage {
  margin-top: 6px;
  font-size: 14px;
}

.waitlist-manage a {
  color: #315479;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta {
  padding: 74px 0;
  background:
    radial-gradient(540px 260px at 80% -12%, rgba(212, 169, 88, 0.32), transparent 72%),
    linear-gradient(145deg, #131c2e, #253654 70%);
  color: #fefbf5;
}

.cta h2,
.cta p {
  color: inherit;
  text-align: center;
}

.cta p {
  margin-top: 14px;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
}

.footer {
  background: linear-gradient(140deg, #0f1726, #1a2740 68%);
  color: rgba(255, 255, 255, 0.9);
  padding: 52px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.05fr);
  gap: 40px;
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fefbf5;
}

.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer-column a:hover {
  color: #f2d299;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  transform: translateY(130%);
  transition: transform 0.28s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(20, 29, 46, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(13, 19, 31, 0.34);
  padding: 14px;
}

.cookie-content p {
  flex: 1;
  min-width: 190px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn,
.cookie-link {
  min-height: 38px;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn {
  border: 0;
  background: #f2d299;
  color: #2a1f09;
}

.cookie-btn.reject-btn {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
}

.cookie-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-shell {
  padding: clamp(22px, 6vw, 66px) 0 76px;
  position: relative;
}

.page-shell::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 95vw);
  height: 250px;
  border-radius: 36px;
  background:
    radial-gradient(500px 220px at 12% 10%, rgba(184, 134, 47, 0.2), transparent 68%),
    radial-gradient(420px 200px at 88% 0%, rgba(67, 135, 171, 0.16), transparent 70%);
  pointer-events: none;
}

.page-card {
  width: min(1040px, 100%);
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.11);
  padding: clamp(20px, 2.8vw, 36px);
  position: relative;
  z-index: 1;
}

.legal-header {
  display: grid;
  gap: 12px;
  margin: calc(-1 * clamp(20px, 2.8vw, 36px)) calc(-1 * clamp(20px, 2.8vw, 36px)) 22px;
  padding: 24px clamp(20px, 2.8vw, 36px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 32px 32px 0 0;
  background:
    radial-gradient(500px 220px at 0% 0%, rgba(184, 134, 47, 0.2), transparent 66%),
    linear-gradient(180deg, rgba(248, 245, 236, 0.85), rgba(255, 255, 255, 0.5));
}

.legal-header h1 {
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  line-height: 1.2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 51, 0.16);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(23, 32, 51, 0.8);
}

.legal-subtitle {
  font-size: 14px;
  color: rgba(23, 32, 51, 0.62);
}

.about-content,
.contact-content,
.legal-content {
  max-width: 840px;
  margin: 0 auto;
}

.about-content h2,
.contact-content h2,
.legal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin: 28px 0 12px;
  border-left: 4px solid rgba(184, 134, 47, 0.58);
  padding-left: 10px;
}

.legal-content h3 {
  font-size: 1.04rem;
  margin: 16px 0 8px;
}

.about-content p,
.contact-content p,
.legal-content p,
.about-content li,
.contact-content li,
.legal-content li {
  font-size: 15px;
}

.about-content p,
.contact-content p,
.legal-content p {
  margin-bottom: 12px;
}

.about-content ul,
.contact-content ul,
.legal-content ul,
.legal-content ol {
  margin: 8px 0 14px;
  padding-left: 20px;
}

.about-content li,
.contact-content li,
.legal-content li {
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.about-content a,
.contact-content a,
.legal-content a {
  color: #315479;
  text-decoration: underline;
  text-decoration-color: rgba(49, 84, 121, 0.35);
  text-underline-offset: 3px;
}

.security-reminder,
.important {
  margin-top: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(184, 134, 47, 0.36);
  border-radius: 14px;
  padding: 15px;
}

.waitlist-admin {
  display: grid;
  gap: 16px;
}

.waitlist-admin-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(23, 32, 51, 0.16);
  background: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.waitlist-admin-meta strong {
  color: var(--brand-strong);
}

.waitlist-empty {
  padding: 16px;
  border-radius: 14px;
  border: 1px dashed rgba(23, 32, 51, 0.2);
  background: rgba(255, 255, 255, 0.76);
}

.waitlist-table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 16px;
  background: #fff;
}

.waitlist-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.waitlist-table th,
.waitlist-table td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  font-size: 14px;
}

.waitlist-table th {
  background: rgba(243, 242, 238, 0.86);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(23, 32, 51, 0.74);
}

.waitlist-table tr:last-child td {
  border-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .solution-grid,
  .features-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 860px) {
  .header .container {
    min-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero {
    padding-top: 36px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 2;
    text-align: center;
  }

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

  .hero-buttons,
  .trusted-row {
    justify-content: center;
  }

  .waitlist-count-chip {
    justify-content: center;
  }

  .hero-mockup {
    order: 1;
    max-width: 360px;
  }

  .section {
    padding: 58px 0;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-copy h2,
  .waitlist-copy p {
    text-align: center;
  }

  .waitlist-live-count {
    text-align: center;
  }

  .waitlist-form .btn {
    width: 100%;
  }

  .solution-grid,
  .features-grid,
  .trust-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 24px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100vw - 28px));
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .btn {
    width: 100%;
  }

  .waitlist-count-chip {
    width: 100%;
  }

  .page-shell {
    padding-top: 16px;
  }

  .page-shell::before {
    display: none;
  }

  .page-card {
    border-radius: 20px;
    padding: 16px;
  }

  .legal-header {
    margin: -16px -16px 16px;
    padding: 18px 16px;
    border-radius: 20px 20px 0 0;
  }

  .legal-header h1 {
    font-size: 1.38rem;
    line-height: 1.28;
  }

  .about-content h2,
  .contact-content h2,
  .legal-content h2 {
    margin-top: 24px;
  }
}
