@font-face {
      font-family: "OpenDyslexic";
      src: url("opendyslexic-0.92/OpenDyslexic-Regular.otf") format("opentype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "OpenDyslexic";
      src: url("opendyslexic-0.92/OpenDyslexic-Italic.otf") format("opentype");
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: "OpenDyslexic";
      src: url("opendyslexic-0.92/OpenDyslexic-Bold.otf") format("opentype");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "OpenDyslexic";
      src: url("opendyslexic-0.92/OpenDyslexic-BoldItalic.otf") format("opentype");
      font-weight: 700;
      font-style: italic;
      font-display: swap;
    }
    :root {
      --bg: #ffffff;
      --text: #111111;
      --muted: #5a5a5a;
      --border: #e6e6e6;
      --accent: #d72638;
      --accent-soft: rgba(215, 38, 56, 0.08);
      --radius: 10px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body,
    body[data-font="open-dyslexic"] {
      font-family: "OpenDyslexic", "OpenDyslexic3", "OpenDyslexic Sans", "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    body[data-font="lexend"] {
      font-family: "Lexend", "OpenDyslexic", "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
    }

    body[data-font="system"] {
      font-family: "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
    }

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

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

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
    }

    .brand img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
}

    .nav-links a {
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 1px;
      background: var(--text);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid var(--text);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .btn-primary {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }

.btn-primary:hover {
  background: #c51f30;
  transform: translateY(-1px);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
}

.icon-link:hover {
  transform: translateY(-1px);
  background: #fafafa;
  border-color: #d0d0d0;
}

    .btn-outline {
      background: transparent;
      color: var(--text);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-1px);
    }

    .hero {
      padding: 80px 0 60px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      text-align: center;
      align-items: center;
      justify-items: center;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.28em;
      font-size: 10px;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .hero h1 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .hero p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 22px;
      max-width: 520px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 14px;
      justify-content: center;
    }

    .link-cta {
      font-size: 13px;
      color: var(--text);
      border-bottom: 1px solid transparent;
    }

    .link-cta:hover {
      border-color: var(--text);
    }

    .hero-meta {
      display: flex;
      gap: 16px;
      font-size: 11px;
      color: var(--muted);
      justify-content: center;
    }

    .font-controls {
      margin-top: 18px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px;
      max-width: 420px;
      width: 100%;
      background: #fff;
    }

    .font-controls .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 12px;
    }

    .toggle-switch {
      position: relative;
      width: 36px;
      height: 20px;
      flex-shrink: 0;
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
      position: absolute;
    }

    .toggle-track {
      position: absolute;
      inset: 0;
      background: #e5e5e5;
      border: 1px solid #ccc;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }

    .toggle-switch input:checked + .toggle-track {
      background: var(--accent);
      border-color: var(--accent);
    }

    .toggle-thumb {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 14px;
      height: 14px;
      background: white;
      border-radius: 50%;
      transition: transform 0.2s;
      pointer-events: none;
    }

    .toggle-switch input:checked ~ .toggle-thumb {
      transform: translateX(16px);
    }

    .font-select {
      width: 100%;
      font-family: inherit;
      font-size: 12px;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 6px 10px;
      background: #fff;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23111'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      padding-right: 26px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards;
    }

    .delay-1 { animation-delay: 0.08s; }
    .delay-2 { animation-delay: 0.16s; }
    .delay-3 { animation-delay: 0.24s; }
    .delay-4 { animation-delay: 0.32s; }

    section {
      padding: 60px 0;
      border-top: 1px solid var(--border);
    }

    .section-title {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .section-sub {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 26px;
    }

    .section-title,
    .section-sub {
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards;
    }

    .section-sub {
      animation-delay: 0.08s;
    }

    .section-alt {
      background: #fbfbfb;
    }

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

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

    .typewriter {
      display: inline-block;
      position: relative;
      padding-right: 8px;
      white-space: nowrap;
    }

    .typewriter::after {
      content: "";
      position: absolute;
      right: 2px;
      top: 0.2em;
      width: 1px;
      height: 1em;
      background: var(--accent);
      animation: caretBlink 0.9s steps(2) infinite;
    }

    .typewriter.typewriter-done::after {
      animation: none;
      opacity: 0.4;
    }

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

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 16px;
    }

    .bento-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
      background: #fff;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .bento-card:hover {
      transform: translateY(-2px);
      border-color: #d0d0d0;
      background: #fafafa;
    }

    .bento-large {
      grid-column: span 7;
      min-height: 200px;
    }

    .bento-tall {
      grid-column: span 5;
      min-height: 200px;
    }

    .bento-wide {
      grid-column: span 6;
      min-height: 160px;
    }

    .bento-small {
      grid-column: span 6;
      min-height: 160px;
    }

    .card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px;
      background: #fff;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .card:hover {
      transform: translateY(-2px);
      border-color: #d0d0d0;
      background: #fafafa;
    }

    .card,
    .bento-card,
    .video-shell,
    .faq-item {
      opacity: 0;
      transform: translateY(12px);
      animation: fadeUp 0.6s ease forwards;
    }

    .grid-3 .card:nth-child(1),
    .steps .card:nth-child(1),
    .testimonials .card:nth-child(1),
    .bento-grid .bento-card:nth-child(1),
    .faq .faq-item:nth-child(1) {
      animation-delay: 0.06s;
    }

    .grid-3 .card:nth-child(2),
    .steps .card:nth-child(2),
    .testimonials .card:nth-child(2),
    .bento-grid .bento-card:nth-child(2),
    .faq .faq-item:nth-child(2) {
      animation-delay: 0.12s;
    }

    .grid-3 .card:nth-child(3),
    .steps .card:nth-child(3),
    .testimonials .card:nth-child(3),
    .bento-grid .bento-card:nth-child(3),
    .faq .faq-item:nth-child(3) {
      animation-delay: 0.18s;
    }

    .grid-3 .card:nth-child(4),
    .bento-grid .bento-card:nth-child(4),
    .faq .faq-item:nth-child(4) {
      animation-delay: 0.24s;
    }

    .card-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .step-num {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: 1px solid var(--border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .metric {
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      background: #fff;
    }

    .metric strong {
      font-size: 20px;
      display: block;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      align-items: center;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .logo-chip {
      border: 1px dashed var(--border);
      border-radius: 999px;
      padding: 8px 10px;
      text-align: center;
      background: #fff;
    }

    .comparison {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }

    .comparison th,
    .comparison td {
      border: 1px solid var(--border);
      padding: 10px 12px;
      text-align: left;
    }

    .comparison th {
      background: #f5f5f5;
    }

    .pricing {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .price-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px;
      background: #fff;
      display: grid;
      gap: 12px;
    }

    .price-card .price {
      font-size: 22px;
      font-weight: 700;
    }

    .price-list {
      display: grid;
      gap: 8px;
      font-size: 12px;
      color: var(--muted);
    }

    .team {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .person {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px;
      background: #fff;
    }

    .timeline {
      display: grid;
      gap: 12px;
    }

    .timeline-item {
      border-left: 2px solid var(--accent);
      padding-left: 12px;
      color: var(--muted);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
    }

    .form {
      display: grid;
      gap: 12px;
    }

    .input,
    .textarea {
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 12px;
      font-family: inherit;
      font-size: 12px;
    }

    .textarea {
      min-height: 120px;
      resize: vertical;
    }

    .site-footer {
      border-top: 1px solid var(--border);
      padding: 44px 0;
      background: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .footer-brand {
      display: grid;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .footer-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      font-size: 12px;
      color: var(--muted);
    }

    .footer-links a {
      color: var(--muted);
    }

    .footer-links a:hover {
      color: var(--text);
    }

    .footer-meta {
      margin-top: 24px;
      font-size: 11px;
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
    }

    .video-frame {
      border: 1px dashed #cfcfcf;
      border-radius: var(--radius);
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      padding: 12px;
    }

    .demo-embed {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #f5f5f5;
    }

    .quote {
      border-left: 2px solid var(--accent);
      padding-left: 12px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px;
      background: #fff;
    }

    .faq-q {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .cta-band {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 32px 0;
      text-align: center;
      background: #fafafa;
    }

    .footer {
      padding: 32px 0 50px;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer a {
      color: var(--text);
    }

    @media (max-width: 900px) {
      .hero-grid,
      .grid-3,
      .steps,
      .testimonials,
      .bento-grid,
      .metrics,
      .logo-grid,
      .pricing,
      .team,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }

      .hero {
        text-align: center;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-meta {
        justify-content: center;
      }

      .font-controls {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-up,
      .card,
      .bento-card,
      .video-shell,
      .faq-item,
      .reveal,
      .typewriter::after {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }
