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

  :root {
    --bg: #0B0A14;
    --surface: #14131F;
    --surface-2: #1D1B2A;
    --surface-3: #272535;
    --border: #2A2839;
    --border-light: #383549;
    --text: #F4F1FB;
    --text-muted: #A39FB8;
    --text-faint: #6B6680;
    --accent: #A78BFA;
    --accent-bright: #C4B5FD;
    --accent-deep: #7C3AED;
    --accent-soft: rgba(167, 139, 250, 0.12);
    --accent-glow: rgba(167, 139, 250, 0.28);
    --green: #4ADE80;
    --green-soft: rgba(74, 222, 128, 0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
      radial-gradient(ellipse 800px 600px at 15% 5%, rgba(167, 139, 250, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 600px 500px at 85% 60%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.85 0 0 0 0 0.85 0 0 0 0.025 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.6;
  }

  .wrap {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px;
  }

  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 10, 20, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
  }

  .logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 13.5px;
    font-weight: 500;
  }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    padding: 8px 16px;
    background: var(--accent);
    color: #0B0A14;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
  }

  .nav-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
  }

  .hero {
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    min-height: 75vh;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: var(--green-soft);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 32px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  h1.mega {
    font-size: clamp(64px, 11vw, 156px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -5px;
    margin-bottom: 32px;
  }

  h1.mega .accent { color: var(--accent); }

  .hero-tagline {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 36px;
  }

  .hero-tagline strong {
    color: var(--text);
    font-weight: 600;
  }

  .hero-cta-row { display: flex; gap: 12px; }

  .btn-primary {
    padding: 14px 26px;
    background: var(--accent);
    color: #0B0A14;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 24px var(--accent-glow);
  }

  .btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--accent-glow);
  }

  .btn-secondary {
    padding: 14px 26px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Hero photo - now with actual image */
  .hero-photo {
    width: 320px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px var(--accent-glow);
    position: relative;
    transition: transform 0.4s;
  }

  .hero-photo:hover {
    transform: translateY(-4px);
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 10, 20, 0.6) 100%);
    pointer-events: none;
  }

  section { padding: 100px 0; position: relative; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
  }

  .section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
  }

  h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
    max-width: 800px;
  }

  h2 .accent { color: var(--accent); }

  .section-lede {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.55;
    margin-bottom: 50px;
  }

  .tools-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
  }

  .chip {
    padding: 10px 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
    cursor: default;
  }

  .chip:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
  }

  .service {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .service:hover {
    background: var(--surface-2);
    border-color: var(--border-light);
    transform: translateY(-4px);
  }

  .service:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
    border: 1px solid rgba(167, 139, 250, 0.2);
  }

  .service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
  }

  .service-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .hero-stat {
    padding: 50px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    border-radius: 24px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.35);
  }

  .hero-stat-num {
    font-size: 140px;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -6px;
  }

  .hero-stat-body h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.8px;
  }

  .hero-stat-body p {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 400px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 40px 0;
  }

  .stat-card {
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s;
    position: relative;
  }

  .stat-card:hover {
    background: var(--surface-2);
    transform: translateY(-3px);
    border-color: var(--accent);
  }

  .stat-num {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -2.5px;
    margin-bottom: 14px;
  }

  .stat-num.green { color: var(--green); }

  .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
  }

  .stat-sub {
    font-size: 12px;
    color: var(--text-faint);
    font-weight: 400;
  }

  .ss-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0;
  }

  /* Feed design - masonry-style columns for variable height feed images */
  .feed-grid {
    column-count: 2;
    column-gap: 16px;
    margin: 30px 0;
  }

  .feed-grid .ss-card {
    break-inside: avoid;
    margin-bottom: 16px;
    display: inline-block;
    width: 100%;
  }

  .ss-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
  }

  .ss-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .ss-card img {
    width: 100%;
    display: block;
    background: var(--surface-2);
  }

  .ss-caption {
    padding: 14px 18px;
    font-size: 12.5px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    font-weight: 400;
  }

  .ss-hero {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    margin: 30px 0;
    transition: all 0.3s;
  }

  .ss-hero:hover {
    border-color: var(--accent);
  }

  .ss-hero img {
    width: 100%;
    display: block;
  }

  .ss-hero-caption {
    padding: 18px 24px;
    font-size: 13.5px;
    color: var(--text);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 50%);
  }

  .ss-hero-caption .badge {
    background: var(--accent);
    color: #0B0A14;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.5px;
  }

  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
  }

  .reason-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s;
  }

  .reason-card:hover {
    background: var(--surface-2);
    transform: translateY(-3px);
  }

  .reason-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
  }

  .reason-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }

  .reason-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .contact {
    margin: 60px 0 80px;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border-light);
    border-radius: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
  }

  .contact > * { position: relative; }

  .contact h2 { margin: 0 auto 16px; }
  .contact .section-lede { margin: 0 auto 40px; }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
  }

  .contact-link:hover {
    background: var(--surface-3);
    border-color: var(--accent);
    transform: translateY(-2px);
  }

  .contact-link .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-link .label {
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .contact-link .val { font-size: 13.5px; }

  footer {
    padding: 32px 0 50px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-faint);
    font-size: 12px;
    margin-top: 60px;
  }

  /* TABLET (1024px and below) */
  @media (max-width: 1024px) {
    .wrap { padding: 0 40px; }
    .nav-inner { padding: 18px 40px; }
    h1.mega { font-size: clamp(56px, 10vw, 120px); letter-spacing: -4px; }
    .hero-photo { width: 280px; height: 340px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services, .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-num { font-size: 48px; }
    .hero-stat-num { font-size: 110px; }
    section { padding: 80px 0; }
  }

  /* MOBILE (768px and below) */
  @media (max-width: 768px) {
    .wrap { padding: 0 20px; }
    .nav-inner { padding: 14px 20px; }
    .nav-links { display: none; }
    .logo { font-size: 13px; letter-spacing: 0.2px; }
    .nav-cta { padding: 7px 14px; font-size: 12px; }

    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 50px 0 60px;
      gap: 36px;
      text-align: center;
    }
    .hero > div:first-child { display: flex; flex-direction: column; align-items: center; }
    .hero-tag { margin-bottom: 24px; }
    h1.mega {
      font-size: clamp(52px, 14vw, 88px);
      letter-spacing: -2.5px;
      line-height: 0.95;
      margin-bottom: 24px;
    }
    .hero-tagline { font-size: 16px; margin-bottom: 28px; }
    .hero-cta-row { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 13.5px; }
    .hero-photo {
      width: 100%;
      max-width: 260px;
      height: 320px;
      margin: 0 auto;
      order: -1;
    }

    section { padding: 60px 0; }
    .section-tag { font-size: 11px; letter-spacing: 2px; margin-bottom: 14px; }
    h2 { font-size: 30px; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 18px; }
    .section-lede { font-size: 15.5px; margin-bottom: 36px; }

    .tools-row { gap: 6px; }
    .chip { padding: 8px 14px; font-size: 12px; }

    .services, .reasons-grid { grid-template-columns: 1fr; gap: 10px; }
    .service, .reason-card { padding: 24px; }
    .service-title, .reason-title { font-size: 16px; }
    .service-desc, .reason-desc { font-size: 13px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card { padding: 22px 18px; }
    .stat-num { font-size: 38px; letter-spacing: -1.5px; margin-bottom: 10px; }
    .stat-label { font-size: 11px; }
    .stat-sub { font-size: 11px; }

    .hero-stat {
      grid-template-columns: 1fr;
      padding: 30px 24px;
      gap: 14px;
      text-align: center;
    }
    .hero-stat-num { font-size: 88px; letter-spacing: -4px; }
    .hero-stat-body h3 { font-size: 22px; }
    .hero-stat-body p { font-size: 14px; margin: 0 auto; }

    .ss-grid-2 { grid-template-columns: 1fr; gap: 14px; }
    .feed-grid { column-count: 1; column-gap: 0; }
    .feed-grid .ss-card { margin-bottom: 14px; }

    .ss-hero-caption { padding: 14px 16px; font-size: 12.5px; flex-wrap: wrap; gap: 8px; }
    .ss-hero-caption .badge { font-size: 11px; }
    .ss-caption { font-size: 12px; padding: 12px 16px; }

    .contact {
      margin: 40px 0 60px;
      padding: 50px 24px;
      border-radius: 20px;
    }
    .contact-grid { grid-template-columns: 1fr; gap: 10px; }
    .contact-link { padding: 14px 18px; }
    .contact-link .val {
      font-size: 12.5px;
      word-break: break-word;
    }
  }

  /* SMALL MOBILE (480px and below) */
  @media (max-width: 480px) {
    .wrap { padding: 0 16px; }
    .nav-inner { padding: 12px 16px; }
    .logo { font-size: 11.5px; gap: 7px; }
    .logo-dot { width: 7px; height: 7px; }
    .nav-cta { padding: 6px 12px; font-size: 11.5px; }

    h1.mega { font-size: 56px; letter-spacing: -2px; }
    .hero { padding: 40px 0 50px; }
    .hero-photo { max-width: 220px; height: 280px; }
    .hero-tagline { font-size: 15px; }

    h2 { font-size: 26px; letter-spacing: -1px; }

    .hero-stat { padding: 28px 20px; }
    .hero-stat-num { font-size: 72px; letter-spacing: -3px; }
    .hero-stat-body h3 { font-size: 19px; }

    .stat-num { font-size: 32px; letter-spacing: -1px; }
    .stat-card { padding: 20px 16px; }

    .service, .reason-card { padding: 22px; }
    .contact { padding: 40px 18px; }
    .contact-link { padding: 12px 16px; }
  }
