﻿    :root {
      --bg: #fff8fb;
      --bg-soft: #fff0f5;
      --bg-card: rgba(255, 255, 255, 0.88);
      --text: #221823;
      --muted: #6e5f68;
      --primary: #c86b8f;
      --primary-dark: #9f3f66;
      --secondary: #f5c6d6;
      --accent: #8167b7;
      --line: rgba(200, 107, 143, 0.24);
      --shadow: 0 24px 70px rgba(80, 40, 65, 0.12);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --max: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 84px; }
    a:focus-visible, button:focus-visible, summary:focus-visible,
    input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--primary); outline-offset: 2px;
    }
    body {
      font-family: Inter, ui-sans-serif, system-ui, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(245, 198, 214, 0.8), transparent 34rem),
        radial-gradient(circle at top right, rgba(129, 103, 183, 0.18), transparent 30rem),
        linear-gradient(180deg, #fff8fb 0%, #fff 48%, #fff8fb 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }
    h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; height: auto; }
    .container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

    /* Nav */
    .nav {
      position: sticky; top: 0; z-index: 40;
      backdrop-filter: blur(18px);
      background: rgba(255, 248, 251, 0.92);
      border-bottom: 1px solid var(--line);
      overflow: visible;
    }
    .nav-inner {
      height: 76px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      overflow: visible;
    }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em; }
    .nav .brand { height: 76px; overflow: visible; flex-shrink: 0; }
    .nav .brand-logo {
      width: 44px; height: 44px; object-fit: contain; flex-shrink: 0;
      transform: scale(2.5); transform-origin: left center;
      margin-right: 66px;
    }
    .footer .brand-logo {
      width: 110px; height: 110px; object-fit: contain; flex-shrink: 0;
    }
    .nav-links { display: flex; align-items: center; gap: 18px; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
    .nav-links a:hover { color: var(--primary-dark); }
    .nav-cta { display: flex; align-items: center; gap: 10px; }
    .mobile-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 9px 12px; font-weight: 800; cursor: pointer; }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 46px; padding: 12px 22px; border-radius: 999px;
      border: 1px solid transparent; font-weight: 700; font-size: 0.95rem;
      cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 14px 32px rgba(200, 107, 143, 0.26);
    }
    .btn-secondary { color: var(--primary-dark); background: rgba(255,255,255,0.8); border-color: var(--line); }
    .btn-white { background: #fff; color: var(--primary-dark); }
    .btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }

    /* Hero */
    .hero { padding: 72px 0 56px; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
      background: rgba(255,255,255,0.75); color: var(--primary-dark);
      font-weight: 700; font-size: 0.8rem; margin-bottom: 18px;
    }
    .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; flex-shrink: 0; }
    .eyebrow-rotate { transition: opacity 0.35s ease; min-width: 12ch; }
    .eyebrow-rotate.is-fading { opacity: 0; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
    .hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 18px; }
    .gradient-text {
      background: linear-gradient(135deg, var(--primary-dark), var(--accent));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 10px; }
    .hero-desc { font-size: 0.98rem; color: var(--muted); max-width: 580px; margin-bottom: 26px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
    .hero-visual { position: relative; }
    .hero-visual img {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }
    .hero-badge {
      position: absolute; bottom: -16px; left: -16px;
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-md); padding: 14px 18px;
      box-shadow: var(--shadow); display: flex; gap: 14px; align-items: center;
    }
    .hero-badge strong { font-size: 1.5rem; color: var(--primary-dark); }
    .hero-badge span { font-size: 0.75rem; color: var(--muted); }

    /* Sections */
    section { padding: 72px 0; }
    .section-head { margin-bottom: 36px; }
    .section-head.center { text-align: center; }
    .section-head.center p { margin: 12px auto 0; max-width: 640px; }
    .section-label {
      display: inline-block; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary);
      margin-bottom: 10px;
    }
    .section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; }
    .section-head p { color: var(--muted); font-weight: 500; }

    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

    .card {
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-md); padding: 24px;
      box-shadow: 0 16px 40px rgba(80,40,65,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(80,40,65,0.1); }
    .card h3 { font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -0.02em; }
    .card p, .card li { color: var(--muted); font-size: 0.95rem; }
    .icon {
      width: 44px; height: 44px; border-radius: 14px;
      display: grid; place-items: center; margin-bottom: 14px;
      background: linear-gradient(135deg, rgba(200,107,143,0.16), rgba(129,103,183,0.14));
      color: var(--primary-dark); font-weight: 800; font-size: 0.85rem;
    }
    .icon-mark::after {
      content: ""; width: 10px; height: 10px; border-radius: 2px;
      background: linear-gradient(135deg, var(--primary-dark), var(--accent));
      transform: rotate(45deg);
    }
    .section-soft { background: var(--bg-soft); }
    .section-dark {
      background: linear-gradient(135deg, #2a1f26, #3d2a38); color: #fff;
    }
    .section-dark h2 { color: #fff; }
    .section-dark .split-intro { color: rgba(255,255,255,0.78); margin: 16px 0 20px; }
    .section-dark .list-check li { color: rgba(255,255,255,0.78); }
    .section-dark .split img { border-color: rgba(255,255,255,0.15); }
    .split-intro { color: var(--muted); margin: 14px 0; }
    .split-note { margin-top: 16px; font-size: 0.88rem; color: var(--muted); }
    .app-cta { text-align: center; margin-top: 28px; }
    .contact-intro { color: var(--muted); margin: 12px 0 24px; }
    .contact-email { display: flex; align-items: center; gap: 12px; font-weight: 600; }
    .contact-email-icon { font-size: 1.4rem; }
    .link-accent { color: var(--primary-dark); font-weight: 600; }
    .cookie-btn { min-height: 38px; padding: 8px 18px; font-size: 0.85rem; }

    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .split img { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }

    .list-check { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
    .list-check li { position: relative; padding-left: 28px; color: var(--muted); }
    .list-check li::before {
      content: ""; position: absolute; left: 0; top: 0.35em;
      width: 16px; height: 16px; border-radius: 4px;
      background: linear-gradient(135deg, rgba(200,107,143,0.2), rgba(129,103,183,0.16));
    }
    .list-check li::after {
      content: ""; position: absolute; left: 4px; top: 0.62em;
      width: 8px; height: 5px;
      border-left: 2px solid var(--primary-dark); border-bottom: 2px solid var(--primary-dark);
      transform: rotate(-45deg);
    }
    .section-dark .list-check li::before { background: rgba(255,255,255,0.14); }
    .section-dark .list-check li::after { border-color: rgba(255,255,255,0.88); }

    /* Steps */
    .step-num {
      width: 48px; height: 48px; border-radius: 14px; margin-bottom: 14px;
      display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 8px 20px rgba(200,107,143,0.3);
    }

    /* Blog */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .blog-card { display: flex; flex-direction: column; }
    .blog-card .blog-meta { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
    .blog-card p { flex: 1; margin-bottom: 14px; }
    .blog-card a { font-size: 0.88rem; font-weight: 700; color: var(--primary-dark); }
    .blog-card a:hover { color: var(--primary); }

    /* User feedback */
    .feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feedback-card { position: relative; }
    .feedback-quote { font-size: 2rem; line-height: 1; color: var(--secondary); margin-bottom: 10px; }
    .feedback-card blockquote { font-size: 0.95rem; color: var(--muted); margin-bottom: 16px; font-style: italic; }
    .feedback-author { display: flex; align-items: center; gap: 10px; }
    .feedback-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff; font-weight: 700; font-size: 0.85rem;
      display: grid; place-items: center; flex-shrink: 0;
    }
    .feedback-author strong { display: block; font-size: 0.9rem; font-family: Inter, sans-serif; }
    .feedback-author span { font-size: 0.78rem; color: var(--muted); }

    /* App showcase */
    .app-scroll {
      display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
      scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    }
    .app-scroll img {
      flex: 0 0 200px; border-radius: 20px; border: 1px solid var(--line);
      box-shadow: 0 12px 32px rgba(80,40,65,0.1); scroll-snap-align: start;
    }

    /* Timeline */
    .timeline { display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 12px; padding-left: 28px; }
    .timeline-item { position: relative; padding-bottom: 28px; }
    .timeline-item::before {
      content: ""; position: absolute; left: -35px; top: 6px;
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--primary); border: 3px solid var(--bg);
    }
    .timeline-item small { color: var(--primary); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .timeline-item h3 { font-size: 1.1rem; margin: 4px 0 6px; }
    .timeline-item p, .timeline-item li { color: var(--muted); font-size: 0.9rem; }
    .timeline-item ul { list-style: none; margin-top: 6px; }
    .timeline-item ul li::before {
      content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 8px;
      border-radius: 50%; background: var(--primary); vertical-align: middle;
    }

    /* Team */
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .team-card { text-align: center; }
    .team-card img {
      width: 100%; aspect-ratio: 1; object-fit: cover;
      border-radius: var(--radius-md); border: 2px solid var(--line); margin-bottom: 12px;
    }
    .team-card h3 { font-size: 1rem; font-family: Inter, sans-serif; font-weight: 700; }
    .team-card p { font-size: 0.85rem; color: var(--muted); }

    /* CTA band */
    .cta-band {
      background: linear-gradient(135deg, var(--primary-dark), var(--accent));
      color: #fff; text-align: center; border-radius: var(--radius-lg);
      padding: 56px 32px; box-shadow: var(--shadow);
    }
    .cta-band h2 { color: #fff; margin-bottom: 12px; }
    .cta-band p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 24px; }
    .cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

    /* Contact */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
    .form { display: grid; gap: 14px; }
    .form input, .form select, .form textarea {
      width: 100%; padding: 14px 18px; border: 1px solid var(--line);
      border-radius: var(--radius-sm); font: inherit; background: #fff;
      transition: border-color 0.2s;
    }
    .form input:focus, .form select:focus, .form textarea:focus {
      outline: none; border-color: var(--primary);
    }
    .form textarea { min-height: 120px; resize: vertical; }
    .form > div > label { font-size: 0.85rem; font-weight: 600; margin-bottom: -8px; }

    /* FAQ */
    .faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
    .faq-item {
      background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md);
      overflow: hidden; box-shadow: 0 10px 28px rgba(80,40,65,0.05);
    }
    .faq-item summary {
      padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: ""; flex-shrink: 0; width: 14px; height: 14px;
      background:
        linear-gradient(var(--primary), var(--primary)) center / 14px 2px no-repeat,
        linear-gradient(var(--primary), var(--primary)) center / 2px 14px no-repeat;
    }
    .faq-item[open] summary::after {
      background: linear-gradient(var(--primary), var(--primary)) center / 14px 2px no-repeat;
    }
    .faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 0.95rem; }

    /* Footer */
    .footer {
      padding: 40px 0; border-top: 1px solid var(--line);
      background: rgba(255,248,251,0.6);
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
    .footer h4 { font-family: Inter, sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
    .footer ul { list-style: none; display: grid; gap: 8px; }
    .footer a, .footer p { font-size: 0.9rem; color: var(--muted); }
    .footer-note { margin-top: 18px; font-size: 0.82rem; line-height: 1.55; max-width: 36rem; }
    .footer-note strong { color: var(--text); font-weight: 600; }
    .footer a:hover { color: var(--primary-dark); }
    .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: var(--muted); padding-top: 20px; border-top: 1px solid var(--line); }

    /* Demo modal */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(20, 12, 18, 0.72); align-items: center; justify-content: center; padding: 20px;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: #fff; border-radius: var(--radius-lg); max-width: 520px; width: 100%;
      overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    }
    .modal-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px 0; }
    .modal-header h3 { font-size: 1.4rem; }
    .modal-close { background: none; border: none; font-size: 1.8rem; color: var(--muted); cursor: pointer; line-height: 1; }
    .modal-body { padding: 20px 28px 28px; text-align: center; }
    .demo-request p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
    .demo-email {
      display: inline-block; font-size: 1.15rem; font-weight: 700; color: var(--primary-dark);
      margin: 8px 0 20px; word-break: break-all;
    }
    .demo-email:hover { color: var(--primary); }
    .demo-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .modal-footer { border-top: 1px solid var(--line); padding: 14px 28px; text-align: center; font-size: 0.78rem; color: var(--muted); }

    /* Cookie */
    .cookie-banner {
      display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 150; max-width: 480px; width: calc(100% - 32px);
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
      padding: 18px 20px; box-shadow: var(--shadow);
      align-items: center; justify-content: space-between; gap: 14px;
    }
    .cookie-banner.show { display: flex; }
    .cookie-banner p { font-size: 0.82rem; color: var(--muted); flex: 1; }
    .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
      .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
      .hero-badge { left: 8px; bottom: -8px; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .eyebrow-dot { animation: none; }
      .eyebrow-rotate { transition: none; }
      .btn:hover, .card:hover { transform: none; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(255,248,251,0.98); border-bottom: 1px solid var(--line); padding: 16px; }
      .nav .brand-logo {
        transform: scale(1.65); margin-right: 29px;
      }
      .footer .brand-logo { width: 72px; height: 72px; }
      .nav-links.show { display: flex; }
      .mobile-toggle { display: block; }
      .grid-2, .grid-3, .blog-grid, .feedback-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
      .cookie-actions { justify-content: center; }
      .about-highlights { grid-template-columns: 1fr; }
    }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; z-index: 100; padding: 12px 18px; background: var(--primary-dark); color: #fff; font-weight: 700; border-radius: 8px; }
.skip-link:focus { left: 16px; top: 16px; }
.nav-links a[aria-current="page"] { color: var(--primary-dark); }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.form-consent {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 0; font-size: 0.85rem; font-weight: 400; line-height: 1.5;
  color: var(--muted); cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin: 0.15em 0 0;
  flex-shrink: 0; accent-color: var(--primary); cursor: pointer;
}
.form-consent span { flex: 1; min-width: 0; }
.form-consent a { color: var(--primary-dark); font-weight: 600; }
.form-status { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; }
.form-status.success { background: rgba(200,107,143,0.12); color: var(--primary-dark); }
.form-error {
  padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600;
  background: rgba(159, 63, 102, 0.1); color: var(--primary-dark);
  border: 1px solid rgba(200, 107, 143, 0.35);
}
.form-field-error { border-color: #c86b8f !important; }
.page-hero { padding: 64px 0 48px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 16px; }
.page-hero .lead, .page-hero .updated { font-size: 1.15rem; color: var(--muted); max-width: 720px; margin-bottom: 32px; }
.page-hero .updated { font-size: 0.85rem; margin-bottom: 28px; }
.about-prose { max-width: 760px; display: grid; gap: 18px; }
.about-prose p { color: var(--muted); }
.about-prose h3 { font-size: 1.35rem; margin-top: 12px; }
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; max-width: 900px; }
.about-highlight { padding: 22px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md); }
.about-highlight strong { display: block; font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 6px; }
.about-highlight span { font-size: 0.88rem; color: var(--muted); }
.legal-prose { max-width: 760px; display: grid; gap: 20px; }
.legal-prose h2 { font-size: 1.25rem; margin-top: 8px; }
.legal-prose p, .legal-prose li { color: var(--muted); font-size: 0.95rem; }
.legal-prose ul { padding-left: 20px; display: grid; gap: 6px; }
.legal-prose a, .article-wrap a:not(.back-link), .cookie-banner a { color: var(--primary-dark); font-weight: 600; }
.footer .brand { margin-bottom: 12px; }
.article-wrap { max-width: 720px; margin: 0 auto; padding: 48px 0 64px; }
.article-wrap .meta { font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.article-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; margin-bottom: 20px; }
.article-wrap p { color: var(--muted); margin-bottom: 16px; }
.article-wrap h2 { font-size: 1.3rem; margin: 28px 0 12px; }
.back-link { display: inline-block; margin-bottom: 24px; font-size: 0.9rem; color: var(--primary-dark); font-weight: 600; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 32px; }
.error-page h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 12px; }
.error-page p { color: var(--muted); max-width: 480px; margin: 0 auto 24px; }
