@font-face {
        font-family: "Mass Transit";
        src: url("MASSTRANSIT.ttf") format("truetype");
        font-weight: 400;
        font-style: normal;
        font-display: swap;
      }

      :root {
        --ink: #0c1017;
        --paper: #fbfaf6;
        --electric: #0bb2ff;
        --coral: #ff6f5b;
        --mint: #1fd7a8;
        --sun: #f2c0a1;
        --slate: #4d5562;
        --glow: rgba(11, 178, 255, 0.2);
        --border: rgba(12, 16, 23, 0.1);
        --shadow: 0 24px 60px rgba(12, 16, 23, 0.15);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: "Space Grotesk", "Segoe UI", sans-serif;
        color: var(--ink);
        background: radial-gradient(circle at top left, #ffffff 0%, #f5f6f0 50%, #efe9df 100%);
        min-height: 100vh;
        transition: background 0.6s ease, color 0.4s ease;
      }

      body.dark {
        --ink: #f4f3ef;
        --paper: #10131a;
        --electric: #2ac1ff;
        --coral: #ff907d;
        --mint: #44e0b8;
        --sun: #d8b08e;
        --slate: #b7bcc6;
        --border: rgba(244, 243, 239, 0.12);
        --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
        background: radial-gradient(circle at top left, #1a1f2a 0%, #12151c 55%, #0c0f14 100%);
      }

      body.dark .service-card,
      body.dark .hero-card,
      body.dark .contact {
        background: #141922;
      }

      body.dark .metric,
      body.dark .field input,
      body.dark .field textarea {
        background: #1a202b;
        color: var(--ink);
      }

      body.dark .story-item {
        background: #141922;
      }

      body.dark .logo {
        color: #ffffff;
      }

      body.dark header {
        background: transparent;
      }

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

      .page {
        position: relative;
        overflow: hidden;
      }

      .glow {
        position: fixed;
        inset: auto;
        border-radius: 999px;
        filter: blur(60px);
        opacity: 0.7;
        z-index: 0;
        transition: transform 0.2s ease-out;
        will-change: transform;
      }

      .glow.one {
        width: 400px;
        height: 400px;
        background: rgba(11, 178, 255, 0.25);
        top: -140px;
        left: -120px;
      }

      .glow.two {
        width: 280px;
        height: 280px;
        background: rgba(255, 111, 91, 0.25);
        top: 240px;
        right: -100px;
      }

      .glow.three {
        width: 320px;
        height: 320px;
        background: rgba(31, 215, 168, 0.25);
        bottom: -120px;
        left: 15%;
      }

      header {
        position: sticky;
        top: 0;
        z-index: 2;
        padding: 32px 6vw 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        backdrop-filter: none;
        border-bottom: 0;
      }

      .logo {
        font-weight: 700;
        letter-spacing: 0.12em;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 0;
        background: transparent;
        cursor: pointer;
        padding: 0;
        transition: color 0.4s ease;
      }

      .logo-text {
        font-family: "Mass Transit", "Space Grotesk", "Segoe UI", sans-serif;
        font-weight: 400;
        letter-spacing: -0.05em;
        font-size: 5.2rem;
      }

      .logo-badge {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--electric), var(--mint));
        display: grid;
        place-items: center;
        color: white;
        font-weight: 700;
      }

      nav {
        display: flex;
        gap: 24px;
        font-size: 0.95rem;
        align-items: center;
      }

      nav a {
        padding-bottom: 4px;
        border-bottom: 2px solid transparent;
        transition: border 0.3s ease;
      }

      nav a:hover {
        border-bottom-color: var(--ink);
      }

      .theme-toggle {
        border: 0;
        background: transparent;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        padding: 0;
        transition: color 0.4s ease;
        position: relative;
        top: -3px;
      }

      .theme-toggle .icon {
        width: 26px;
        height: 26px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
        display: block;
      }

      .theme-toggle .icon-sun {
        display: none;
      }

      .theme-toggle .icon-moon {
        display: block;
      }

      body.dark .theme-toggle .icon-sun {
        display: block;
      }

      body.dark .theme-toggle .icon-moon {
        display: none;
      }

      body.dark .theme-toggle {
        color: #ffffff;
      }

      .hero {
        position: relative;
        z-index: 2;
        padding: 80px 6vw 64px;
        display: grid;
        gap: 48px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        align-items: center;
      }

      .eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--slate);
      }

      h1 {
        font-family: "Fraunces", "Times New Roman", serif;
        font-weight: 700;
        font-size: clamp(2.5rem, 3.5vw, 4rem);
        margin: 16px 0 24px;
        line-height: 1.05;
      }


      .hero p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--slate);
        max-width: 520px;
      }

      .cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 32px;
      }

      .btn {
        padding: 14px 26px;
        border-radius: 999px;
        font-weight: 600;
        border: 2px solid transparent;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
        box-shadow: 0 10px 24px rgba(12, 16, 23, 0.12);
      }

      .btn.primary {
        background: var(--ink);
        color: var(--paper);
      }

      .btn.primary.error {
        background: #c23b2a;
      }

      .btn.secondary {
        background: transparent;
        border-color: var(--ink);
      }

      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(12, 16, 23, 0.18);
      }

      .hero-card {
        position: relative;
        padding: 32px;
        border-radius: 28px;
        background: white;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
        transition: background 0.4s ease, color 0.4s ease;
      }

      .hero-card::after {
        content: "";
        position: absolute;
        inset: 12px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(11, 178, 255, 0.15), rgba(255, 216, 122, 0.15));
        z-index: -1;
      }

      .metrics {
        display: grid;
        gap: 16px;
      }

      .metric {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        border-radius: 16px;
        background: #f8f7f3;
        font-weight: 600;
        transition: background 0.4s ease, color 0.4s ease;
      }

      .metric span {
        font-size: 1.1rem;
      }

      .metric strong {
        color: var(--electric);
        font-size: 1.4rem;
      }

      .section {
        position: relative;
        z-index: 2;
        padding: 64px 6vw;
      }

      .section-header {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 32px;
        flex-wrap: wrap;
      }

      .section-header h2 {
        margin: 0;
        font-size: clamp(1.8rem, 2.6vw, 2.6rem);
      }

      .section-note {
        margin: 12px 0 0;
        color: var(--slate);
        line-height: 1.6;
        max-width: 680px;
      }

      .seo-block {
        margin-top: 48px;
        margin-bottom: 48px;
        padding: 24px;
        border-radius: 20px;
        background: rgba(12, 16, 23, 0.04);
      }

      .seo-block h3 {
        margin-top: 0;
        margin-bottom: 12px;
      }

      .cta-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 28px 32px;
        border-radius: 24px;
        background: var(--ink);
        color: var(--paper);
        box-shadow: var(--shadow);
      }

      .cta-banner h2 {
        margin: 0 0 8px;
        font-size: clamp(1.6rem, 2.4vw, 2.4rem);
      }

      .cta-banner p {
        margin: 0;
        opacity: 0.8;
      }

      .cta-banner .btn {
        background: var(--paper);
        color: var(--ink);
        box-shadow: none;
      }

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

      @media (max-width: 720px) {
        .cta-banner {
          flex-direction: column;
          align-items: flex-start;
        }
      }

      .faq-grid {
        display: grid;
        gap: 16px;
        margin-top: 24px;
      }

      .faq-item {
        padding: 18px;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: white;
      }

      body.dark .faq-item {
        background: #141922;
      }


      .pill {
        padding: 8px 16px;
        background: var(--sun);
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
      }

      .service-grid {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }

      .service-card {
        background: white;
        border-radius: 24px;
        padding: 24px;
        border: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(12, 16, 23, 0.08);
        transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
      }

      .service-card:hover {
        transform: translateY(-6px);
      }

      .service-card h3 {
        margin-top: 12px;
        margin-bottom: 12px;
      }

      .service-card p {
        color: var(--slate);
        line-height: 1.6;
        margin: 0;
      }

      .story {
        display: grid;
        gap: 32px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        align-items: center;
      }

      .story-card {
        background: var(--ink);
        color: var(--paper);
        padding: 32px;
        border-radius: 28px;
        position: relative;
        overflow: hidden;
      }

      .story-card::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 216, 122, 0.3);
        top: -80px;
        right: -60px;
      }

      .story-card h3 {
        margin-top: 0;
      }

      .story-list {
        display: grid;
        gap: 16px;
      }

      .story-item {
        padding: 16px;
        border-radius: 16px;
        background: white;
        border: 1px solid var(--border);
        transition: background 0.4s ease, color 0.4s ease;
      }

      .story-item strong {
        display: block;
        margin-bottom: 6px;
      }

      .contact {
        background: white;
        border-radius: 28px;
        padding: 32px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
        transition: background 0.4s ease, color 0.4s ease;
      }

      .contact-form {
        display: grid;
        gap: 16px;
      }

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

      .field label {
        font-weight: 600;
        font-size: 0.95rem;
      }

      .field input,
      .field textarea {
        width: 100%;
        border-radius: 14px;
        border: 1px solid var(--border);
        padding: 12px 14px;
        font: inherit;
        background: #f5f4ef;
        transition: background 0.4s ease, color 0.4s ease;
      }

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

      .form-row {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }

      .form-note {
        font-size: 0.85rem;
        color: var(--slate);
      }

      .form-error {
        color: #c23b2a;
        font-size: 1rem;
        min-height: 1.1em;
      }

      .email-link {
        display: inline-block;
        transition: color 0.3s ease, text-shadow 0.3s ease;
      }

      .email-link:hover {
        color: var(--electric);
        text-shadow: 0 0 12px rgba(11, 178, 255, 0.5);
      }

      footer {
        padding: 32px 6vw 48px;
        color: var(--slate);
        font-size: 0.9rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }

      .reveal {
        opacity: 0;
        transform: translateY(18px);
        animation: rise 0.8s ease forwards;
      }

      .reveal.delay-1 {
        animation-delay: 0.1s;
      }

      .reveal.delay-2 {
        animation-delay: 0.2s;
      }

      .reveal.delay-3 {
        animation-delay: 0.3s;
      }

      @keyframes rise {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @media (max-width: 720px) {
        header {
          flex-direction: column;
          gap: 16px;
        }

        nav {
          flex-wrap: wrap;
          justify-content: center;
        }

        .hero {
          padding-top: 56px;
        }
      }
