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

  :root {
    --red: #C8251A;
    --black: #111111;
    --white: #FFFFFF;
    --off-white: #F8F8F6;
    --light-gray: #EFEFED;
    --mid-gray: #999895;
    --dark-gray: #444440;
    --border: #E2E2DE;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Serif Display', serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Mono UI elements: nav, labels, buttons, eyebrows, small caps */
  .mono {
    font-family: 'Roboto Mono', monospace;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 56px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Roboto Mono', monospace;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--black); text-decoration: none;
  }
  .logo .dot { color: var(--red); }

  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-mobile-cta { display: none; }
  .nav-links a {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--dark-gray); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--black); }

  .nav-cta {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--black); color: var(--white);
    border: 1px solid var(--black);
    padding: 11px 26px; text-decoration: none; transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--dark-gray); border-color: var(--dark-gray); }

  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 6px;
    width: 32px; height: 32px; cursor: pointer;
    background: none; border: none; padding: 0;
    -webkit-appearance: none; appearance: none; outline: none;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--black); transition: all 0.25s;
    transform-origin: center;
  }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 72px;
    border-bottom: 1px solid var(--border);
  }

  .hero-left {
    padding: 80px 56px 80px;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: var(--white); position: relative;
  }

  .section-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark-gray); margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-label::before {
    content: ''; display: block; width: 24px; height: 1px; background: var(--dark-gray);
  }

  .hero-eyebrow {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid-gray); margin-bottom: 36px;
    display: flex; align-items: center; gap: 14px;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--mid-gray);
  }

  h1 {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(38px, 4.5vw, 60px); font-weight: 700;
    line-height: 1.2; letter-spacing: -0.03em;
    position: relative; z-index: 1; margin-bottom: 0; color: var(--black);
  }
  h1 br + .word, h1 .word:first-child { display: inline-block; }
  h1 { overflow: hidden; }
  h1 em { font-style: normal; color: #AAAAAA; font-weight: 300; }
  .h1-light {
    font-weight: 300;
    background: linear-gradient(
      90deg,
      rgba(180,130,220,0.9) 0%,
      rgba(210,160,255,1) 25%,
      rgba(160,200,255,1) 50%,
      rgba(130,220,180,1) 75%,
      rgba(180,130,220,0.9) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-meta {
    display: flex; gap: 48px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding-top: 32px;
  }
.hero-meta-item .num {
    font-family: 'Roboto Mono', monospace;
    font-size: 26px; font-weight: 700; color: var(--black); letter-spacing: -0.02em;
  }
  .hero-meta-item p {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--dark-gray); margin-top: 6px;
  }

  .hero-right { position: relative; overflow: hidden; background: var(--off-white); }
  .hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); }

  .hero-code-block {
    position: absolute; bottom: 48px; left: 40px; right: 40px; z-index: 2;
    background: rgba(10,10,10,0.82); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); padding: 24px 28px;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px; line-height: 1.9;
    color: rgba(255,255,255,0.75);
  }
  .code-comment { color: rgba(255,255,255,0.58); font-style: normal; }
  .code-keyword { color: #ffffff; font-weight: 700; }
  .code-value { color: rgba(255,255,255,0.65); font-style: normal; }
  .code-success {
    font-style: normal;
    background: linear-gradient(
      90deg,
      rgba(180,130,220,0.9) 0%,
      rgba(210,160,255,1) 25%,
      rgba(160,200,255,1) 50%,
      rgba(130,220,180,1) 75%,
      rgba(180,130,220,0.9) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 9s linear infinite;
  }

  section { padding: 120px 56px; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  section.contained {
    padding-left: 0;
    padding-right: 0;
  }
  section.contained > .container {
    padding-left: 56px;
    padding-right: 56px;
  }

  /* AI gradient animated lines */
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  .ai-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(180,130,220,0.0) 10%,
      rgba(180,130,220,0.7) 30%,
      rgba(210,160,255,1) 45%,
      rgba(160,200,255,1) 55%,
      rgba(180,130,220,0.7) 70%,
      rgba(180,130,220,0.0) 90%,
      transparent 100%
    );
    background-size: 200% auto;
    animation: shimmer 9s linear infinite;
  }

  .ai-line-top { margin-bottom: 40px; }
  .ai-line-bottom { margin-top: 36px; margin-bottom: 32px; }

  @keyframes wordUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  h1 .word {
    display: inline-block;
    opacity: 0;
    animation: wordUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  h1 .word-1 { animation-delay: 0.1s; }
  h1 .word-2 { animation-delay: 0.22s; }
  h1 .word-3 { animation-delay: 0.34s; }
  h1 .word-4 { animation-delay: 0.46s; }
  h1 .word-5 { animation-delay: 0.58s; }
  h1 .word-6 { animation-delay: 0.70s; }
  h1 .word:not(.h1-light) { font-family: 'DM Serif Display', serif; font-size: 1.22em; font-weight: 400; }
  h1 .word.h1-light { font-size: 0.82em; }
  h1 .word.h1-light {
    animation: wordUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards, shimmer 9s linear infinite;
  }

  h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4.4vw, 56px); font-weight: 400;
    line-height: 1.15; letter-spacing: -0.01em;
  }

  /* ABOUT */
  .about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

  .about-image { aspect-ratio: 4/5; position: relative; overflow: hidden; background: var(--light-gray); }
  .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(15%); }
  .about-badge {
    position: absolute; bottom: 0; left: 0;
    background: #292829; padding: 24px 28px; color: white;
    text-align: center;
  }
  .about-badge .num {
    font-family: 'Roboto Mono', monospace;
    font-size: 36px; font-weight: 700; display: block; line-height: 1; letter-spacing: -0.02em;
  }
  .about-badge p { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; opacity: 0.85; }

  .about-right { padding-top: 48px; }
  .about-right p {
    font-size: 15px; line-height: 1.85; color: var(--dark-gray);
    margin: 28px 0 48px; font-family: 'Open Sans', sans-serif; font-weight: 400; max-width: 440px;
  }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
  .about-feature {
    padding: 18px 0; border-bottom: 1px solid var(--border);
    font-family: 'Roboto Mono', monospace;
    font-size: 13px; letter-spacing: 0.04em; color: var(--dark-gray);
    display: flex; align-items: center; gap: 10px;
  }
  .about-feature:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--border); }
  .about-feature:nth-child(even) { padding-left: 24px; }
  .about-feature::before { content: '→'; color: var(--mid-gray); flex-shrink: 0; font-size: 10px; }

  /* SERVICES */
  .services-section { background: var(--off-white); }
  .services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 72px; }
  .services-header p { font-family: 'Open Sans', sans-serif; font-size: 15px; line-height: 1.85; color: var(--dark-gray); align-self: end; font-weight: 400; }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border); border-left: 1px solid var(--border);
  }
  .service-card {
    padding: 44px 36px;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--white); transition: background 0.3s; cursor: default;
  }
  .service-card:hover { background: var(--off-white); }
  .service-num { font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 28px; }
  .service-icon { width: 28px; height: 28px; margin-bottom: 20px; color: var(--black); }
  .service-card h3 {
    font-family: 'Roboto Mono', monospace;
    font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 14px; line-height: 1.3; letter-spacing: -0.01em;
  }
  .service-card p { font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.75; color: var(--dark-gray); font-weight: 400; }
  .service-link {
    font-family: 'Roboto Mono', monospace;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark-gray); text-decoration: none; margin-top: 28px; transition: gap 0.2s;
  }
  .service-link:hover { gap: 14px; }

  /* SHOWCASE */
  .showcase-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 96px 80px;
  }
  .showcase-header { margin-bottom: 80px; }
  .showcase-header h2 { margin-top: 16px; }

  .showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    padding: 72px 0;
    border-top: 1px solid var(--border);
  }
  .showcase-row:first-of-type { border-top: none; padding-top: 0; }

  .showcase-num {
    font-family: 'Roboto Mono', monospace;
    font-size: 96px; line-height: 1; font-weight: 300;
    color: var(--border); margin-bottom: 20px;
  }
  .showcase-info .tag {
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid-gray); margin-bottom: 12px;
  }
  .showcase-info h3 {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(24px, 2.6vw, 36px); font-weight: 500;
    color: var(--black); margin: 12px 0 20px; line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .showcase-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px; line-height: 1.85; color: var(--dark-gray);
    max-width: 380px; margin-bottom: 32px;
  }
  .showcase-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    max-width: 380px;
    margin-bottom: 28px;
  }
  .stag {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark-gray);
    border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 2px;
  }

  .showcase-link {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--black); text-decoration: none;
    border-bottom: 1px solid var(--black); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .showcase-link:hover { color: var(--red); border-color: var(--red); }

  .showcase-browser {
    display: block;
    border-radius: 4px; overflow: hidden;
    box-shadow: 5px 5px 0 0 rgba(0,0,0,0.07);
    border: 1px solid var(--border);
    background: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .showcase-browser:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 10px 14px 0 0 rgba(0,0,0,0.09);
  }
  .showcase-browser-bar {
    background: #EFEFED;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .sb-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border); flex-shrink: 0;
  }
  .sb-url {
    font-family: 'Roboto Mono', monospace;
    font-size: 11px; color: var(--mid-gray);
    margin-left: 8px; letter-spacing: 0.04em;
  }
  .showcase-browser img {
    width: 100%; display: block;
    aspect-ratio: 16/10; object-fit: cover; object-position: top;
    background: var(--light-gray);
  }

  /* PROCESS */
  #process { background: #1e1e1e; }
  #process .section-label { color: rgba(255,255,255,0.35); }
  #process h2 { color: var(--white); }
  .process-section { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; }
  .process-left h2 { margin-bottom: 24px; }
  .process-left p { font-family: 'Open Sans', sans-serif; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.5); max-width: 380px; margin-bottom: 48px; font-weight: 400; }
  .process-cta {
    font-family: 'Roboto Mono', monospace;
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--white); border: 1px solid var(--white); color: var(--black);
    padding: 14px 28px; text-decoration: none;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.2s;
  }
  .process-cta:hover { background: var(--light-gray); border-color: var(--light-gray); }

  .process-steps { display: flex; flex-direction: column; }
  .process-step {
    display: grid; grid-template-columns: 56px 1fr; gap: 24px;
    padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: default; transition: padding-bottom 0.3s;
  }
  .process-step:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  .process-step:hover { padding-bottom: 52px; }
  .step-num { font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); text-transform: uppercase; padding-top: 4px; }
  .step-content h4 { font-family: 'Roboto Mono', monospace; font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white); letter-spacing: -0.01em; }
  .step-content p { font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 400; }

  /* WORK */
  .work-section { padding-bottom: 80px; background: var(--white); }
  .work-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
  .work-header a {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid-gray); text-decoration: none; transition: color 0.2s;
  }
  .work-header a:hover { color: var(--black); }

  .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
  .work-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--light-gray); }
  .work-item:first-child { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .work-item-bg { width: 100%; height: 100%; transition: transform 0.6s ease; }
  .work-item:hover .work-item-bg { transform: scale(1.04); }
  .work-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 52%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 28px;
  }
  .work-item:hover .work-item-overlay { opacity: 1; }
  .work-info .tag {
    display: inline-block; font-family: 'Roboto Mono', monospace;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    background: white; color: var(--black); padding: 4px 10px; margin-bottom: 8px;
  }
  .work-info h4 { font-family: 'Roboto Mono', monospace; font-size: 18px; font-weight: 700; color: white; letter-spacing: -0.01em; }
  .work-info p { font-family: 'Roboto Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.04em; }

  .wc1 { background: url('../paycub.png') center top/cover no-repeat; }
  .wc2 { background: linear-gradient(135deg, #C4C8CC, #A8ACB0); }
  .wc3 { background: linear-gradient(135deg, #CCCAC4, #B4B2AC); }
  .wc4 { background: linear-gradient(135deg, #C8CCC8, #AAAEAA); }
  .wc5 { background: url('../work-5.jpg') center/cover no-repeat; }

  /* STATS */
  .stats-belt {
    background: var(--off-white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  }
  .stat-item { padding: 0 48px; border-right: 1px solid var(--border); }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Roboto Mono', monospace; font-size: 44px; font-weight: 700; color: var(--black); line-height: 1; letter-spacing: -0.03em; }
  .stat-label { font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-gray); margin-top: 10px; }

  /* TEAM PHOTO */
  .team-section { padding: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
  .team-photo { position: relative; overflow: hidden; }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(15%); }
  .team-content {
    background: var(--off-white); padding: 80px 72px;
    display: flex; flex-direction: column; justify-content: center;
    border-left: 1px solid var(--border);
  }
  .team-content h2 { margin-bottom: 24px; }
  .team-content p { font-family: 'Open Sans', sans-serif; font-size: 15px; line-height: 1.9; color: var(--dark-gray); font-weight: 400; max-width: 400px; margin-bottom: 40px; }
  .team-link {
    font-family: 'Roboto Mono', monospace;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--black); text-decoration: none;
    border-bottom: 1px solid var(--border); padding-bottom: 8px;
    width: fit-content; transition: border-color 0.2s;
  }
  .team-link:hover { border-color: var(--black); }

  /* TECH */
  .tech-section { background: var(--white); border-top: 1px solid var(--border); }
  .tech-inner { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: center; }
  .tech-inner h2 { margin-bottom: 20px; font-size: clamp(26px, 2.8vw, 44px); }
  .tech-inner > div:first-child p { font-family: 'Open Sans', sans-serif; font-size: 15px; line-height: 1.85; color: var(--dark-gray); margin-top: 16px; font-weight: 400; }
  .tech-logos {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border); border-left: 1px solid var(--border);
  }
  .tech-logo {
    padding: 20px 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; background: var(--white); transition: background 0.2s; cursor: default;
  }
  .tech-logo:hover { background: var(--off-white); }
  .tech-logo span { font-family: 'Roboto Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-gray); }

  /* TESTIMONIAL */
  .testimonial-section {
    background: var(--off-white); border-top: 1px solid var(--border);
    padding: 100px 160px;
  }
  .testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 900;
    font-size: 220px; color: var(--light-gray); line-height: 1;
    display: block; margin-bottom: -80px;
    user-select: none; pointer-events: none;
  }
  .testimonial-section blockquote {
    font-family: 'Caveat', cursive;
    font-size: clamp(24px, 2.8vw, 38px); font-weight: 500; line-height: 1.55; font-style: normal;
    color: var(--black); margin-bottom: 40px; letter-spacing: 0;
  }
  .testimonial-section cite { font-family: 'Roboto Mono', monospace; font-style: normal; font-size: 12px; color: var(--mid-gray); letter-spacing: 0.1em; text-transform: uppercase; }
  .testimonial-section cite strong { color: var(--dark-gray); display: block; margin-bottom: 4px; font-weight: 500; }

  /* CTA */
  .cta-section {
    position: relative; overflow: hidden; min-height: 560px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 80px 56px; background: var(--black);
  }
  .cta-bg-text {
    position: absolute; top: -60px; left: -10px;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(150px, 22vw, 320px); font-weight: 400;
    color: rgba(255,255,255,0.03); white-space: nowrap; user-select: none; line-height: 1;
  }
  .cta-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .cta-content h2 { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4.8vw, 62px); color: var(--white); line-height: 1.12; font-weight: 400; letter-spacing: -0.01em; }
  .cta-content h2 em { font-style: normal; color: rgba(255,255,255,0.35); font-weight: 300; }
  .cta-right p { font-family: 'Open Sans', sans-serif; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 40px; font-weight: 400; }
  .cta-right .cta-btn {
    font-family: 'Roboto Mono', monospace;
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--white); border: 1px solid var(--white); color: var(--black);
    padding: 16px 32px; text-decoration: none;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s;
  }
  .cta-right .cta-btn:hover { background: var(--light-gray); border-color: var(--light-gray); }
  .cta-right .cta-secondary {
    font-family: 'Roboto Mono', monospace;
    display: inline-flex; align-items: center;
    color: rgba(255,255,255,0.3); font-size: 13px;
    text-decoration: none; margin-left: 24px; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s;
  }
  .cta-right .cta-secondary:hover { color: white; }

  /* FOOTER */
  footer { background: var(--off-white); padding: 64px 56px 40px; border-top: 1px solid var(--border); }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; }
  .footer-brand .logo { font-size: 13px; }
  .footer-brand p { font-family: 'Open Sans', sans-serif; font-size: 13px; line-height: 1.75; color: var(--dark-gray); margin: 16px 0 0; font-weight: 400; max-width: 320px; }
  .footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
  .footer-contact-link {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px; color: var(--dark-gray); text-decoration: none;
    letter-spacing: 0.02em; transition: color 0.2s;
  }
  .footer-contact-link:hover { color: var(--black); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); }
  .footer-bottom p { font-family: 'Roboto Mono', monospace; font-size: 11px; color: var(--mid-gray); }

  /* ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }


/* ============================================================
   RESPONSIVE — LAPTOP  (≤ 1500px)
   Targets MacBook Pro / smaller desktop screens
   ============================================================ */
@media (max-width: 1500px) {

  nav { padding: 18px 40px; }

  h1 { font-size: clamp(28px, 2.8vw, 42px); }
  h1 .word:not(.h1-light) { font-size: 1.15em; }

  h2 { font-size: clamp(26px, 3vw, 42px); }

  .hero-left { padding: 64px 40px; }
  .hero-code-block { left: 24px; right: 24px; bottom: 32px; font-size: 10.5px; }

  section { padding: 96px 40px; }
  section.contained > .container { padding-left: 40px; padding-right: 40px; }

  .process-section { gap: 72px; }
  .tech-inner { grid-template-columns: 300px 1fr; gap: 56px; }
  .testimonial-section { padding: 80px 100px; }
  .stats-belt { padding: 48px 40px; }
  .stat-item { padding: 0 32px; }
  footer { padding: 56px 40px 36px; }
  .cta-section { padding: 72px 40px; }
}


/* ============================================================
   RESPONSIVE — TABLET  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 16px 24px; flex-wrap: wrap; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    width: 100%; order: 3;
    border-top: 1px solid var(--border); margin-top: 12px;
  }
  .nav-links li a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-cta { display: block; }
  .nav-links .nav-mobile-cta a {
    color: var(--black); font-weight: 700;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  /* HERO */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 56px; justify-content: flex-start; }
  .hero-right { height: 360px; }
  .hero-meta { gap: 32px; flex-wrap: wrap; }

  /* SECTIONS */
  section { padding: 80px 24px; }
  section.contained > .container { padding-left: 24px; padding-right: 24px; }
  h2 { font-size: clamp(36px, 8vw, 52px); }

  /* ABOUT */
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }
  .about-right { padding-top: 0; }

  /* SERVICES */
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* PROCESS */
  .process-section { grid-template-columns: 1fr; gap: 56px; }
  .process-left p { max-width: 100%; }

  /* SHOWCASE */
  .showcase-section { padding: 72px 40px; }
  .showcase-row { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .showcase-num { font-size: 64px; }

  /* WORK */
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item:first-child { grid-column: 1 / 3; aspect-ratio: 16/9; }

  /* STATS */
  .stats-belt { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .stat-item { padding: 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  /* TEAM */
  .team-section { grid-template-columns: 1fr; min-height: auto; }
  .team-photo { min-height: 320px; }
  .team-content { padding: 56px 24px; border-left: none; border-top: 1px solid var(--border); }
  .team-content p { max-width: 100%; }

  /* TECH */
  .tech-inner { grid-template-columns: 1fr; gap: 48px; }

  /* TESTIMONIAL */
  .testimonial-section { padding: 80px 48px; }

  /* CTA */
  .cta-content { grid-template-columns: 1fr; gap: 48px; }
  .cta-section { min-height: auto; padding: 80px 24px; }

  /* FOOTER */
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-contact { align-items: flex-start; }
  footer { padding: 56px 24px 32px; }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  /* NAV */
  .nav-cta { padding: 9px 16px; font-size: 11px; }

  /* HERO */
  .hero-left { padding: 80px 20px 40px; }
  .hero-right { height: 280px; }
  h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-meta { gap: 24px; padding-top: 32px; margin-top: 40px; }
  .hero-meta-item .num { font-size: 22px; }

  /* SECTIONS */
  section { padding: 64px 20px; }
  section.contained > .container { padding-left: 20px; padding-right: 20px; }
  h2 { font-size: clamp(38px, 9vw, 48px); }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* SHOWCASE */
  .showcase-section { padding: 56px 20px; }
  .showcase-row { padding: 40px 0; gap: 28px; }
  .showcase-num { font-size: 48px; margin-bottom: 12px; }
  .showcase-info p { max-width: 100%; }

  /* WORK */
  .work-grid { grid-template-columns: 1fr; }
  .work-item:first-child { grid-column: 1; aspect-ratio: 4/3; }

  /* STATS */
  .stats-belt { padding: 32px 20px; }
  .stat-num { font-size: 36px; }

  /* TECH logos */
  .tech-logos { grid-template-columns: repeat(2, 1fr); }

  /* TESTIMONIAL */
  .testimonial-section { padding: 60px 20px; }

  /* CTA */
  .cta-right .cta-btn { width: 100%; justify-content: center; }
  .cta-right .cta-secondary { margin-left: 0; margin-top: 16px; display: block; }

  /* FOOTER */
  footer { padding: 48px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.contact-modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.contact-modal.open { opacity: 1; pointer-events: all; }

.contact-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(4px);
}

.contact-modal-box {
  position: relative; z-index: 1;
  background: var(--white);
  padding: 56px 64px;
  max-width: 520px; width: 92%;
  box-shadow: 0 32px 96px rgba(0,0,0,0.18);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.contact-modal.open .contact-modal-box { transform: translateY(0); }

.contact-modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--mid-gray);
  font-family: 'Roboto Mono', monospace; font-weight: 300;
  transition: color 0.15s;
}
.contact-modal-close:hover { color: var(--black); }

.contact-modal-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}

.contact-modal-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 400; line-height: 1.2;
  color: var(--black); margin-bottom: 20px;
}

.contact-modal-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; line-height: 1.85; color: var(--dark-gray);
  margin-bottom: 32px;
}

.contact-modal-email {
  display: inline-block;
  font-family: 'Roboto Mono', monospace;
  font-size: 16px; font-weight: 500;
  color: var(--black);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.15s;
  margin-bottom: 20px;
}
.contact-modal-email:hover { color: var(--red); }

.contact-modal-note {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px; color: var(--mid-gray);
  letter-spacing: 0.06em;
}

@media (max-width: 480px) {
  .contact-modal-box { padding: 40px 28px; }
  .contact-modal-heading { font-size: 28px; }
}
