    :root {
      --orange: #F47820;
      --red: #C0321C;
      --dark: #0e0e0e;
      --mid: #1a1a1a;
      --light: #f5f2ee;
      --muted: #888;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--light);
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 60px;
      background: rgba(14,14,14,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(244,120,32,0.15);
    }

    .nav-logo img { height: 40px; }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--light);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.7;
      transition: opacity 0.2s, color 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--orange); }

    .nav-cta {
      background: var(--orange);
      color: #fff !important;
      opacity: 1 !important;
      padding: 9px 22px;
      border-radius: 2px;
      font-family: 'Barlow Condensed', sans-serif !important;
      font-weight: 700 !important;
      letter-spacing: 0.1em;
    }

    .nav-cta:hover { background: var(--red) !important; color: #fff !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 60px 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192,50,28,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(244,120,32,0.08) 0%, transparent 60%),
        var(--dark);
    }

    /* brick texture overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.015) 28px, rgba(255,255,255,0.015) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(255,255,255,0.015) 58px, rgba(255,255,255,0.015) 59px);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.6s 0.2s forwards;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 9vw, 140px);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--light);
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeUp 0.7s 0.4s forwards;
    }

    .hero-title span {
      -webkit-text-stroke: 1.5px var(--orange);
      color: transparent;
    }

    .hero-sub {
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(245,242,238,0.65);
      max-width: 520px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.7s 0.6s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.7s 0.8s forwards;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      text-decoration: none;
      padding: 14px 34px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover { background: var(--red); transform: translateY(-2px); }

    .btn-ghost {
      color: var(--light);
      text-decoration: none;
      padding: 14px 30px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid rgba(245,242,238,0.25);
      border-radius: 2px;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

    /* diagonal accent line */
    .hero-line {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 45%;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-line::before {
      content: '';
      position: absolute;
      top: -10%;
      right: 10%;
      width: 2px;
      height: 120%;
      background: linear-gradient(180deg, transparent, var(--orange) 40%, var(--red) 60%, transparent);
      transform: rotate(12deg);
      opacity: 0.3;
    }

    .hero-line::after {
      content: '';
      position: absolute;
      top: -10%;
      right: 20%;
      width: 1px;
      height: 120%;
      background: linear-gradient(180deg, transparent, rgba(244,120,32,0.2) 50%, transparent);
      transform: rotate(12deg);
    }

    /* floating stat cards */
    .hero-stats {
      position: absolute;
      right: 60px;
      bottom: 100px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      z-index: 2;
      opacity: 0;
      animation: fadeLeft 0.8s 1s forwards;
    }

    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(244,120,32,0.2);
      border-left: 3px solid var(--orange);
      padding: 18px 24px;
      min-width: 180px;
      backdrop-filter: blur(8px);
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: var(--orange);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(245,242,238,0.5);
      margin-top: 4px;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--orange);
      padding: 12px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-inner {
      display: inline-flex;
      gap: 60px;
      animation: ticker 120s linear infinite;
    }

    .ticker-item {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .ticker-item::before {
      content: '◆';
      font-size: 0.5rem;
      opacity: 0.7;
    }

    /* ── SERVICES ── */
    .section {
      padding: 120px 60px;
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5vw, 72px);
      line-height: 0.95;
      letter-spacing: 0.02em;
      margin-bottom: 60px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .service-card {
      background: var(--mid);
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: background 0.3s;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card:hover { background: #222; }
    .service-card:hover::before { transform: scaleX(1); }

    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(244,120,32,0.12);
      line-height: 1;
      margin-bottom: 20px;
      transition: color 0.3s;
    }

    .service-card:hover .service-num { color: rgba(244,120,32,0.25); }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    .service-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 14px;
    }

    .service-desc {
      font-size: 0.9rem;
      line-height: 1.7;
      color: rgba(245,242,238,0.55);
    }

    /* ── WHY US ── */
    .why {
      background: var(--mid);
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .why-text .section-title { margin-bottom: 24px; }

    .why-body {
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(245,242,238,0.6);
      margin-bottom: 40px;
    }

    .why-pillars {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .pillar {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .pillar-dot {
      width: 10px;
      height: 10px;
      background: var(--orange);
      border-radius: 50%;
      margin-top: 6px;
      flex-shrink: 0;
    }

    .pillar-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 6px;
    }

    .pillar-desc {
      font-size: 0.88rem;
      line-height: 1.65;
      color: rgba(245,242,238,0.5);
    }

    .why-domains {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-content: start;
    }

    .domain-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(244,120,32,0.2);
      border-left: 3px solid var(--orange);
      padding: 22px 24px;
      transition: background 0.2s, border-color 0.2s;
    }

    .domain-card:hover {
      background: rgba(244,120,32,0.07);
      border-color: var(--orange);
    }

    .domain-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--light);
    }

    /* why visual no longer needed */

    /* ── PROCESS ── */
    .process {
      padding: 120px 60px;
      background: var(--dark);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 60px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange), var(--red), var(--orange), transparent);
    }

    .step {
      padding: 0 24px;
      text-align: center;
    }

    .step-num {
      width: 64px;
      height: 64px;
      background: var(--dark);
      border: 2px solid var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--orange);
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
    }

    .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 12px;
    }

    .step-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: rgba(245,242,238,0.5);
    }

    /* ── CTA ── */
    .cta {
      background: linear-gradient(135deg, var(--red) 0%, #a02010 40%, #8a1a08 100%);
      padding: 100px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0,0,0,0.08) 28px, rgba(0,0,0,0.08) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 58px, rgba(0,0,0,0.08) 58px, rgba(0,0,0,0.08) 59px);
    }

    .cta-content { position: relative; z-index: 1; }

    .cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 7vw, 96px);
      line-height: 0.95;
      color: #fff;
      margin-bottom: 20px;
    }

    .cta-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 44px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .btn-white {
      background: #fff;
      color: var(--red);
      text-decoration: none;
      padding: 16px 44px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-white:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

    /* ── CONTACT FORM ── */
    .contact-form {
      max-width: 620px;
      margin: 0 auto;
      text-align: left;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .form-row .form-group {
      margin-bottom: 0;
    }

    .contact-form label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 500;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 2px;
      padding: 12px 16px;
      color: #fff;
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem;
      font-weight: 300;
      transition: border-color 0.2s, background 0.2s;
      width: 100%;
      resize: vertical;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255,255,255,0.3);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--orange);
      background: rgba(255,255,255,0.12);
    }

    .contact-form .btn-white {
      width: 100%;
      text-align: center;
      cursor: pointer;
      border: none;
      font-size: 1rem;
      margin-top: 4px;
    }

    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
    }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      padding: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      border-top: 1px solid rgba(244,120,32,0.1);
    }

    .footer-logo img { height: 32px; opacity: 0.8; }

    .footer-copy {
      font-size: 0.78rem;
      color: rgba(245,242,238,0.3);
      letter-spacing: 0.05em;
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      color: rgba(245,242,238,0.35);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--orange); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(28px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: 16px 32px; }
      .hero { padding: 120px 32px 80px; }
      .hero-stats { right: 32px; }
      .section, .process { padding: 80px 32px; }
      .why { padding: 80px 32px; grid-template-columns: 1fr; gap: 60px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process-steps::before { display: none; }
      footer { padding: 40px 32px; }
      .cta { padding: 80px 32px; }
    }

    @media (max-width: 640px) {
      nav { padding: 14px 20px; }
      .nav-links { display: none; }
      .hero { padding: 100px 20px 60px; }
      .hero-stats { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
    }
