  * {
    box-sizing: border-box;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  }

  /* Hero Section - Premium Blue Theme */
  .hero {
    position: relative;
    padding: 100px 20px 60px;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr minmax(420px, 1fr);
    gap: 40px;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2ff, #f0f8ff);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 119, 255, 0.15);
  }

  /* Floating blue blobs */
  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 119, 255, 0.4), transparent 70%);
    animation: float 12s infinite ease-in-out;
    z-index: -1;
  }

  .hero::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    animation-delay: 0s;
  }

  .hero::after {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -80px;
    animation-delay: 3s;
  }

  /* Extra small animated shape */
  .hero__badge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.3), rgba(0, 191, 255, 0.3));
    box-shadow: 0 0 40px rgba(0, 119, 255, 0.2);
    animation: pulse 6s infinite alternate ease-in-out;
    position: absolute;
    left: 24px;
    top: 32px;
    z-index: -1;
  }

  .hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 14px;
  }

  .hero h1 .brand {
    color: var(--brand);
  }

  .hero .squiggle {
    display: inline-block;
    margin-top: 6px;
    color: var(--brand);
    font-size: 24px;
    letter-spacing: 2px;
  }

  .hero p {
    margin: 10px 0 0;
    max-width: 640px;
    color: var(--text);
  }

  .hero__aside {
    align-self: start;
    text-align: left;
  }

  .hero__aside .email {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    position: relative;
  }

  .hero__aside .email::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--brand);
    opacity: .5;
  }

  /* Soft divider wave */
  .divider {
    height: 80px;
    background: linear-gradient(to bottom, transparent 0 40%, var(--panel) 40% 100%);
  }

  /* Filters */
  .filters {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px 0;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr repeat(3, minmax(160px, 220px));
  }

  .filters input,
  .filters select {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border .2s, box-shadow .2s;
  }

  .filters input::placeholder {
    color: #9aa5b1;
  }

  .filters input:focus,
  .filters select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 5px var(--ring);
  }

  /* Jobs */
  .jobs {
    background: var(--panel);
    margin-top: 24px;
  }

  .jobs__wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    display: grid;
    gap: 16px;
  }

  .job {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    align-items: center;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .45s ease, transform .45s ease;
  }

  .job.show {
    opacity: 1;
    transform: none;
  }

  .job__title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
  }

  .job__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
  }

  .chip {
    background: #eef2f7;
    color: #0f172a;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
  }

  .job__right {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 14px;
    transition: transform .15s ease, box-shadow .2s ease, background .2s;
  }

  .btn--apply {
    background: var(--brand);
    color: #fff;
    /* box-shadow:0 8px 20px rgba(233,75,90,.25); */
  }

  .btn--apply:hover {
    transform: translateY(-2px);
    color: bisque
      /* box-shadow:0 12px 26px rgba(233,75,90,.35); */
  }

  .btn--ghost {
    background: #fff;
    color: var(--ink);
    border: 1px solid #e5e7eb;
  }

  .btn--ghost:hover {
    transform: translateY(-2px);
  }

  /* Empty state */
  .empty {
    background: var(--panel);
    text-align: center;
    padding: 70px 20px 90px;
  }

  .empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    box-shadow: var(--shadow);
  }

  .empty__title {
    font-weight: 800;
    color: var(--ink);
    margin: 8px 0 4px;
  }

  .empty__text {
    color: var(--text);
    max-width: 680px;
    margin: 0 auto;
  }

  .empty .email {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
  }

  /* Animations */
  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-20px) scale(1.05);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 30px rgba(0, 119, 255, 0.2);
    }

    100% {
      transform: scale(1.1);
      box-shadow: 0 0 50px rgba(0, 119, 255, 0.4);
    }
  }

  /* Fade in */
  .fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s, transform .6s;
  }

  .fade-in.show {
    opacity: 1;
    transform: none;
  }

  @media (max-width:900px) {
    .hero {
      grid-template-columns: 1fr;
    }

    .filters {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width:560px) {
    .filters {
      grid-template-columns: 1fr;
    }

    .job {
      grid-template-columns: 1fr;
    }

    .job__right {
      justify-content: flex-start;
    }
  }

  :root {
    --brand: #0077ff;
    --brand-light: #00bfff;
    --brand-dark: #1e3a8a;
    --ink: #0f172a;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: var(--ink);
  }

  /* Hero Section - Premium Blue Theme */
  .hero {
    position: relative;
    padding: 100px 20px 120px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(420px, 1fr);
    margin-top: 40px;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2ff, #f0f8ff);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 119, 255, 0.15);
  }

  /* Floating blue blobs */
  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 119, 255, 0.4), transparent 70%);
    animation: float 12s infinite ease-in-out;
    z-index: -1;
  }

  .hero::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    animation-delay: 0s;
  }

  .hero::after {
    width: 250px;
    height: 250px;
    bottom: -60px;
    right: -80px;
    animation-delay: 3s;
  }

  /* Extra small animated shape inside */
  .hero__badge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.3), rgba(0, 191, 255, 0.3));
    box-shadow: 0 0 40px rgba(0, 119, 255, 0.2);
    animation: pulse 6s infinite alternate ease-in-out;
    position: absolute;
    left: 24px;
    top: 32px;
    z-index: -1;
  }

  /* Floating animation */
  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-20px) scale(1.05);
    }
  }

  /* Pulsing glow */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 30px rgba(0, 119, 255, 0.2);
    }

    100% {
      transform: scale(1.1);
      box-shadow: 0 0 50px rgba(0, 119, 255, 0.4);
    }
  }

  /* Hero text styles */
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--brand-dark);
  }

  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
  }

  /* Animated wave divider */
  .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  .wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
  }

  .wave-divider path {
    animation: waveAnim 8s linear infinite;
  }

  @keyframes waveAnim {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1600px);
    }
  }

  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
      /* Center text on smaller screens */
    }

    .hero img {
      max-width: 100%;
      height: auto;
    }
  }

  @media (max-width: 560px) {

    /* Force image above text */
    .hero>div:nth-child(2) {
      order: -1;
    }

    .filters {
      grid-template-columns: 1fr;
    }

    .job {
      grid-template-columns: 1fr;
    }

    .job__right {
      justify-content: flex-start;
    }
  }