    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

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

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

    header {
      border-bottom: 1px solid #e5e7eb;
      background: rgba(255, 255, 255, 0.95);
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
    }

    .container {
      max-width: 1040px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      font-size: 1.05rem;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 16px;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.4rem;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      font-size: 0.95rem;
    }

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

    .nav-links a:hover {
      color: var(--primary);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      background: #ecfdf3;
      color: var(--primary-dark);
      margin-bottom: 1.25rem;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
    }

    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-title {
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
    }

    .hero-subtitle {
      font-size: 1.02rem;
      color: var(--muted);
      margin-bottom: 1.75rem;
      max-width: 32rem;
    }

    .pill-notice {
      background: var(--bg-soft);
      border-radius: 1rem;
      padding: 1rem 1.1rem;
      font-size: 0.94rem;
      border: 1px solid #e5e7eb;
      margin-bottom: 1.25rem;
    }

    .pill-notice strong {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--primary-dark);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .btn {
      border-radius: 999px;
      padding: 0.7rem 1.3rem;
      font-size: 0.95rem;
      font-weight: 500;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 20px rgba(12, 148, 136, 0.18);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(12, 148, 136, 0.24);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid #d1d5db;
      color: var(--text);
    }

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

    .hero-secondary-text {
      font-size: 0.86rem;
      color: var(--muted);
    }

    .hero-card {
      background: radial-gradient(circle at top left, #ecfdf5 0, #eff6ff 40%, #ffffff 100%);
      border-radius: 1.5rem;
      padding: 1.6rem 1.5rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    .hero-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .hero-card-pill {
      font-size: 0.7rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: #022c22;
      color: #a7f3d0;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-card-list {
      list-style: none;
      padding: 0;
      margin: 0.9rem 0 0;
      font-size: 0.9rem;
      color: var(--muted);
      display: grid;
      gap: 0.55rem;
    }

    .hero-card-list li::before {
      content: "✦";
      color: var(--accent);
      margin-right: 0.4rem;
      font-size: 0.8rem;
    }

    section {
      padding: 3rem 0;
    }

    .section-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--primary-dark);
      margin-bottom: 0.3rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .section-text {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 42rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.6rem;
      margin-top: 1.8rem;
    }

    .card {
      background: var(--bg-soft);
      border-radius: 1.1rem;
      padding: 1.25rem 1.3rem;
      border: 1px solid #e5e7eb;
      font-size: 0.92rem;
    }

    .card h3 {
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }

    .card p {
      margin: 0.15rem 0 0.7rem;
      color: var(--muted);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: #e0f2fe;
      color: #075985;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.3rem;
      font-size: 0.8rem;
    }

    .keyword-pill {
      border-radius: 999px;
      border: 1px dashed #d1d5db;
      padding: 0.25rem 0.75rem;
      color: var(--muted);
      background: #ffffff;
    }

    .contact-section {
      background: var(--bg-soft);
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: start;
    }

    .contact-box {
      background: #ffffff;
      border-radius: 1.2rem;
      border: 1px solid #e5e7eb;
      padding: 1.5rem 1.4rem;
      font-size: 0.95rem;
    }

    .contact-box h3 {
      margin-top: 0;
      margin-bottom: 0.5rem;
    }

    .contact-box p {
      color: var(--muted);
      margin-top: 0;
      margin-bottom: 1rem;
    }

    .contact-details {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .contact-details a {
      color: var(--primary-dark);
      font-weight: 500;
    }

    footer {
      padding: 1.75rem 0 2.2rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    footer .footer-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      justify-content: space-between;
    }

    @media (max-width: 800px) {
      .hero-grid,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero {
        padding-top: 2.6rem;
      }
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }
      .btn {
        width: 100%;
        justify-content: center;
      }
    }