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

    :root {
      --white:   #FFFFFF;
      --off:     #F8F9FB;
      --border:  #E8EAED;
      --mid:     #6B7280;
      --dark:    #111827;
      --ink:     #0D0D1A;
      --teal:    #03B7C2;
      --blue:    #4374BA;
      --grad:    linear-gradient(135deg, #03B7C2 0%, #4374BA 100%);
      --grad-soft: linear-gradient(135deg, rgba(3,183,194,0.07) 0%, rgba(67,116,186,0.07) 100%);
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 16px 48px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.05);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', system-ui, sans-serif;
      background: var(--white);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    @media (max-width: 640px) { .container { padding: 0 20px; } }

    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 8px;
      font-family: 'Poppins', sans-serif; font-size: 0.875rem; font-weight: 600;
      text-decoration: none; transition: all 0.22s ease; cursor: pointer; border: none;
    }
    .btn-primary {
      background: var(--grad); color: #fff;
      box-shadow: 0 4px 20px rgba(3,183,194,0.25);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(3,183,194,0.35); }
    .btn-outline {
      background: transparent; color: var(--ink);
      border: 1.5px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--teal); color: var(--teal); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
    main { padding-top: 88px; }
    .nav-logo svg { height: 48px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500; color: var(--mid);
      text-decoration: none; padding: 7px 14px; border-radius: 6px; transition: all 0.18s;
    }
    .nav-links a:hover { color: var(--ink); background: var(--off); }
    .nav-cta { background: var(--grad) !important; color: #fff !important; margin-left: 10px; }
    .nav-cta:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(3,183,194,0.3) !important; background: var(--off) !important; }

    .hamburger {
      display: none; background: none; border: 1.5px solid var(--border); border-radius: 6px;
      width: 38px; height: 38px; cursor: pointer; flex-direction: column;
      align-items: center; justify-content: center; gap: 5px;
    }
    .hamburger span { display: block; width: 18px; height: 1.5px; background: var(--ink); }
    .mobile-nav {
      display: none; flex-direction: column; background: var(--white);
      border-top: 1px solid var(--border); padding: 16px 20px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 0.875rem; font-weight: 500; color: var(--ink);
      text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border);
    }
    .mobile-nav a:last-child { border-bottom: none; color: var(--teal); }

    @media (max-width: 800px) { .nav-links { display: none; } .hamburger { display: flex; } }

    /* ── HERO ── */
    .hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 52px 52px; opacity: 0.45; pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
      background: linear-gradient(to top, var(--white), transparent); pointer-events: none;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center; position: relative; z-index: 1;
    }
    @media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; gap: 48px; } }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.5s ease 0.05s forwards;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 28px; height: 2px;
      background: var(--grad); border-radius: 2px;
    }
    .hero-h1 {
      font-size: clamp(2.8rem, 4.5vw, 4.2rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -0.028em; margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.5s ease 0.13s forwards;
    }
    .hero-sub {
      font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--mid);
      max-width: 440px; margin-bottom: 40px;
      opacity: 0; animation: fadeUp 0.5s ease 0.21s forwards;
    }
    .hero-actions {
      display: flex; gap: 12px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.5s ease 0.29s forwards;
    }

    /* Hero card */
    .hero-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 16px;
      box-shadow: var(--shadow-lg); overflow: hidden;
      opacity: 0; animation: fadeLeft 0.6s ease 0.38s forwards;
    }
    @media (max-width: 860px) { .hero-card { display: none; } }
    .card-bar {
      padding: 14px 18px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px; background: var(--off);
    }
    .dots { display: flex; gap: 6px; }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #FF5F57; } .dot-y { background: #FEBC2E; } .dot-g { background: #28C840; }
    .card-name { flex: 1; text-align: center; font-size: 0.72rem; font-weight: 500; color: var(--mid); }
    .card-body { padding: 24px; }
    .card-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 13px 0; border-bottom: 1px solid var(--border);
      font-size: 0.82rem;
    }
    .card-row:last-of-type { border-bottom: none; }
    .row-label { font-weight: 500; color: var(--mid); }
    .row-val { font-weight: 600; }
    .row-badge {
      background: var(--grad-soft); border: 1px solid rgba(3,183,194,0.2);
      color: var(--teal); font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.05em; padding: 3px 10px; border-radius: 20px;
    }
    .row-check {
      width: 20px; height: 20px; border-radius: 50%; background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 0.6rem;
    }
    .card-progress { margin-top: 20px; }
    .prog-labels { display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 500; color: var(--mid); margin-bottom: 8px; }
    .prog-bar { height: 6px; background: var(--off); border-radius: 99px; overflow: hidden; }
    .prog-fill { height: 100%; background: var(--grad); border-radius: 99px; width: 72%; }

    /* ── PROOF BAR ── */
    .proof-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; background: var(--off); }
    .proof-inner { display: flex; align-items: center; gap: 40px; justify-content: center; flex-wrap: wrap; }
    .proof-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--mid); }
    .proof-stats { display: flex; gap: 40px; flex-wrap: wrap; }
    .proof-stat { text-align: center; }
    .proof-num {
      font-size: 1.5rem; font-weight: 800; line-height: 1;
      background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .proof-lbl { font-size: 0.68rem; font-weight: 500; color: var(--mid); margin-top: 2px; }

    /* ── SECTIONS ── */
    .section { padding: 96px 0; }
    .section-alt { background: var(--off); }
    .section-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
    .section-h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -0.022em; line-height: 1.14; margin-bottom: 16px; }
    .section-sub { font-size: 0.95rem; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 520px; }
    .section-header { margin-bottom: 56px; }

    /* ── BUCKETS ── */
    .buckets-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    @media (max-width: 900px) { .buckets-grid { grid-template-columns: 1fr; } }

    .bucket-card {
      background: var(--off); border: 1px solid var(--border); border-radius: 16px;
      padding: 40px 32px; display: flex; flex-direction: column; gap: 16px;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    }
    .bucket-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .bucket-card--mid {
      background: var(--ink); border-color: var(--ink);
      position: relative; overflow: hidden;
    }
    .bucket-card--mid::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 240px; height: 240px;
      background: radial-gradient(ellipse, rgba(3,183,194,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .bucket-num {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--teal);
    }
    .bucket-title {
      font-size: 1.15rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.3;
    }
    .bucket-card--mid .bucket-title { color: var(--white); }
    .bucket-desc {
      font-size: 0.845rem; font-weight: 300; color: var(--mid); line-height: 1.8; flex: 1;
    }
    .bucket-card--mid .bucket-desc { color: rgba(255,255,255,0.55); }
    .bucket-examples { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
    .bucket-tag {
      font-size: 0.68rem; font-weight: 600; padding: 5px 12px; border-radius: 20px;
      border: 1.5px solid var(--border); color: var(--mid);
    }
    .bucket-card--mid .bucket-tag { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); }

    /* ── CAPABILITY STRIP ── */
    .cap-strip {
      margin-top: 40px; padding: 28px 36px;
      border: 1px solid var(--border); border-radius: 12px;
      display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
      background: var(--off);
    }
    .cap-strip-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.10em;
      text-transform: uppercase; color: var(--mid); white-space: nowrap;
    }
    .cap-list { display: flex; flex-wrap: wrap; gap: 8px 28px; flex: 1; }
    .cap-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; font-weight: 500; color: var(--ink);
    }
    .cap-dot {
      width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
      background: var(--grad);
    }

    /* ── WORK ── */
    .work-grid { display: grid; grid-template-columns: 3fr 2fr 2fr; gap: 24px; }
    @media (max-width: 1000px) { .work-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 640px) { .work-grid { grid-template-columns: 1fr; } }

    .work-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 16px;
      padding: 40px 36px; display: flex; flex-direction: column; justify-content: space-between;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    }
    .work-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .work-card--feature { border-color: rgba(3,183,194,0.25); background: linear-gradient(160deg, rgba(3,183,194,0.04), rgba(67,116,186,0.03)); }
    .work-tag {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 14px;
    }
    .work-title { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 14px; }
    .work-desc { font-size: 0.84rem; font-weight: 300; color: var(--mid); line-height: 1.8; }
    .work-card-top { margin-bottom: 28px; }
    .work-card-bottom { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); }
    .work-detail { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 500; color: var(--mid); }
    .work-detail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

    /* ── RESCUE BAR ── */
    .rescue-bar {
      margin-top: 24px; padding: 32px 40px;
      background: var(--ink); border-radius: 16px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
      position: relative; overflow: hidden;
    }
    .rescue-bar::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: radial-gradient(ellipse, rgba(3,183,194,0.15) 0%, transparent 65%);
      pointer-events: none;
    }
    .rescue-bar-left { position: relative; z-index: 1; }
    .rescue-bar-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
    .rescue-bar-sub { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.48); line-height: 1.7; max-width: 560px; }

    .timeline { display: grid; grid-template-columns: repeat(5,1fr); position: relative; }
    .timeline::before {
      content: ''; position: absolute; top: 27px; left: 10%; right: 10%;
      height: 2px; background: var(--grad);
    }
    @media (max-width: 700px) { .timeline { grid-template-columns: 1fr 1fr; gap: 32px; } .timeline::before { display: none; } }
    .tl-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
    .tl-num {
      width: 54px; height: 54px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 700; color: var(--mid);
      margin-bottom: 20px; position: relative; z-index: 1; transition: all 0.25s;
    }
    .tl-step:hover .tl-num { background: var(--grad); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(3,183,194,0.3); }
    .tl-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
    .tl-detail { font-size: 0.72rem; font-weight: 300; color: var(--mid); line-height: 1.6; }

    /* ── ABOUT ── */
    .about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
    @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; border-radius: 16px; display: block; position: relative; z-index: 1; box-shadow: var(--shadow-lg); }
    .about-deco { position: absolute; bottom: -16px; right: -16px; width: 100%; height: 100%; border-radius: 16px; border: 2px solid var(--border); z-index: 0; }
    .about-badge {
      position: absolute; bottom: 20px; left: -20px; background: var(--white);
      border: 1px solid var(--border); border-radius: 12px; padding: 14px 20px;
      z-index: 2; box-shadow: var(--shadow-md);
    }
    .about-badge-num { font-size: 1.5rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
    .about-badge-lbl { font-size: 0.68rem; font-weight: 500; color: var(--mid); }
    .about-body { font-size: 0.95rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin: 20px 0 32px; }
    .tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      font-size: 0.72rem; font-weight: 600; padding: 6px 14px; border-radius: 6px;
      border: 1.5px solid var(--border); color: var(--mid); transition: all 0.18s;
    }
    .tag:hover { border-color: var(--teal); color: var(--teal); }

    /* ── CTA SECTION ── */
    .cta-section { padding: 100px 0; background: var(--ink); position: relative; overflow: hidden; }
    .cta-section::before {
      content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(3,183,194,0.13) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
    @media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; gap: 48px; } }
    .cta-h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; color: var(--white); margin-bottom: 20px; }
    .cta-sub { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 36px; }
    .cta-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; }
    .cta-box-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 24px; }
    .cta-step { display: flex; gap: 16px; margin-bottom: 20px; }
    .cta-step:last-child { margin-bottom: 0; }
    .cta-step-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: white; flex-shrink: 0; }
    .cta-step-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
    .cta-step-text span { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.42); }

    /* ── FOOTER ── */
    footer { border-top: 1px solid var(--border); padding: 32px 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-copy { font-size: 0.75rem; color: var(--mid); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 0.75rem; font-weight: 500; color: var(--mid); text-decoration: none; transition: color 0.18s; }
    .footer-links a:hover { color: var(--teal); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeLeft { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
    .reveal { opacity:0; transform:translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity:1; transform:none; }