
    @font-face {
      font-display: swap;
      font-family: Inter;
      font-style: normal;
      font-weight: 400;
      src: url("dovetail.com/assets/inter-400_72666dc606d6.woff2") format("woff2")
    }

    @font-face {
      font-display: swap;
      font-family: Inter;
      font-style: normal;
      font-weight: 500;
      src: url("dovetail.com/assets/Inter-Medium_8c121852ac4e.woff2") format("woff2")
    }

    @font-face {
      font-display: swap;
      font-family: JetBrains Mono;
      font-style: normal;
      src: url("dovetail.com/assets/JetBrainsMono-Regular_e6a6d620c66d.woff2") format("woff2")
    }
  

    :root {
      --bg-page: #0A0A0A;
      --bg-card: #141414;
      --bg-elevated: #1E1E1E;
      --bg-hover: #313131;
      --glass: rgba(255, 255, 255, .08);
      --glass-hover: rgba(255, 255, 255, .16);
      --text-primary: #ffffff;
      --text-secondary: #A7A7A7;
      --text-muted: #7C7C7C;
      --accent: #ffd600;
      --accent-dim: rgba(255, 214, 0, .12);
      --accent-soft: rgba(255, 214, 0, .24);
      --border: rgba(255, 255, 255, .08);
      --border-ghost: rgba(255, 255, 255, .24);
      --radius: 8px;
      --max-w: 1512px;
      --pad-desktop: 124px;
      --pad-tablet: 64px;
      --pad-mobile: 16px;
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent
    }

    html {
      background: var(--bg-page);
      overflow-x: hidden;
      scroll-behavior: smooth
    }

    body {
      color: var(--text-primary);
      font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
      font-feature-settings: 'liga' on;
      font-size: 16px;
      line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
      margin: 0;
      padding: 0
    }

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

    button,
    input,
    textarea,
    select {
      -webkit-appearance: none;
      font-family: inherit
    }

    ul,
    ol {
      padding: 0;
      margin: 0;
      list-style: none
    }

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

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      padding: 0 var(--pad-desktop);
      background: rgba(10, 10, 10, .72);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background .3s, border-color .3s;
    }

    .navbar.scrolled {
      background: rgba(10, 10, 10, .92);
      border-color: rgba(255, 255, 255, .12)
    }

    @media(max-width:1280px) {
      .navbar {
        padding: 0 var(--pad-tablet)
      }
    }

    @media(max-width:799px) {
      .navbar {
        padding: 0 var(--pad-mobile);
        height: 64px
      }
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0
    }

    .navbar-logo img {
      height: 32px;
      width: auto
    }

    .navbar-logo span {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -.5px;
      color: var(--text-primary);
    }

    @media(max-width:799px) {
      .navbar-logo span {
        display: none
      }
    }

    .navbar-links {
      display: flex;
      align-items: center;
      gap: 32px
    }

    @media(max-width:899px) {
      .navbar-links {
        display: none
      }
    }

    .navbar-links a {
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      color: var(--text-secondary);
      transition: color .2s;
      position: relative;
    }

    .navbar-links a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    }

    .navbar-links a:hover {
      color: var(--text-primary)
    }

    .navbar-links a:hover::after {
      transform: scaleX(1)
    }

    .navbar-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--bg-page);
      font-size: 14px;
      font-weight: 500;
      line-height: 18px;
      padding: 10px 20px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
      white-space: nowrap;
    }

    .navbar-cta:hover {
      background: #ffe033;
      transform: translateY(-1px);
      box-shadow: 0 4px 24px rgba(255, 214, 0, .25);
    }

    /* Mobile menu toggle */
    .navbar-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-primary);
      cursor: pointer;
      padding: 8px
    }

    @media(max-width:899px) {
      .navbar-toggle {
        display: flex
      }
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 99;
      background: rgba(10, 10, 10, .96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 32px var(--pad-mobile);
      gap: 8px;
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      font-size: 20px;
      font-weight: 500;
      line-height: 28px;
      color: var(--text-secondary);
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--text-primary)
    }

    .mobile-menu .navbar-cta {
      margin-top: 16px;
      text-align: center;
      justify-content: center;
      width: 100%
    }
  

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Background layers */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-bg picture,
    .hero-bg img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 1512px;
      height: auto;
      max-width: 1512px;
      transform: translate(-50%, -50%);
      object-fit: cover;
      object-position: center;
      z-index: 2;
    }

    @media(max-width:990px) {

      .hero-bg picture,
      .hero-bg img {
        display: none
      }
    }

    .hero-bg video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 1512px;
      height: auto;
      max-width: 1512px;
      transform: translate(-50%, -50%);
      object-fit: cover;
      object-position: center;
      z-index: 1;
      transition: opacity .5s ease-in-out;
    }

    @media(max-width:990px) {
      .hero-bg video {
        display: none
      }
    }

    /* Fading gradients */
    .hero-fade-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 180px;
      z-index: 3;
      background: linear-gradient(180deg, var(--bg-page) 0%, rgba(10, 10, 10, 0) 100%);
    }

    .hero-fade-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 240px;
      z-index: 3;
      background: linear-gradient(0deg, var(--bg-page) 0%, rgba(10, 10, 10, 0) 100%);
    }

    .hero-fade-left {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 40%;
      z-index: 3;
      background: linear-gradient(90deg, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .4) 50%, rgba(10, 10, 10, 0) 100%);
    }

    /* Accent glow */
    .hero-glow {
      position: absolute;
      top: 30%;
      left: -10%;
      width: 600px;
      height: 600px;
      z-index: 2;
      background: radial-gradient(circle, rgba(255, 214, 0, .06) 0%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
      animation: pulseGlow 6s ease-in-out infinite alternate;
    }

    @keyframes pulseGlow {
      0% {
        opacity: .4;
        transform: scale(1)
      }

      100% {
        opacity: .8;
        transform: scale(1.15)
      }
    }

    /* Content */
    .hero-content {
      position: relative;
      z-index: 4;
      margin: 0 auto;
      max-width: var(--max-w);
      width: 100%;
      padding: 0 var(--pad-desktop);
      padding-top: 140px;
      padding-bottom: 96px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    @media(max-width:1280px) {
      .hero-content {
        padding: 120px var(--pad-tablet) 80px
      }
    }

    @media(max-width:799px) {
      .hero-content {
        padding: 100px var(--pad-mobile) 64px
      }
    }

    /* Kicker label */
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 12px;
      text-transform: uppercase;
      color: var(--accent);
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .1s;
    }

    .hero-kicker-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    /* Heading */
    .hero-h1 {
      font-family: Inter, sans-serif;
      font-weight: 500;
      letter-spacing: -2.5px;
      font-size: 64px;
      line-height: 72px;
      max-width: 640px;
      text-wrap: balance;
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .2s;
    }

    .hero-h1 .accent {
      color: var(--accent)
    }

    @media(max-width:1280px) {
      .hero-h1 {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -1.5px;
        max-width: 560px
      }
    }

    @media(max-width:799px) {
      .hero-h1 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -.75px;
        max-width: 100%
      }
    }

    /* Paragraph */
    .hero-p {
      font-size: 20px;
      font-weight: 400;
      line-height: 32px;
      color: var(--text-secondary);
      max-width: 480px;
      text-wrap: pretty;
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .35s;
    }

    @media(max-width:1280px) {
      .hero-p {
        font-size: 18px;
        line-height: 28px
      }
    }

    @media(max-width:799px) {
      .hero-p {
        font-size: 16px;
        line-height: 26px;
        max-width: 100%
      }
    }

    /* CTA row */
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      animation: fadeUp .8s cubic-bezier(.4, 0, .2, 1) both;
      animation-delay: .5s;
    }

    /* Fade-up animation */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* Buttons */
    .btn-accent {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--accent);
      color: var(--bg-page);
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      padding: 14px 28px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .25s;
      box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-accent:hover {
      background: #ffe033;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 214, 0, .3);
    }

    .btn-accent svg {
      transition: transform .2s
    }

    .btn-accent:hover svg {
      transform: translateX(3px)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--glass);
      color: var(--text-primary);
      border: 1px solid var(--border-ghost);
      font-size: 15px;
      font-weight: 500;
      line-height: 20px;
      padding: 14px 28px;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background .2s, border-color .2s;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-ghost:hover {
      background: var(--bg-hover);
      border-color: rgba(255, 255, 255, .32)
    }
  

    .trust-bar {
      position: relative;
      z-index: 5;
      border-top: 1px solid var(--border);
      background: var(--bg-page);
    }

    .trust-bar-inner {
      margin: 0 auto;
      max-width: var(--max-w);
      padding: 48px var(--pad-desktop);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    @media(max-width:1280px) {
      .trust-bar-inner {
        padding: 40px var(--pad-tablet)
      }
    }

    @media(max-width:799px) {
      .trust-bar-inner {
        padding: 32px var(--pad-mobile)
      }
    }

    .trust-bar-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 12px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .trust-logos-track {
      display: flex;
      align-items: center;
      gap: 64px;
      animation: scrollLogos 35s linear infinite;
      width: max-content;
    }

    @keyframes scrollLogos {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .trust-logos-overflow {
      overflow: hidden;
      width: 100%;
      mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    .logo-item {
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .7;
      transition: opacity .3s, transform .3s;
    }

    .logo-item:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    .logo-item img {
      height: 100%;
      width: auto;
      max-width: 160px;
      object-fit: contain;
    }

    @media(max-width:799px) {
      .logo-item {
        height: 32px;
      }
      .trust-logos-track {
        gap: 40px;
        animation-duration: 25s;
      }
    }
  

    .stats-strip {
      border-top: 1px solid var(--border);
      background: var(--bg-card);
    }

    .stats-strip-inner {
      margin: 0 auto;
      max-width: var(--max-w);
      padding: 56px var(--pad-desktop);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    @media(max-width:1280px) {
      .stats-strip-inner {
        padding: 48px var(--pad-tablet);
        gap: 24px
      }
    }

    @media(max-width:799px) {
      .stats-strip-inner {
        padding: 40px var(--pad-mobile);
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
      }
    }

    .stat-item {
      text-align: center
    }

    .stat-number {
      font-family: Inter, sans-serif;
      font-size: 48px;
      font-weight: 500;
      letter-spacing: -2px;
      line-height: 56px;
      color: var(--accent);
      margin-bottom: 8px;
    }

    @media(max-width:799px) {
      .stat-number {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px
      }
    }

    .stat-label {
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      color: var(--text-secondary);
    }
  

    .portfolio-section {
      position: relative;
      background: var(--bg-page);
      padding: 100px 0 80px;
      overflow: hidden;
    }

    .portfolio-header {
      text-align: center;
      margin: 0 auto 64px;
      max-width: var(--max-w);
      padding: 0 var(--pad-desktop);
    }

    @media(max-width:1280px) {
      .portfolio-header {
        padding: 0 var(--pad-tablet)
      }
    }

    @media(max-width:799px) {
      .portfolio-header {
        padding: 0 var(--pad-mobile)
      }
    }

    .portfolio-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 12px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .portfolio-kicker-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .portfolio-title {
      font-family: Inter, sans-serif;
      font-weight: 500;
      font-size: 48px;
      line-height: 56px;
      letter-spacing: -2px;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    @media(max-width:799px) {
      .portfolio-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1px;
      }
    }

    .portfolio-subtitle {
      font-size: 18px;
      line-height: 28px;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto;
    }

    @media(max-width:799px) {
      .portfolio-subtitle {
        font-size: 16px;
        line-height: 26px;
      }
    }

    /* ─── Rows ─── */
    .portfolio-row {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
      width: 100%;
      /* Centraliza: expande do centro para fora */
      position: relative;
      left: 50%;
      transform: translateX(-50%);
    }

    @media(max-width:799px) {
      .portfolio-row {
        gap: 6px;
        margin-bottom: 6px;
      }
    }

    /* wrapper extra já não é necessário — itens direto na row */
    .portfolio-items {
      display: contents;
    }

    /* ─── Item ─── */
    .portfolio-item {
      position: relative;
      flex: 1 1 0%;
      min-width: 0;
      height: 320px;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
    }

    @media(max-width:1280px) {
      .portfolio-item {
        height: 260px;
      }
    }

    @media(max-width:799px) {
      .portfolio-item {
        height: 200px;
        border-radius: 6px;
      }
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .portfolio-item:hover img {
      transform: scale(1.06);
    }

    /* Overlay gradient */
    .portfolio-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0) 40%,
          rgba(0, 0, 0, .55) 100%);
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none;
      border-radius: 10px;
    }

    .portfolio-item:hover::after {
      opacity: 1;
    }

    /* Label */
    .portfolio-item-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      right: 16px;
      z-index: 2;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .35s ease, transform .35s ease;
    }

    .portfolio-item:hover .portfolio-item-label {
      opacity: 1;
      transform: translateY(0);
    }

    .portfolio-item-name {
      font-family: Inter, sans-serif;
      font-weight: 500;
      font-size: 15px;
      line-height: 20px;
      color: #fff;
    }

    .portfolio-item-cat {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-top: 4px;
    }

    /* Glow decorativo */
    .portfolio-glow {
      position: absolute;
      top: 50%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 214, 0, .05) 0%, transparent 70%);
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
    }
  