  @font-face { font-family: "Unbounded"; src: url("/assets/fonts/unbounded-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }
  @font-face { font-family: "Jakarta"; src: url("/assets/fonts/jakarta-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
  @font-face { font-family: "Jakarta"; src: url("/assets/fonts/jakarta-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }

  :root {
    --bg: #FBF6FF; --bg-raised: #FFFFFF; --fg: #0E0A17; --fg-muted: #5B5470;
    --line: rgba(14,10,23,0.14);
    --yellow: #FFD843; --indigo: #3536BF; --lime: #C6FF3D;
    --ink: #0E0A17; --on-dark: #FBF6FF; --danger: #D62839;
    color-scheme: light;
  }
  @media (prefers-color-scheme: dark) {
    :root { --bg: #0E0A17; --bg-raised: #180F26; --fg: #FBF6FF; --fg-muted: #B9AFC9; --line: rgba(251,246,255,0.16); --indigo: #5457FF; color-scheme: dark; }
  }
  :root[data-theme="dark"] { --bg: #0E0A17; --bg-raised: #180F26; --fg: #FBF6FF; --fg-muted: #B9AFC9; --line: rgba(251,246,255,0.16); --indigo: #5457FF; color-scheme: dark; }
  :root[data-theme="light"] { --bg: #FBF6FF; --bg-raised: #FFFFFF; --fg: #0E0A17; --fg-muted: #5B5470; --line: rgba(14,10,23,0.14); --indigo: #3536BF; color-scheme: light; }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  }
  body {
    margin: 0; background: var(--bg); color: var(--fg);
    font-family: "Jakarta", -apple-system, sans-serif; font-weight: 500; font-size: 17px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; position: relative;
  }
  body::before {
    content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.05; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  img { max-width: 100%; display: block; }
  .display { font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: uppercase; line-height: 0.94; letter-spacing: -0.01em; text-wrap: balance; }
  .eyebrow { font-family: "Jakarta", sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-muted); }
  a { color: inherit; }
  .wrap { max-width: 1180px; margin: 0 auto; padding-left: clamp(20px, 5vw, 64px); padding-right: clamp(20px, 5vw, 64px); }
  .wrap-narrow { max-width: 760px; margin: 0 auto; padding-left: clamp(20px, 5vw, 64px); padding-right: clamp(20px, 5vw, 64px); }

  header.nav { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .25s ease; }
  header.nav.solid { border-color: var(--line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px clamp(20px, 5vw, 64px); }
  .brand-lockup { display: flex; align-items: center; gap: 9px; text-decoration: none; cursor: pointer; }
  .brand-lockup .mark-chip { width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; flex: none; }
  .brand-lockup .mark-chip img { width: 18px; height: 18px; }
  .brand-lockup span { font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: uppercase; font-size: 15px; letter-spacing: -0.01em; color: var(--fg); }
  nav.links { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 24px); }
  nav.links a { text-decoration: none; font-size: 14px; font-weight: 800; color: var(--fg-muted); position: relative; padding: 4px 2px; cursor: pointer; }
  nav.links a:hover, nav.links a.active { color: var(--fg); }
  nav.links a.active { border-bottom: 2px solid var(--indigo); }
  .nav-cta { background: var(--ink); color: var(--on-dark); text-decoration: none; font-family: "Jakarta"; font-weight: 800; font-size: 14px; padding: 10px 20px; border-radius: 100px; border: 2px solid var(--ink); white-space: nowrap; transition: transform .15s ease, background .15s ease, color .15s ease; cursor: pointer; }
  .nav-cta:hover { background: var(--indigo); border-color: var(--indigo); transform: translateY(-2px); }
  @media (max-width: 860px) { nav.links { display: none; } }

  section.hero { padding: clamp(56px, 10vw, 120px) 0 clamp(20px, 4vw, 40px); text-align: center; }
  .hero-eyebrow-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
  .eyebrow-chip { display: inline-flex; align-items: center; gap: 8px; }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); flex: none; }
  .dot.dot-yellow { background: var(--yellow); }
  h1.hero-line {
    font-size: clamp(64px, 13vw, 176px); color: var(--yellow);
    -webkit-text-stroke: 3px var(--indigo); filter: drop-shadow(7px 7px 0 var(--indigo));
    display: block; width: fit-content; max-width: 100%; margin: 0 auto; text-align: center;
    transform: rotate(-2deg);
  }
  .hero-sub { max-width: 560px; margin: 34px auto 0; font-size: clamp(17px, 2vw, 19.5px); color: var(--fg-muted); font-weight: 500; text-align: center; }
  .hero-actions { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--ink); text-decoration: none;
    font-family: "Jakarta"; font-weight: 800; font-size: 15px; padding: 15px 28px; border-radius: 100px;
    border: 2.5px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transition: transform .15s ease, box-shadow .15s ease;
    cursor: pointer;
  }
  .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
  .btn-primary:active { transform: translate(1px,1px); box-shadow: 3px 3px 0 var(--ink); }
  .btn-primary:disabled { opacity: .6; cursor: default; transform: none; box-shadow: 5px 5px 0 var(--ink); }
  .btn-primary svg { width: 15px; height: 15px; }
  .link-quiet { text-decoration: none; font-family: "Jakarta"; font-weight: 800; font-size: 14.5px; color: var(--fg); border-bottom: 2px solid var(--lime); padding-bottom: 3px; cursor: pointer; }

  .ribbon-wrap { margin: clamp(20px, 3.5vw, 40px) 0; overflow: hidden; }
  .ribbon { background: var(--indigo); color: var(--on-dark); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); transform: rotate(-1.6deg) scale(1.03); padding: 13px 0; overflow: hidden; white-space: nowrap; }
  .ribbon-track { display: inline-flex; align-items: center; gap: 36px; animation: scroll-left 30s linear infinite; }
  @keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ribbon:hover .ribbon-track { animation-play-state: paused; }
  .ribbon-track span { font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: uppercase; font-size: 17px; letter-spacing: -0.01em; }
  .ribbon-track span em { font-style: normal; margin: 0 8px; color: var(--yellow); }

  .section { padding: clamp(44px, 7vw, 84px) 0; }
  #brands { scroll-margin-top: 84px; }
  .section.tight { padding-top: clamp(36px, 6vw, 64px); }
  .section.snug-top { padding-top: clamp(12px, 2vw, 24px); }
  .section-head { margin-bottom: clamp(30px, 5vw, 50px); }
  .section-head.center { text-align: center; }
  h2.display { font-size: clamp(32px, 5.2vw, 56px); margin: 10px 0 0; }
  h1.page-head { font-size: clamp(40px, 7vw, 84px); margin: 10px 0 0; }

  /* mini service teaser on home */
  .teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .teaser-card { border: 2.5px solid var(--ink); border-radius: 14px; padding: 26px; box-shadow: 6px 6px 0 var(--ink); }
  .teaser-card:nth-child(1) { background: var(--yellow); color: var(--ink); }
  .teaser-card:nth-child(2) { background: var(--indigo); color: #fff; }
  .teaser-card h3 { font-family: "Unbounded"; text-transform: uppercase; font-size: 21px; margin: 0 0 10px; }
  .teaser-card p { margin: 0 0 16px; font-size: 15px; opacity: .92; }
  .teaser-card a { text-decoration: none; font-weight: 800; font-size: 13.5px; border-bottom: 2px solid currentColor; padding-bottom: 2px; cursor: pointer; }
  @media (max-width: 700px) { .teaser-grid { grid-template-columns: 1fr; } }

  /* services pillars */
  .pillar { border: 2.5px solid var(--ink); border-radius: 18px; padding: clamp(26px,4vw,40px); box-shadow: 7px 7px 0 var(--ink); margin-bottom: 28px; }
  .pillar.p-yellow { background: var(--yellow); color: var(--ink); }
  .pillar.p-indigo { background: var(--indigo); color: #fff; }
  .pillar-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
  .pillar h3 { font-family: "Unbounded"; text-transform: uppercase; font-size: clamp(22px,3vw,30px); margin: 0; }
  .pillar > p { max-width: 60ch; opacity: .92; margin: 0 0 20px; }
  .pillar ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .pillar li { font-size: 14.5px; font-weight: 600; padding-left: 22px; position: relative; }
  .pillar li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
  @media (max-width: 620px) { .pillar ul { grid-template-columns: 1fr; } }

  /* about */
  .about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,60px); align-items: start; }
  .about-copy p { color: var(--fg-muted); font-size: 16.5px; max-width: 54ch; }
  .about-copy p.lede { color: var(--fg); font-size: 19px; font-weight: 500; }
  .role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .role-card { border: 2.5px solid var(--ink); border-radius: 14px; padding: 18px; box-shadow: 5px 5px 0 var(--ink); }
  .role-card:nth-child(1) { background: var(--yellow); color: var(--ink); }
  .role-card:nth-child(2) { background: var(--indigo); color: #fff; }
  .role-card:nth-child(3) { background: var(--lime); color: var(--ink); }
  .role-card:nth-child(4) { background: var(--bg-raised); color: var(--fg); }
  .role-card h4 { font-family: "Unbounded"; text-transform: uppercase; font-size: 15px; margin: 0 0 6px; }
  .role-card p { margin: 0; font-size: 13.5px; opacity: .9; }
  @media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

  .process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-item { position: relative; overflow: hidden; border: 2.5px solid var(--ink); border-radius: 14px; padding: clamp(24px, 3vw, 30px) clamp(20px, 3vw, 26px); box-shadow: 6px 6px 0 var(--ink); display: flex; flex-direction: column; gap: 12px; }
  .process-item::before { content: attr(data-num); position: absolute; top: -0.15em; right: 0.1em; font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 100px; line-height: 1; opacity: 0.16; }
  .process-item.p-yellow { background: var(--yellow); color: var(--ink); }
  .process-item.p-lime { background: var(--lime); color: var(--ink); }
  .process-item.p-indigo { background: var(--indigo); color: #fff; }
  .process-item h3 { font-family: "Unbounded", sans-serif; text-transform: uppercase; font-size: 24px; margin: 0; line-height: 1; position: relative; }
  .process-item p { margin: 0; font-size: 15px; line-height: 1.65; position: relative; opacity: 0.94; }
  @media (max-width: 760px) { .process-list { grid-template-columns: 1fr; } }

  .sticker-grid { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
  .sticker { background: var(--bg-raised); border: 2.5px solid var(--ink); border-radius: 16px; width: 148px; height: 100px; display: flex; align-items: center; justify-content: center; padding: 16px; box-shadow: 5px 5px 0 var(--ink); transition: transform .18s ease, box-shadow .18s ease; }
  .sticker:hover { transform: rotate(0deg) translateY(-3px) !important; box-shadow: 5px 8px 0 var(--indigo); }
  .sticker img { max-height: 38px; max-width: 100%; object-fit: contain; }
  .sticker:nth-child(7n+1) { transform: rotate(-5deg); }
  .sticker:nth-child(7n+2) { transform: rotate(4deg); }
  .sticker:nth-child(7n+3) { transform: rotate(-2deg); }
  .sticker:nth-child(7n+4) { transform: rotate(6deg); }
  .sticker:nth-child(7n+5) { transform: rotate(-4deg); }
  .sticker:nth-child(7n+6) { transform: rotate(2deg); }
  .sticker:nth-child(7n+7) { transform: rotate(-6deg); }
  .brands-note { margin-top: 28px; font-size: 13.5px; color: var(--fg-muted); text-align: center; }

  .band-cta { background: var(--indigo); color: #fff; text-align: center; }
  .band-cta .eyebrow { color: rgba(255,255,255,0.7); }
  .cta-head { font-size: clamp(46px, 9vw, 104px); color: var(--yellow); -webkit-text-stroke: 3px var(--ink); filter: drop-shadow(6px 6px 0 var(--ink)); display: inline-block; transform: rotate(-1.5deg); margin: 10px 0 0; }
  .cta-sub { max-width: 480px; margin: 24px auto 0; color: rgba(255,255,255,0.82); }
  .contact-row { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .socials-row { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
  .socials-row a { text-decoration: none; font-weight: 800; font-size: 14.5px; color: #fff; border-bottom: 2px solid var(--yellow); padding-bottom: 3px; }

  /* forms */
  .form-card { border: 2.5px solid var(--ink); border-radius: 18px; padding: clamp(24px,4vw,40px); box-shadow: 8px 8px 0 var(--ink); background: var(--bg-raised); }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .field.full { grid-column: 1 / -1; }
  .field label { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--fg-muted); }
  .field label .opt { text-transform: none; font-weight: 500; letter-spacing: 0; opacity: .7; }
  .field input, .field select, .field textarea {
    font-family: "Jakarta"; font-weight: 500; font-size: 15.5px; color: var(--fg);
    border: 2px solid var(--ink); border-radius: 10px; padding: 12px 14px; background: var(--bg);
    outline-offset: 2px;
  }
  .field textarea { resize: vertical; min-height: 96px; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: 2.5px solid var(--indigo); }
  .form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
  .form-note { font-size: 13px; color: var(--fg-muted); }
  .form-status { font-size: 14px; font-weight: 700; padding: 12px 16px; border-radius: 10px; border: 2px solid var(--ink); margin-bottom: 18px; display: none; }
  .form-status.show { display: block; }
  .form-status.ok { background: var(--lime); color: var(--ink); }
  .form-status.err { background: #FFD9DC; color: var(--danger); border-color: var(--danger); }
  @media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

  .field-error { font-size: 12.5px; font-weight: 700; color: var(--danger); min-height: 15px; display: none; }
  .field-error.show { display: block; }
  .field.invalid input, .field.invalid .phone-input-group { border-color: var(--danger); }
  .field.invalid .phone-input-group input { border-color: transparent; }

  .phone-input-group {
    display: flex; align-items: stretch; border: 2px solid var(--ink); border-radius: 10px;
    background: var(--bg); overflow: visible; position: relative;
  }
  .phone-input-group input {
    border: none !important; border-radius: 0 10px 10px 0 !important; flex: 1; min-width: 0;
    outline-offset: -2px;
  }
  .country-select {
    display: flex; align-items: center; gap: 6px; padding: 0 10px; background: var(--bg-raised);
    border: none; border-right: 2px solid var(--ink); border-radius: 10px 0 0 10px;
    font-family: "Jakarta"; font-weight: 700; font-size: 14.5px; color: var(--fg);
    cursor: pointer; white-space: nowrap; flex: none;
  }
  .country-select .flag { font-size: 16px; line-height: 1; }
  .country-select .chev { width: 10px; height: 10px; opacity: .6; }
  .country-dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; z-index: 30;
    width: min(280px, 90vw); max-height: 320px; display: flex; flex-direction: column;
    background: var(--bg-raised); border: 2.5px solid var(--ink); border-radius: 12px;
    box-shadow: 6px 6px 0 var(--ink); overflow: hidden;
  }
  .country-dropdown[hidden] { display: none; }
  .country-search {
    margin: 10px; width: calc(100% - 20px); font-family: "Jakarta"; font-size: 14px;
    border: 2px solid var(--ink); border-radius: 8px; padding: 8px 10px; background: var(--bg);
  }
  .country-list { overflow-y: auto; padding: 0 6px 8px; }
  .country-option {
    display: flex; align-items: center; gap: 10px; padding: 8px 8px; border-radius: 8px;
    cursor: pointer; font-size: 14px; background: none; border: none; width: 100%; text-align: left;
    font-family: "Jakarta"; color: var(--fg);
  }
  .country-option:hover, .country-option.hi { background: var(--bg-band, var(--lime)); }
  .country-option .flag { font-size: 16px; }
  .country-option .name { flex: 1; }
  .country-option .code { color: var(--fg-muted); font-weight: 700; font-size: 12.5px; }
  .country-empty { padding: 14px; font-size: 13px; color: var(--fg-muted); text-align: center; }

  footer { background: var(--ink); color: rgba(251,246,255,0.6); }
  .footer-inner { display: flex; align-items: center; justify-content: center; padding: 24px 0; font-size: 13.5px; text-align: center; }

  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
