:root{
    --bg:#0A0A0B;
    --surface:#141416;
    --surface-2:#1C1C1E;
    --line:rgba(242,239,234,0.09);
    --line-strong:rgba(242,239,234,0.16);
    --orange:#FF5A1F;
    --orange-bright:#FF8A3D;
    --amber:#FFB443;
    --text:#F2EFEA;
    --text-soft:#D8D5D0;
    --muted:#9B9895;
    --muted-2:#6E6C6A;
    --header-bg:rgba(10,10,11,0.85);
    --cta-gradient:linear-gradient(120deg, #1A0E08, #0A0A0B 60%);
    --radius:2px;
  }
  [data-theme="light"]{
    --bg:#FAFAF8;
    --surface:#FFFFFF;
    --surface-2:#F1EEE8;
    --line:rgba(10,10,11,0.08);
    --line-strong:rgba(10,10,11,0.15);
    --orange:#F0540E;
    --orange-bright:#FF6A24;
    --amber:#E8850F;
    --text:#14120F;
    --text-soft:#3A3733;
    --muted:#6B6862;
    --muted-2:#9A968E;
    --header-bg:rgba(250,250,248,0.85);
    --cta-gradient:linear-gradient(120deg, #FFE3D0, #FAFAF8 60%);
  }
  body, header, .price-card, .service-card, .why-item, .port-card, .addon-item,
  .form, .build-window, .build-chrome, .build-bar, .tabs, input, textarea,
  .eyebrow, .btn-ghost, .theme-btn, .lang-switch{
    transition:background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{
    font-family:'Space Grotesk',sans-serif;
    font-weight:600;
    letter-spacing:-0.01em;
    line-height:1.1;
  }
  .mono{font-family:'JetBrains Mono',monospace;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  section{position:relative;}
  ::selection{background:var(--orange); color:#0A0A0B;}

  /* blueprint grid texture */
  .grid-bg{
    position:absolute; inset:0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size:64px 64px;
    -webkit-mask-image:linear-gradient(to bottom, black, transparent);
    mask-image:linear-gradient(to bottom, black, transparent);
    pointer-events:none;
  }

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:var(--header-bg);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
    transition:background-color .35s ease, border-color .35s ease, box-shadow .3s ease;
  }
  header.scrolled{ box-shadow:0 8px 24px -12px rgba(0,0,0,0.35); }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 32px; max-width:1180px; margin:0 auto; position:relative;
  }
  .nav-right{ display:flex; align-items:center; gap:32px; }
  .logo{
    display:flex; align-items:center; gap:8px;
  }
  .logo-img{ height:32px; width:auto; display:block; }
  .footer-inner .logo-img{ height:26px; }
  .nav-links{display:flex; gap:36px; align-items:center;}
  .nav-links a{
    font-size:14px; color:var(--muted); font-weight:500;
    transition:color .2s ease; position:relative;
  }
  .nav-links a:not(.nav-cta)::after{
    content:''; position:absolute; left:0; right:100%; bottom:-4px; height:2px;
    background:var(--orange); transition:right .25s ease;
  }
  .nav-links a:not(.nav-cta):hover::after{ right:0; }
  .nav-links a:hover{color:var(--text);}
  .nav-cta{
    background:var(--orange); color:#0A0A0B !important;
    padding:10px 20px; font-weight:600; font-size:13px;
    border-radius:var(--radius); transition:background .2s ease;
  }
  .nav-cta:hover{background:var(--orange-bright);}

  .nav-utils{ display:flex; align-items:center; gap:14px; }
  .lang-switch{
    display:flex; border:1px solid var(--line-strong); border-radius:20px; padding:3px; gap:2px;
  }
  .lang-btn{
    font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:600; letter-spacing:.03em;
    color:var(--muted); background:none; border:none; padding:6px 12px; border-radius:16px;
    cursor:pointer; transition:background .2s ease, color .2s ease;
  }
  .lang-btn.active{ background:var(--orange); color:#0A0A0B; }
  .theme-btn{
    display:flex; align-items:center; justify-content:center; width:34px; height:34px;
    border-radius:50%; border:1px solid var(--line-strong); background:none; color:var(--text);
    cursor:pointer; transition:border-color .2s ease, color .2s ease, transform .3s ease;
  }
  .theme-btn:hover{ border-color:var(--orange); color:var(--orange); transform:rotate(20deg); }
  .icon-sun{display:none;} .icon-moon{display:block;}
  [data-theme="light"] .icon-sun{display:block;} [data-theme="light"] .icon-moon{display:none;}

  .burger{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; z-index:10;}
  .burger span{width:22px; height:2px; background:var(--text); display:block; transition:transform .25s ease, opacity .2s ease;}
  .burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2){ opacity:0; }
  .burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero{
    padding:120px 32px 100px;
    overflow:hidden;
  }
  .hero-inner{
    max-width:1180px; margin:0 auto;
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:64px; align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.08em;
    text-transform:uppercase; color:var(--orange-bright);
    border:1px solid var(--line-strong); padding:6px 12px; border-radius:20px;
    margin-bottom:24px;
  }
  .eyebrow::before{content:''; width:6px; height:6px; background:var(--orange); border-radius:50%;}
  .hero h1{
    font-size:clamp(38px,4.6vw,60px);
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:normal; color:var(--orange);
  }
  .hero p.lede{
    font-size:18px; color:var(--muted); max-width:480px; margin-bottom:36px;
  }
  .hero-inner > div:first-child > *{
    opacity:0; transform:translateY(18px);
    animation:heroIn .7s cubic-bezier(.2,.7,.3,1) forwards;
  }
  .hero-inner > div:first-child > *:nth-child(1){animation-delay:.05s;}
  .hero-inner > div:first-child > *:nth-child(2){animation-delay:.16s;}
  .hero-inner > div:first-child > *:nth-child(3){animation-delay:.3s;}
  .hero-inner > div:first-child > *:nth-child(4){animation-delay:.44s;}
  @keyframes heroIn{to{opacity:1; transform:translateY(0);}}
  .hero-ctas{display:flex; gap:16px; align-items:center; flex-wrap:wrap;}
  .btn-primary{
    background:var(--orange); color:#0A0A0B;
    padding:15px 28px; font-weight:600; font-size:15px;
    border-radius:var(--radius); display:inline-block;
    transition:transform .2s ease, background .2s ease;
    border:1px solid var(--orange);
  }
  .btn-primary:hover{background:var(--orange-bright); transform:translateY(-2px);}
  .btn-ghost{
    color:var(--text); padding:15px 24px; font-weight:500; font-size:15px;
    border:1px solid var(--line-strong); border-radius:var(--radius);
    transition:border-color .2s ease, background .2s ease;
  }
  .btn-ghost:hover{border-color:var(--orange); background:var(--surface);}

  /* browser build mockup - signature element */
  .build-window{
    background:var(--surface); border:1px solid var(--line-strong);
    border-radius:8px; overflow:hidden;
    box-shadow:0 40px 80px -30px rgba(255,90,31,0.18);
    opacity:0; transform:translateX(26px) translateY(10px);
    animation:heroInRight .8s cubic-bezier(.2,.7,.3,1) forwards;
    animation-delay:.28s;
  }
  @keyframes heroInRight{to{opacity:1; transform:translateX(0) translateY(0);}}
  .build-chrome{
    display:flex; align-items:center; gap:8px;
    padding:12px 16px; background:var(--surface-2); border-bottom:1px solid var(--line);
  }
  .build-chrome .dots{display:flex; gap:6px;}
  .build-chrome .dots span{width:9px; height:9px; border-radius:50%; background:var(--muted-2);}
  .build-bar{
    flex:1; margin-left:8px; background:var(--bg); border:1px solid var(--line);
    border-radius:5px; padding:6px 12px; font-family:'JetBrains Mono',monospace;
    font-size:12px; color:var(--muted); overflow:hidden; white-space:nowrap;
  }
  .build-bar .caret{display:inline-block; width:7px; height:13px; background:var(--orange); vertical-align:-2px; animation:blink 1s step-end infinite;}
  @keyframes blink{50%{opacity:0;}}
  .build-canvas{padding:24px; display:flex; flex-direction:column; gap:12px; min-height:300px;}
  .b-row{display:flex; gap:12px;}
  .b-block{
    background:var(--surface-2); border:1px solid var(--line); border-radius:4px;
    opacity:0; transform:translateY(8px);
    animation:riseIn .5s ease forwards;
  }
  .b-block.orange{background:linear-gradient(135deg,var(--orange),var(--amber)); border:none;}
  @keyframes riseIn{to{opacity:1; transform:translateY(0);}}
  .b1{height:34px; width:40%; animation-delay:.2s;}
  .b2{height:14px; width:70%; animation-delay:.5s;}
  .b3{height:14px; width:55%; animation-delay:.65s;}
  .b-row.two{margin-top:6px;}
  .b4{height:90px; flex:1; animation-delay:.85s;}
  .b5{height:90px; flex:1; animation-delay:1s;}
  .b6{height:90px; flex:1; animation-delay:1.15s;}
  .b7{height:16px; width:30%; animation-delay:1.4s;}
  .b8{height:38px; width:150px; animation-delay:1.6s;}
  @media (prefers-reduced-motion:reduce){
    .b-block{animation:none; opacity:1; transform:none;}
    .build-bar .caret{animation:none;}
  }

  /* ---------- section headers ---------- */
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head .eyebrow{margin-bottom:16px;}
  .section-head h2{font-size:clamp(28px,3.4vw,40px); margin-bottom:14px;}
  .section-head p{color:var(--muted); font-size:16px;}
  .section-pad{padding:110px 0;}
  .section-pad.tight{padding:90px 0;}
  .divider{border-top:1px solid var(--line);}

  /* ---------- Pricing ---------- */
  .tabs{display:inline-flex; border:1px solid var(--line-strong); border-radius:30px; padding:4px; margin-bottom:56px;}
  .tab-btn{
    font-family:'JetBrains Mono',monospace; font-size:13px; padding:9px 22px;
    border-radius:26px; color:var(--muted); background:none; border:none; cursor:pointer;
    transition:all .2s ease;
  }
  .tab-btn.active{background:var(--orange); color:#0A0A0B; font-weight:600;}
  .pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .price-card{
    background:var(--surface); border:1px solid var(--line); border-radius:8px;
    padding:36px 28px; display:flex; flex-direction:column;
    transition:border-color .25s ease, transform .25s ease;
  }
  .price-card:hover{transform:translateY(-4px); border-color:var(--line-strong);}
  .price-card.featured{
    border-color:var(--orange); background:linear-gradient(180deg, rgba(255,90,31,0.08), var(--surface) 40%);
    position:relative;
  }
  .badge{
    position:absolute; top:-13px; left:28px;
    background:var(--orange); color:#0A0A0B; font-size:11px; font-weight:700;
    letter-spacing:0.06em; padding:5px 12px; border-radius:20px;
    font-family:'JetBrains Mono',monospace;
  }
  .price-tier{font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:var(--orange-bright); font-family:'JetBrains Mono',monospace; margin-bottom:6px;}
  .price-audience{color:var(--muted); font-size:14px; margin-bottom:20px;}
  .price-amount{font-family:'Space Grotesk',sans-serif; font-size:38px; font-weight:700; margin-bottom:24px;}
  .price-amount span{font-size:16px; color:var(--muted); font-weight:500;}
  .price-list{list-style:none; margin-bottom:28px; flex:1;}
  .price-list li{
    display:flex; gap:10px; align-items:flex-start;
    font-size:14px; color:var(--text-soft); padding:8px 0; border-top:1px solid var(--line);
  }
  .price-list li:first-child{border-top:none;}
  .price-list li::before{content:'→'; color:var(--orange); flex-shrink:0; font-family:'JetBrains Mono',monospace;}
  .price-cta{
    text-align:center; padding:13px; border-radius:var(--radius); font-weight:600; font-size:14px;
    border:1px solid var(--line-strong); transition:all .2s ease;
  }
  .price-card.featured .price-cta{background:var(--orange); color:#0A0A0B; border-color:var(--orange);}
  .price-cta:hover{border-color:var(--orange); color:var(--orange-bright);}
  .price-card.featured .price-cta:hover{background:var(--orange-bright); color:#0A0A0B;}

  .addons{margin-top:56px;}
  .addons h3{font-size:14px; text-transform:uppercase; letter-spacing:0.08em; color:var(--muted); font-family:'JetBrains Mono',monospace; margin-bottom:20px; font-weight:500;}
  .addon-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:6px; overflow:hidden;}
  .addon-item{background:var(--surface); padding:20px 22px; display:flex; justify-content:space-between; align-items:center; gap:12px;}
  .addon-item .label{font-size:14px; color:var(--text-soft);}
  .addon-item .amt{font-family:'JetBrains Mono',monospace; font-size:14px; color:var(--orange-bright); white-space:nowrap;}

  /* ---------- Portfolio ---------- */
  .portfolio-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .port-card{
    border:1px solid var(--line); border-radius:8px; overflow:hidden; background:var(--surface);
    transition:transform .25s ease, border-color .25s ease;
  }
  .port-card:hover{transform:translateY(-4px); border-color:var(--orange);}
  .port-thumb{
    height:170px; position:relative; overflow:hidden;
    background:
      radial-gradient(circle at 30% 20%, rgba(255,90,31,0.35), transparent 55%),
      linear-gradient(135deg, var(--surface-2), var(--bg));
    display:flex; align-items:center; justify-content:center;
  }
  .port-shot{
    width:100%; height:100%; object-fit:cover; object-position:top center;
    display:block; transition:transform .4s ease;
  }
  .port-card:hover .port-shot{ transform:scale(1.06); }
  .port-thumb .mark{
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:26px; color:var(--text); opacity:0.85;
    letter-spacing:0.02em; transition:transform .35s ease;
  }
  .port-card:hover .mark{ transform:scale(1.08); }
  .port-body{padding:20px 22px; display:flex; justify-content:space-between; align-items:center;}
  .port-body .name{font-weight:600; font-size:15px;}
  .port-body .tag{color:var(--muted); font-size:13px; font-family:'JetBrains Mono',monospace;}
  .port-arrow{color:var(--orange); font-size:18px;}

  /* ---------- About / mission / who ---------- */
  .about-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;}
  .about-grid p{color:var(--muted); font-size:16px; margin-bottom:18px;}
  .stat-list{display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:8px;}
  .stat{border-top:1px solid var(--line); padding-top:16px;}
  .stat .num{font-family:'Space Grotesk',sans-serif; font-size:30px; font-weight:700; color:var(--orange-bright);}
  .stat .lbl{font-size:13px; color:var(--muted); margin-top:4px;}

  .split{display:grid; grid-template-columns:1fr 1fr; gap:80px;}
  .split h3{font-size:24px; margin-bottom:16px;}
  .split p{color:var(--muted);}

  /* ---------- Why choose us ---------- */
  .why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:8px; overflow:hidden;}
  .why-item{background:var(--surface); padding:32px 28px;}
  .why-item .ico{color:var(--orange); font-size:20px; margin-bottom:16px; font-family:'JetBrains Mono',monospace;}
  .why-item h4{font-size:16px; margin-bottom:8px;}
  .why-item p{color:var(--muted); font-size:14px;}

  /* ---------- Services ---------- */
  .services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .service-card{
    border:1px solid var(--line); border-radius:8px; padding:30px 26px;
    background:var(--surface); transition:border-color .25s ease, background .25s ease;
  }
  .service-card:hover{border-color:var(--orange); background:linear-gradient(180deg, rgba(255,90,31,0.06), var(--surface));}
  .service-icon{
    width:42px; height:42px; border-radius:8px; background:rgba(255,90,31,0.12);
    display:flex; align-items:center; justify-content:center; margin-bottom:20px;
    color:var(--orange-bright); font-family:'JetBrains Mono',monospace; font-weight:600;
  }
  .service-card h4{font-size:17px; margin-bottom:10px;}
  .service-card p{color:var(--muted); font-size:14px;}

  /* ---------- CTA band ---------- */
  .cta-band{
    background:var(--cta-gradient);
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:100px 32px; text-align:center; position:relative; overflow:hidden;
  }
  .cta-band::before{
    content:''; position:absolute; width:600px; height:600px; border-radius:50%;
    background:radial-gradient(circle, rgba(255,90,31,0.22), transparent 70%);
    top:-300px; left:50%; transform:translateX(-50%); pointer-events:none;
    animation:pulseGlow 6s ease-in-out infinite;
  }
  @keyframes pulseGlow{
    0%,100%{opacity:.65; transform:translateX(-50%) scale(1);}
    50%{opacity:1; transform:translateX(-50%) scale(1.08);}
  }
  .cta-band h2{font-size:clamp(28px,4vw,44px); max-width:700px; margin:0 auto 20px;}
  .cta-band p{color:var(--muted); max-width:520px; margin:0 auto 36px; font-size:16px;}

  /* ---------- Contact ---------- */
  .contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:64px;}
  .contact-info .item{border-top:1px solid var(--line); padding:18px 0;}
  .contact-info .item:first-child{border-top:none;}
  .contact-info .k{font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--muted); font-family:'JetBrains Mono',monospace; margin-bottom:6px;}
  .contact-info .v{font-size:18px; font-weight:500;}
  .contact-info .v a:hover{color:var(--orange-bright);}
  .form{background:var(--surface); border:1px solid var(--line); border-radius:8px; padding:32px;}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
  .field label{display:block; font-size:12px; color:var(--muted); margin-bottom:8px; font-family:'JetBrains Mono',monospace; text-transform:uppercase; letter-spacing:0.05em;}
  .field input, .field textarea{
    width:100%; background:var(--bg); border:1px solid var(--line-strong); border-radius:5px;
    padding:12px 14px; color:var(--text); font-family:'Inter',sans-serif; font-size:14px;
  }
  .field input:focus, .field textarea:focus{outline:2px solid var(--orange); outline-offset:1px; border-color:var(--orange);}
  .field{margin-bottom:16px;}
  .submit-btn{
    width:100%; background:var(--orange); color:#0A0A0B; border:none; padding:14px;
    font-weight:600; font-size:15px; border-radius:5px; cursor:pointer; transition:background .2s ease;
    font-family:'Inter',sans-serif;
  }
  .submit-btn:hover{background:var(--orange-bright);}

  /* ---------- Footer ---------- */
  footer{border-top:1px solid var(--line); padding:36px 32px;}
  .footer-inner{max-width:1180px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;}

  footer p{color:var(--muted-2); font-size:13px;}

  a:focus-visible, button:focus-visible{outline:2px solid var(--orange); outline-offset:2px;}

  @media (max-width:900px){
    .hero-inner{grid-template-columns:1fr;}
    .hero{padding-top:100px;}
    .about-grid, .split, .contact-grid{grid-template-columns:1fr; gap:40px;}
    .pricing-grid, .portfolio-grid, .services-grid{grid-template-columns:1fr 1fr;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .nav-right{ gap:14px; }
    .nav-links{
      position:absolute; top:100%; left:0; right:0;
      flex-direction:column; align-items:flex-start; gap:0;
      background:var(--bg); border-bottom:1px solid var(--line);
      max-height:0; overflow:hidden; padding:0 32px;
      transition:max-height .35s ease, padding .35s ease;
    }
    .nav-links.open{ max-height:420px; padding:14px 32px 24px; }
    .nav-links a{ padding:11px 0; width:100%; }
    .nav-links a:not(.nav-cta)::after{ display:none; }
    .nav-links .nav-cta{ margin-top:8px; display:inline-block; }
    .burger{display:flex;}
  }
  @media (max-width:600px){
    .pricing-grid, .portfolio-grid, .services-grid, .why-grid{grid-template-columns:1fr;}
    .form-row{grid-template-columns:1fr;}
    .wrap{padding:0 20px;}
    .hero{padding:100px 20px 70px;}
  }

  /* ---------- Scroll reveal ---------- */
  .reveal{
    opacity:0; transform:translateY(26px);
    transition:opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1),
               border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
  }
  .reveal.is-visible{ opacity:1; transform:translateY(0); }

  /* ---------- Reduced motion safety net ---------- */
  @media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
      animation-duration:0.001ms !important;
      animation-iteration-count:1 !important;
      transition-duration:0.001ms !important;
      scroll-behavior:auto !important;
    }
    .reveal{ opacity:1; transform:none; }
  }

  /* ---------- Active nav link ---------- */
  .nav-links a.active{ color:var(--text); }
  .nav-links a.active::after{ right:0; }

  /* ---------- Page hero (sub-pages) ---------- */
  .page-hero{
    padding:150px 32px 70px; text-align:center; overflow:hidden; position:relative;
  }
  .page-hero .wrap{ max-width:760px; }
  .page-hero .eyebrow{ opacity:0; transform:translateY(14px); animation:heroIn .6s cubic-bezier(.2,.7,.3,1) forwards; animation-delay:.05s; }
  .page-hero h1{
    font-size:clamp(34px,4.6vw,52px); margin-bottom:18px;
    opacity:0; transform:translateY(14px); animation:heroIn .6s cubic-bezier(.2,.7,.3,1) forwards; animation-delay:.14s;
  }
  .page-hero p.lede{
    font-size:17px; color:var(--muted); max-width:560px; margin:0 auto;
    opacity:0; transform:translateY(14px); animation:heroIn .6s cubic-bezier(.2,.7,.3,1) forwards; animation-delay:.22s;
  }
  .page-hero .breadcrumb{
    display:flex; align-items:center; justify-content:center; gap:8px;
    font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--muted-2);
    margin-bottom:20px;
  }
  .page-hero .breadcrumb a{ color:var(--muted); transition:color .2s ease; }
  .page-hero .breadcrumb a:hover{ color:var(--orange); }

  /* ---------- Trusted-by strip ---------- */
  .trusted-by{ padding:48px 0; }
  .trusted-by .tb-label{
    text-align:center; font-family:'JetBrains Mono',monospace; font-size:12px;
    letter-spacing:0.1em; text-transform:uppercase; color:var(--muted-2); margin-bottom:28px;
  }
  .tb-row{
    display:flex; justify-content:center; align-items:center; gap:56px; flex-wrap:wrap;
  }
  .tb-row a{
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:20px; color:var(--muted);
    opacity:0.7; transition:opacity .25s ease, color .25s ease;
  }
  .tb-row a:hover{ opacity:1; color:var(--text); }

  /* ---------- Home teaser section headers with "view all" link ---------- */
  .teaser-head{
    display:flex; justify-content:space-between; align-items:flex-end; gap:24px;
    margin-bottom:44px; flex-wrap:wrap;
  }
  .teaser-head .section-head{ margin-bottom:0; }
  .view-all{
    font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--orange-bright);
    display:inline-flex; align-items:center; gap:6px; white-space:nowrap; padding-bottom:4px;
    transition:gap .2s ease;
  }
  .view-all:hover{ gap:10px; }

  /* ---------- FAQ accordion ---------- */
  .faq-list{ max-width:760px; margin:0 auto; }
  .faq-item{
    border-bottom:1px solid var(--line);
  }
  .faq-item:first-child{ border-top:1px solid var(--line); }
  .faq-question{
    width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
    background:none; border:none; text-align:left; cursor:pointer;
    padding:22px 4px; font-family:'Space Grotesk',sans-serif; font-size:17px; font-weight:600; color:var(--text);
  }
  .faq-icon{
    flex-shrink:0; width:22px; height:22px; position:relative;
  }
  .faq-icon::before, .faq-icon::after{
    content:''; position:absolute; top:50%; left:50%; background:var(--orange);
    transform:translate(-50%,-50%); transition:transform .3s ease, opacity .3s ease;
  }
  .faq-icon::before{ width:14px; height:2px; }
  .faq-icon::after{ width:2px; height:14px; }
  .faq-item.open .faq-icon::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
  .faq-answer{
    max-height:0; overflow:hidden; transition:max-height .35s ease;
  }
  .faq-answer p{ color:var(--muted); font-size:15px; padding:0 4px 22px; max-width:640px; }

  /* ---------- Process steps ---------- */
  .process-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step;
  }
  .process-step{ position:relative; padding-top:8px; }
  .process-step .step-num{
    font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--orange-bright);
    border:1px solid var(--line-strong); width:34px; height:34px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  }
  .process-step h4{ font-size:16px; margin-bottom:8px; }
  .process-step p{ color:var(--muted); font-size:14px; }
  .process-step:not(:last-child)::after{
    content:''; position:absolute; top:17px; left:calc(100% - 12px); width:calc(24px + 24px); height:1px;
    background:var(--line-strong); display:none;
  }
  @media (min-width:901px){
    .process-step:not(:last-child)::after{ display:block; }
  }

  /* ---------- Service detail cards (services page) ---------- */
  .service-detail{
    border:1px solid var(--line); border-radius:8px; padding:32px 28px; background:var(--surface);
    transition:border-color .25s ease;
  }
  .service-detail:hover{ border-color:var(--orange); }
  .service-detail-list{ list-style:none; margin-top:18px; }
  .service-detail-list li{
    display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text-soft);
    padding:7px 0; border-top:1px solid var(--line);
  }
  .service-detail-list li:first-child{ border-top:none; }
  .service-detail-list li::before{ content:'→'; color:var(--orange); flex-shrink:0; font-family:'JetBrains Mono',monospace; }

  /* ---------- Portfolio case detail (portfolio page) ---------- */
  .case-card{
    border:1px solid var(--line); border-radius:10px; overflow:hidden; background:var(--surface);
    display:grid; grid-template-columns:1.1fr 1fr; transition:border-color .25s ease;
  }
  .case-card:hover{ border-color:var(--orange); }
  .case-card .case-shot-wrap{ position:relative; overflow:hidden; min-height:260px; background:var(--surface-2); }
  .case-shot{ width:100%; height:100%; object-fit:cover; object-position:top center; display:block; transition:transform .4s ease; }
  .case-card:hover .case-shot{ transform:scale(1.05); }
  .case-body{ padding:36px 32px; display:flex; flex-direction:column; }
  .case-tag{
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--orange-bright); margin-bottom:12px;
  }
  .case-body h3{ font-size:24px; margin-bottom:12px; }
  .case-body p{ color:var(--muted); font-size:15px; margin-bottom:20px; }
  .case-list{ list-style:none; margin-bottom:24px; }
  .case-list li{
    display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text-soft);
    padding:6px 0;
  }
  .case-list li::before{ content:'→'; color:var(--orange); flex-shrink:0; font-family:'JetBrains Mono',monospace; }
  .case-link{
    margin-top:auto; font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--orange-bright);
    display:inline-flex; align-items:center; gap:6px; transition:gap .2s ease;
  }
  .case-link:hover{ gap:10px; }
  @media (max-width:900px){
    .case-card{ grid-template-columns:1fr; }
    .case-card .case-shot-wrap{ min-height:200px; }
    .process-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:600px){
    .process-grid{ grid-template-columns:1fr; }
    .case-body{ padding:28px 22px; }
  }

  /* ---------- 404 page ---------- */
  .error-page{
    min-height:70vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:150px 32px 100px;
  }
  .error-code{
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:clamp(64px,12vw,120px);
    background:linear-gradient(135deg,var(--orange),var(--amber));
    -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1;
  }
  .error-page h1{ font-size:clamp(22px,3vw,30px); margin:16px 0 12px; }
  .error-page p{ color:var(--muted); margin-bottom:32px; max-width:440px; }
