  :root {
    --canvas: #FFFFFF;
    --tint: #F3F5FF;
    --card: #FFFFFF;
    --ink: #141319;
    --ink-soft: #57565F;
    --blue: #2B32E8;
    --blue-deep: #171B8C;
    --accent: #FFC53D;
    --line: #E7E7EF;
    --line-soft: #F0F0F5;
    --shadow: 0 24px 60px -24px rgba(23, 27, 140, .28);
    --shadow-sm: 0 10px 30px -18px rgba(20, 19, 25, .18);
    --r: 16px;
    --maxw: 1270px;
  }

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

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

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

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

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
        max-width: 1275px;
  }

  .mono {
    font-family: 'DM Mono', monospace
  }

  .eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: .6em;
  }

  .eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--blue);
    display: inline-block
  }

  h1,
  h2,
  h3 {
    line-height: 1.05;
    letter-spacing: -.02em;
    font-weight: 800
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 26px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: .22s ease;
  }

  .btn-primary {
    background: var(--blue);
    color: #fff
  }

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

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink)
  }

  .btn-ghost:hover {
    background: var(--ink);
    color: var(--canvas);
    transform: translateY(-2px)
  }

  .btn .arw {
    transition: transform .22s ease
  }

  .btn:hover .arw {
    transform: translate(3px, -3px)
  }

  :focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 6px
  }

  /* ---------- HEADER ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-deep) 100%);
    transition: box-shadow .3s
  }

  header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #8489ff, var(--accent))
  }

  header.scrolled {
    box-shadow: 0 12px 34px -16px rgba(23, 27, 140, .8)
  }

  /* scrolling Independence Day offer bar */
  .announce {
    background: #fff;
    color: var(--ink);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    max-height: 36px;
    transition: max-height .35s ease, opacity .35s ease;
    position: relative
  }

  .announce::before,
  .announce::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8px;
    z-index: 2
  }

  .announce::before {
    left: 0;
    background: #FF9933
  }

  .announce::after {
    right: 0;
    background: #138808
  }

  header.scrolled .announce {
    max-height: 0;
    opacity: 0;
    border-color: transparent
  }

  .announce-track {
    display: flex;
    width: max-content;
    animation: announceScroll 32s linear infinite
  }

  .announce:hover .announce-track {
    animation-play-state: paused
  }

  .announce-set {
    white-space: nowrap;
    font-family: 'DM Sans', monospace;
    font-size: .72rem;
    letter-spacing: .03em;
    padding: 9px 0;
    color: #343437
  }

  .announce-set b {
    color: #E2691F;
    font-weight: 600
  }

  @keyframes announceScroll {
    to {
      transform: translateX(-50%)
    }
  }

  /* top utility bar */
  .topbar {
    background: #fff;
    max-height: 46px;
    overflow: hidden;
    transition: max-height .35s ease, opacity .35s ease
  }

  header.scrolled .topbar {
    max-height: 0;
    opacity: 0
  }

  .topbar-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .02em;
    color: var(--ink-soft)
  }

  .tb-left,
  .tb-right {
    display: flex;
    align-items: center;
    gap: 18px
  }

  .tb-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-soft);
    transition: color .2s
  }

  .tb-item:hover {
    color: var(--blue)
  }

  .tb-item svg {
    width: 13px;
    height: 13px
  }

  .tb-trust {
    color: var(--ink)
  }

  .tb-trust .stars {
    color: #F5A623;
    letter-spacing: 1px;
    margin-right: 4px
  }

  .tb-social {
    display: flex;
    gap: 11px
  }

  .tb-social a {
    color: var(--ink-soft);
    transition: color .2s, transform .2s
  }

  .tb-social a:hover {
    color: var(--blue);
    transform: translateY(-1px)
  }

  .tb-social svg {
    width: 15px;
    height: 15px
  }

  .tb-divider {
    width: 1px;
    height: 14px;
    background: var(--line)
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff
  }

  .logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
    position: relative;
    flex: none;
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .45)
  }

  .logo .mark::before {
    content: "";
    position: absolute;
    inset: 9px 9px auto auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent)
  }

  .logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1
  }

  /*.logo .logo-text b{font-weight:800;font-size:1.24rem;letter-spacing:-.03em;
    background:linear-gradient(100deg,#fff 0%,#fff 38%,var(--accent) 50%,#fff 62%,#fff 100%);
    background-size:220% auto;-webkit-background-clip:text;background-clip:text;color:transparent;-webkit-text-fill-color:transparent;
    animation:logoShine 4.5s linear infinite}*/

  .logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: .98
  }

  .logo .lt-1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: .01em;
    margin-bottom: 1px
  }

  .logo .lt-2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: -.02em;
    background: linear-gradient(100deg, #fff 0 40%, #ffe6a6 50%, #fff 60% 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: logoShine 4.5s linear infinite
  }


  @keyframes logoShine {
    to {
      background-position: -220% center
    }
  }

  header .logo .mark {
    animation: markFloat 3.4s ease-in-out infinite
  }

  @keyframes markFloat {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-3px)
    }
  }

  header .logo .mark::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: 0 0 0 0 rgba(255, 197, 61, .6);
    animation: markGlow 2.6s ease-in-out infinite
  }

  @keyframes markGlow {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(255, 197, 61, .55)
    }

    50% {
      box-shadow: 0 0 0 7px rgba(255, 197, 61, 0)
    }
  }

  /*.logo .logo-text small{font-family:'DM Mono',monospace;font-size:.55rem;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.72);margin-top:4px}
  */
  .nav-links {
    display: flex;
    gap: 30px;
    align-items: center
  }

  .nav-links a,
  .nav-svc {
    position: relative;
    font-size: .94rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    transition: color .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0
  }

  .nav-links a::after,
  .nav-svc::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease
  }

  .nav-links a:hover,
  .nav-svc:hover {
    color: #fff
  }

  .nav-links a:hover::after,
  .nav-svc:hover::after {
    transform: scaleX(1)
  }

  .nav-svc {
    display: inline-flex;
    align-items: center;
    gap: 7px
  }

  .nav-svc .caret {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .2s
  }

  .nav-svc[aria-expanded="true"] .caret {
    transform: rotate(-135deg);
    margin-top: 2px
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 14px
  }

  header .btn-primary {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .4);
    padding: 9px 18px;
    font-size: .86rem
  }

  header .btn-primary:hover {
    background: var(--accent);
    color: var(--ink)
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px
  }

  .burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .25s
  }

  .cur-switch {
    display: inline-flex;
    background: rgba(255, 255, 255, .16);
    border-radius: 100px;
    padding: 3px
  }

  .cur-switch button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .82);
    padding: 6px 13px;
    border-radius: 100px;
    transition: .2s
  }

  .cur-switch button.active {
    background: #fff;
    color: var(--blue)
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 45px 0 40px;
    position: relative;
    background: #fff;
    overflow: hidden
  }

  .hero-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
  }

  .hd-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(34px)
  }

  .hd-glow1 {
    width: 540px;
    height: 540px;
    top: -250px;
    right: -150px;
    background: radial-gradient(circle, rgba(43, 50, 232, .20), transparent 68%);
    animation: heroFloat 18s ease-in-out infinite
  }

  .hd-glow2 {
    width: 420px;
    height: 420px;
    bottom: -230px;
    left: -130px;
    background: radial-gradient(circle, rgba(255, 197, 61, .18), transparent 68%);
    animation: heroFloat 22s ease-in-out infinite reverse
  }

  .hd-glow3 {
    width: 340px;
    height: 340px;
    top: 38%;
    left: 52%;
    background: radial-gradient(circle, rgba(91, 96, 255, .12), transparent 70%);
    animation: heroFloat 26s ease-in-out infinite
  }

  .hd-ring {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 1.5px solid rgba(43, 50, 232, .16);
    border-radius: 50%;
    top: 14%;
    left: -72px;
    animation: heroFloat 20s ease-in-out infinite
  }

  .hd-ring::after {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1.5px dashed rgba(43, 50, 232, .12);
    border-radius: 50%
  }

  .hd-dot {
    position: absolute;
    border-radius: 50%
  }

  .hd-dot1 {
    width: 14px;
    height: 14px;
    background: var(--accent);
    top: 20%;
    left: 46%;
    box-shadow: 0 6px 16px -4px rgba(255, 197, 61, .7);
    animation: heroFloat 13s ease-in-out infinite
  }

  .hd-dot2 {
    width: 10px;
    height: 10px;
    background: var(--blue);
    bottom: 22%;
    left: 9%;
    animation: heroFloat 16s ease-in-out infinite reverse
  }

  .hd-dot3 {
    width: 8px;
    height: 8px;
    background: #5b60ff;
    top: 12%;
    right: 16%;
    animation: heroFloat 11s ease-in-out infinite
  }

  @keyframes heroFloat {

    0%,
    100% {
      transform: translate(0, 0)
    }

    50% {
      transform: translate(22px, 26px)
    }
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.6fr 0.95fr;
    gap: 36px;
    align-items: center;
        max-width: 1275px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 3.09rem);
    margin: 20px 0 22px
  }

  .hl {
    position: relative;
    white-space: nowrap;
    color: var(--blue)
  }

  .hl-cw {
    background: linear-gradient(120deg, #FFE7A6, #FFD873);
    color: var(--ink);
    padding: 0 .16em;
    border-radius: 8px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone
  }

  .hl svg {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 14px;
    overflow: visible
  }

  .hl path {
    stroke: var(--accent);
    stroke-width: 9;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: draw 1s .5s ease forwards
  }

  @keyframes draw {
    to {
      stroke-dashoffset: 0
    }
  }

  .hero p.lead {
    font-size: 1.16rem;
    color: var(--ink-soft);
    max-width: 50ch;
    margin-bottom: 32px
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px
  }

  .trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap
  }

  .trust .item {
    display: flex;
    flex-direction: column
  }

  .trust .num {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em
  }

  .trust .lbl {
    font-family: 'DM Mono', monospace;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-soft)
  }

  .stars {
    color: var(--accent);
    font-size: 1.05rem;
    letter-spacing: 2px
  }

  /* hero visual */
  .hero-visual {
    position: relative;
    perspective: 1200px
  }

  .browser {
    background: var(--card);
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform .2s ease-out;
  }

  .browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line-soft);
    background: #fbfaf7
  }

  .browser-bar i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #E2DFD4;
    display: block
  }

  .browser-bar i:nth-child(1) {
    background: #FF6057
  }

  .browser-bar i:nth-child(2) {
    background: #FFBD2E
  }

  .browser-bar i:nth-child(3) {
    background: #28C840
  }

  .browser-bar .url {
    margin-left: 10px;
    flex: 1;
    height: 22px;
    border-radius: 6px;
    background: #F0EEE7;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    padding: 0 12px
  }

  .screen {
    padding: 22px
  }

  .screen .s-hero {
    background: linear-gradient(120deg, var(--blue), #5b60ff);
    border-radius: 12px;
    padding: 22px;
    color: #fff
  }

  .screen .s-hero .tag {
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    letter-spacing: .14em;
    opacity: .85;
    text-transform: uppercase
  }

  .screen .s-hero h4 {
    font-size: 1.35rem;
    margin: 8px 0 12px;
    letter-spacing: -.02em
  }

  .screen .s-hero .bar {
    height: 9px;
    width: 60%;
    background: rgba(255, 255, 255, .35);
    border-radius: 6px
  }

  .screen .s-hero .bar.b2 {
    width: 42%;
    margin-top: 7px
  }

  .screen .s-hero .pill {
    display: inline-block;
    margin-top: 16px;
    background: var(--accent);
    color: var(--ink);
    font-weight: 700;
    font-size: .72rem;
    padding: 7px 14px;
    border-radius: 100px
  }

  .screen .s-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 14px
  }

  .screen .s-card {
    background: #F4F2EC;
    border-radius: 10px;
    height: 56px;
    position: relative
  }

  .screen .s-card::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--blue);
    opacity: .85
  }

  .screen .s-card:nth-child(2)::after {
    background: var(--accent)
  }

  .screen .s-card:nth-child(3)::after {
    background: #5b60ff
  }

  .chip {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: .85rem
  }

  .chip .dot {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex: none
  }

  .chip-speed {
    top: -22px;
    right: -10px;
    animation: float 5s ease-in-out infinite
  }

  .chip-speed .dot {
    background: #E7FBEF;
    color: #12A150
  }

  .chip-swatch {
    bottom: 34px;
    left: -34px;
    animation: float 6s ease-in-out .8s infinite
  }

  .chip-swatch .dot {
    background: var(--blue);
    color: #fff
  }

  .cursor {
    position: absolute;
    bottom: -6px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 4.4s ease-in-out .3s infinite
  }

  .cursor svg {
    filter: drop-shadow(0 4px 8px rgba(20, 19, 25, .25))
  }

  .cursor .name {
    background: var(--ink);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-9px)
    }
  }

  /* ---------- MARQUEE / STATS STRIP ---------- */
  .strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ink);
    color: var(--canvas)
  }

  .strip .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    padding-top: 26px;
    padding-bottom: 26px;
        max-width: 1275px;
  }

  .strip .s {
    display: flex;
    align-items: baseline;
    gap: 12px
  }

  .strip .s b {
    font-size: 1.6rem;
    letter-spacing: -.03em
  }

  .strip .s span {
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #B9B8C4;
    max-width: 16ch
  }

  /* ---------- SECTION SHELL ---------- */
  section {
    padding: 45px 0
  }

  .sec-head {
    max-width: 640px;
    margin-bottom: 52px
  }

  .sec-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    margin: 16px 0 14px
  }

  .sec-head p {
    color: var(--ink-soft);
    font-size: 1.08rem
  }

  /* ---------- SERVICES ---------- */
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

  .svc {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 28px;
    transition: .25s ease
  }

  .svc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--blue)
  }

  .svc .ico {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #EEF0FF;
    margin-bottom: 20px;
    font-size: 1.5rem
  }

  .svc h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
    letter-spacing: -.02em
  }

  .svc p {
    color: var(--ink-soft);
    font-size: .97rem
  }

  .svc:nth-child(2) .ico {
    background: #FFF4D6
  }

  .svc:nth-child(3) .ico {
    background: #E7FBEF
  }

  .svc:nth-child(5) .ico {
    background: #FFF4D6
  }

  .svc:nth-child(6) .ico {
    background: #E7FBEF
  }

  /* ---------- PROCESS ---------- */
  #process {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
  }

  .step {
    padding: 34px 26px 34px 0;
    border-top: 2px solid var(--ink);
    position: relative
  }

  .step .no {
    font-family: 'DM Mono', monospace;
    font-size: .9rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 18px;
    display: block
  }

  .step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px
  }

  .step p {
    color: var(--ink-soft);
    font-size: .95rem;
    padding-right: 14px
  }

  /* ---------- WORK ---------- */
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
  }

  .work-carousel {
    position: relative
  }

  .work-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 8px;
    -ms-overflow-style: none;
    scrollbar-width: none
  }

  .work-track::-webkit-scrollbar {
    display: none
  }

  .work-track .proj {
    flex: 0 0 clamp(240px, 27%, 300px);
    scroll-snap-align: start
  }

  .wc-arrow {
    position: absolute;
    top: 85px;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px -14px rgba(20, 19, 25, .4);
    transition: .2s
  }

  .wc-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
  }

  .wc-prev {
    left: -24px
  }

  .wc-next {
    right: -24px
  }

  .proj .thumb .shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .5s ease
  }

  .proj:hover .thumb .shot {
    transform: scale(1.06)
  }

  .proj {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: 0 1px 2px rgba(20, 19, 25, .04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
  }

  .proj:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -24px rgba(20, 19, 25, .42);
    border-color: #D5D9FF
  }

  .proj .thumb {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: none;
    overflow: hidden;
    border-bottom: 1px solid var(--line)
  }

  .proj .tbar {
    height: 34px;
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    background: linear-gradient(180deg, #F5F6FB, #EAEDF5);
    border-bottom: 1px solid var(--line)
  }

  .proj .tbar .dots {
    display: flex;
    gap: 5px;
    flex: none
  }

  .proj .tbar .dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    background: #cdd2e0
  }

  .proj .tbar .dots i:nth-child(1) {
    background: #ff5f57
  }

  .proj .tbar .dots i:nth-child(2) {
    background: #febc2e
  }

  .proj .tbar .dots i:nth-child(3) {
    background: #28c840
  }

  .proj .tbar .url {
    flex: 1;
    min-width: 0;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    color: var(--ink-soft);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 3px 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .proj .shot-wrap {
    position: relative;
    height: 150px;
    overflow: hidden
  }

  .proj .visit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(20, 19, 25, 0) 30%, rgba(20, 19, 25, .5));
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2
  }

  .proj:hover .visit {
    opacity: 1
  }

  .proj .visit span {
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 8px 16px;
    border-radius: 100px;
    transform: translateY(8px);
    transition: transform .3s ease
  }

  .proj:hover .visit span {
    transform: translateY(0)
  }

  .p1 .shot-wrap {
    background: linear-gradient(135deg, #2B32E8, #7A80FF)
  }

  .p2 .shot-wrap {
    background: linear-gradient(135deg, #141319, #3a3852)
  }

  .p3 .shot-wrap {
    background: linear-gradient(135deg, #FFC53D, #FF8A3D)
  }

  .proj .thumb .mock {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    top: 34px;
    background: rgba(255, 255, 255, .94);
    border-radius: 10px 10px 0 0;
    padding: 16px
  }

  .proj .thumb .mock .l {
    height: 8px;
    border-radius: 5px;
    background: #E7E5DC;
    margin-bottom: 9px
  }

  .proj .thumb .mock .l.w1 {
    width: 55%;
    background: var(--ink);
    height: 11px
  }

  .proj .thumb .mock .l.w2 {
    width: 80%
  }

  .proj .thumb .mock .l.w3 {
    width: 65%
  }

  .proj .thumb .mock .row {
    display: flex;
    gap: 8px;
    margin-top: 14px
  }

  .proj .thumb .mock .row span {
    flex: 1;
    height: 34px;
    border-radius: 7px;
    background: #F0EEE7
  }

  .proj .meta {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column
  }

  .proj .meta .cat {
    font-family: 'DM Mono', monospace;
    font-size: .64rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500
  }

  .proj .meta h3 {
    font-size: 1.12rem;
    margin: 7px 0 5px;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 6px
  }

  .proj .meta h3 .ext {
    color: var(--blue);
    font-size: .9rem;
    opacity: .55;
    transition: .2s
  }

  .proj:hover .meta h3 .ext {
    opacity: 1;
    transform: translate(2px, -2px)
  }

  .proj .meta p {
    color: var(--ink-soft);
    font-size: .85rem;
    line-height: 1.45
  }

  /* ---------- TESTIMONIALS ---------- */
  #love {
    background: var(--ink);
    color: var(--canvas)
  }

  #love .eyebrow {
    color: var(--accent)
  }

  #love .eyebrow::before {
    background: var(--accent)
  }

  #love .sec-head p {
    color: #C7C6D2
  }

  .marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
  }

  .marquee-track {
    --shift: 2172px;
    display: flex;
    width: max-content;
    animation: scrollx 55s linear infinite
  }

  .marquee:hover .marquee-track {
    animation-play-state: paused
  }

  @keyframes scrollx {
    to {
      transform: translateX(calc(var(--shift) * -1))
    }
  }

  .quote {
    background: #1E1D26;
    border: 1px solid #2C2B36;
    border-radius: var(--r);
    padding: 30px 28px;
    width: 340px;
    margin-right: 22px;
    flex: none
  }

  .quote .stars {
    margin-bottom: 16px;
    display: block
  }

  .quote p {
    font-size: 1.05rem;
    margin-bottom: 22px;
    letter-spacing: -.01em
  }

  .quote .who {
    display: flex;
    align-items: center;
    gap: 12px
  }

  .quote .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    flex: none
  }

  .quote:nth-child(3n+2) .av {
    background: var(--accent);
    color: var(--ink)
  }

  .quote:nth-child(3n) .av {
    background: #5b60ff
  }

  .quote .who b {
    display: block;
    font-size: .95rem
  }

  .quote .who span {
    font-size: .8rem;
    color: #9C9BA8;
    font-family: 'DM Mono', monospace
  }

  /* ---------- PRICING ---------- */
  .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
    gap: 18px;
    align-items: stretch
  }

  .plan {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 34px 30px;
    display: flex;
    flex-direction: column
  }

  .plan.feat {
    background: var(--ink);
    color: var(--canvas);
    border-color: var(--ink);
    position: relative
  }

  .plan.feat .badge {
    position: absolute;
    top: 22px;
    right: 26px;
    background: var(--accent);
    color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 100px;
    font-weight: 500
  }

  .plan .pname {
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue)
  }

  .plan.feat .pname {
    color: var(--accent)
  }

  .plan .amt {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 14px 0 4px
  }

  .plan .amt small {
    font-size: .95rem;
    font-weight: 500;
    color: var(--ink-soft)
  }

  .plan.feat .amt small {
    color: #B9B8C4
  }

  .plan .desc {
    color: var(--ink-soft);
    font-size: .95rem;
    margin-bottom: 22px;
    min-height: 44px
  }

  .plan.feat .desc {
    color: #C7C6D2
  }

  .plan ul {
    list-style: none;
    margin-bottom: 28px;
    flex: 1
  }

  .plan li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 9px 0;
    font-size: .95rem;
    border-top: 1px solid var(--line-soft)
  }

  .plan.feat li {
    border-color: #2C2B36
  }

  .plan li:first-child {
    border-top: none
  }

  .plan li::before {
    content: "→";
    color: var(--blue);
    font-weight: 700;
    flex: none
  }

  .plan.feat li::before {
    color: var(--accent)
  }

  .plan .btn {
    width: 100%;
    justify-content: center
  }

  .plan.feat .btn-primary {
    background: var(--accent);
    color: var(--ink)
  }

  .plan.feat .btn-primary:hover {
    background: #ffd66e
  }

  /* ---------- FAQ ---------- */
  .faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 56px;
    align-items: start
  }

  .faq-list {
    border-top: 1px solid var(--line)
  }

  .faq-item {
    border-bottom: 1px solid var(--line)
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    font-size: 1.16rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
    font-family: inherit
  }

  .faq-q .pm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: grid;
    place-items: center;
    flex: none;
    transition: .25s;
    font-size: 1.1rem;
    line-height: 1
  }

  .faq-item.open .pm {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: rotate(45deg)
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
  }

  .faq-a p {
    padding: 0 0 24px;
    color: var(--ink-soft);
    font-size: 1rem;
    max-width: 60ch
  }

  /* ---------- FINAL CTA (full-bleed band) ---------- */
  #cta {
    background: var(--blue);
    color: #fff;
    padding: 84px 0;
    position: relative;
    overflow: hidden
  }

  #cta::before,
  #cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none
  }

  #cta::before {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -120px
  }

  #cta::after {
    width: 340px;
    height: 340px;
    bottom: -180px;
    right: -90px
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 48px;
    align-items: center
  }

  .cta-left .eyebrow {
    color: var(--accent)
  }

  .cta-left .eyebrow::before {
    background: var(--accent)
  }

  .cta-left h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    margin: 16px 0 14px
  }

  .cta-left p {
    font-size: 1.14rem;
    color: rgba(255, 255, 255, .92);
    max-width: 46ch
  }

  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start
  }

  .cta-right .btn {
    background: #fff;
    color: var(--blue);
    border: none
  }

  .cta-right .btn:hover {
    background: var(--accent);
    color: var(--ink)
  }

  .cta-contact {
    font-family: 'DM Mono', monospace;
    font-size: .82rem;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .85);
    line-height: 1.9
  }

  .cta-contact a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px
  }

  /* ---------- SOCIAL RAIL (fixed right) ---------- */
  .social-rail {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    padding: 8px;
    border: 1px solid var(--line);
    border-right: none;
    border-radius: 16px 0 0 16px;
    box-shadow: -10px 14px 34px -20px rgba(20, 19, 25, .5)
  }

  .social-rail a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--brand, #141319);
    transition: .2s ease
  }

  .social-rail a svg {
    width: 20px;
    height: 20px
  }

  .social-rail a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateX(-3px)
  }

  .sr-ig {
    --brand: #E4405F
  }

  .sr-fb {
    --brand: #1877F2
  }

  .sr-li {
    --brand: #0A66C2
  }

  .sr-gg {
    --brand: #EA4335
  }

  .sr-yt {
    --brand: #FF0000
  }

  /* ---------- FOUNDER'S MESSAGE (left) ---------- */
  .founder-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 46;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 9px;
    border-radius: 0 14px 14px 0;
    box-shadow: 8px 14px 34px -16px rgba(20, 19, 25, .55);
    transition: padding .2s ease, background .2s ease, transform .35s ease, opacity .35s ease;
    display: none;
  }

  .founder-tab:hover {
    padding-left: 14px;
    background: var(--blue-deep)
  }

  .founder-tab.tucked {
    transform: translateY(-50%) translateX(-110%);
    opacity: 0;
    pointer-events: none
  }

  .founder-tab svg {
    width: 18px;
    height: 18px
  }

  .founder-tab .ft-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'DM Mono', monospace;
    font-size: .64rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500
  }

  .founder-panel {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 96;
    width: min(360px, 92vw);
    background: #fff;
    border-radius: 0 18px 18px 0;
    overflow: hidden;
    box-shadow: 0 34px 80px -24px rgba(12, 13, 50, .55);
    transform: translate(-106%, -50%);
    transition: transform .42s cubic-bezier(.16, 1, .3, 1)
  }

  .founder-panel.open {
    transform: translate(0, -50%)
  }

  .fp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: #fff
  }

  .fp-head .fp-eyebrow {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75)
  }

  .fp-head b {
    font-size: 1.05rem;
    letter-spacing: -.01em
  }

  .fp-close {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s;
    flex: none
  }

  .fp-close:hover {
    background: #fff;
    color: var(--blue);
    transform: rotate(90deg)
  }

  .fp-video {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1b1f4a, #141319);
    display: grid;
    place-items: center
  }

  .fp-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: transparent
  }

  .fp-placeholder {
    position: relative;
    z-index: 0;
    font-family: 'DM Mono', monospace;
    font-size: .8rem;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55)
  }

  .fp-cap {
    padding: 12px 18px;
    font-size: .84rem;
    color: var(--ink-soft)
  }

  .fp-cap b {
    color: var(--ink)
  }

  /* ---------- QUICK CONTACT RAIL (left) ---------- */
  .contact-rail {
    position: fixed;
    left: 0;
    bottom: 22px;
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .cr-item {
    position: relative;
    display: block;
    text-decoration: none
  }

  .cr-ico {
    width: 46px;
    height: 46px;
    border-radius: 0 12px 12px 0;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 6px 10px 26px -12px rgba(20, 19, 25, .5);
    transition: transform .2s ease, filter .2s ease
  }

  .cr-call .cr-ico {
    background: #16a34a
  }

  .cr-mail .cr-ico {
    background: var(--blue)
  }

  .cr-item:hover .cr-ico {
    transform: translateX(2px);
    filter: brightness(1.06)
  }

  .cr-ico svg {
    width: 20px;
    height: 20px
  }

  .cr-text {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    white-space: nowrap;
    background: var(--ink);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: .76rem;
    letter-spacing: .02em;
    padding: 9px 14px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 12px 28px -12px rgba(20, 19, 25, .6);
    transition: opacity .2s ease, transform .2s ease, visibility .2s
  }

  .cr-text::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--ink);
    border-radius: 2px
  }

  .cr-item:hover .cr-text,
  .cr-item:focus-visible .cr-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0)
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: linear-gradient(165deg, #1B1FB0 0%, #141319 78%);
    color: #C7C6D2;
    padding: 0 0 30px;
    position: relative;
    overflow: hidden
  }

  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--blue), var(--accent))
  }

  .foot-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 52px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
  }

  .foot-cta h3 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 6px
  }

  .foot-cta p {
    font-size: 1rem;
    color: #B9BAE8
  }

  .foot-cta .btn {
    background: var(--accent);
    color: var(--ink);
    border: none
  }

  .foot-cta .btn:hover {
    background: #fff;
    transform: translateY(-2px)
  }

  .foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 52px 0 40px
  }

  .foot-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.03em;
    margin-bottom: 16px
  }

  .foot-brand .logo .mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #fff;
    position: relative
  }

  .foot-brand .logo .mark::before {
    content: "";
    position: absolute;
    inset: 8px 8px auto auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent)
  }

  .foot-brand p {
    font-size: .95rem;
    max-width: 32ch;
    color: #B9BAE8;
    margin-bottom: 22px
  }

  .foot-social {
    display: flex;
    gap: 10px
  }

  .foot-social a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: .2s
  }

  .foot-social a svg {
    width: 19px;
    height: 19px
  }

  .foot-social a:hover {
    background: var(--brand, #fff);
    color: #fff;
    transform: translateY(-3px)
  }

  .foot-col h4 {
    color: #fff;
    font-size: .78rem;
    font-family: 'DM Mono', monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 500
  }

  .foot-col a {
    display: block;
    font-size: .95rem;
    padding: 6px 0;
    color: #B9BAE8;
    transition: color .2s
  }

  .foot-col a:hover {
    color: #fff
  }

  .foot-tags {
    padding: 30px 0 6px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center
  }

  .foot-tags-label {
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #8A8AC0;
    margin-right: 6px
  }

  .foot-tags a {
    font-size: .76rem;
    color: #C7C6E8;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 6px 12px;
    border-radius: 100px;
    transition: .2s
  }

  .foot-tags a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink)
  }

  .foot-word {
    font-size: clamp(3.4rem, 15vw, 8.5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: .8;
    color: rgba(255, 255, 255, .05);
    text-align: center;
    padding: 6px 0 2px;
    user-select: none;
    white-space: nowrap
  }

  .foot-bot {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 26px;
    font-size: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .foot-bot .mono {
    color: #8A8AC0
  }

  .made-in {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 6px 12px;
    border-radius: 100px
  }

  .made-in .mi-flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    flex: none;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #FF9933 0 33.3%, #fff 33.3% 66.6%, #138808 66.6% 100%)
  }

  .made-in .mi-flag::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #0a3d91
  }

  .foot-bot .links a {
    color: #B9BAE8;
    margin-left: 18px;
    transition: color .2s
  }

  .foot-bot .links a:hover {
    color: #fff
  }

  /* ---------- INDUSTRIES ---------- */
  #industries {
    position: relative;
    overflow: hidden;
    background: var(--tint);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
  }

  #industries::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    top: -240px;
    right: -220px;
    pointer-events: none;
    z-index: 0;
    filter: blur(46px);
    background: conic-gradient(from 0deg, rgba(43, 50, 232, .12), rgba(255, 197, 61, .10), rgba(91, 96, 255, .12), rgba(43, 50, 232, .12));
    animation: spin 26s linear infinite
  }

  #industries::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    bottom: -180px;
    left: -140px;
    pointer-events: none;
    z-index: 0;
    filter: blur(46px);
    background: conic-gradient(from 180deg, rgba(255, 197, 61, .10), rgba(43, 50, 232, .10), rgba(255, 197, 61, .10));
    animation: spin 34s linear infinite reverse
  }

  @keyframes spin {
    to {
      transform: rotate(360deg)
    }
  }

  #industries .wrap {
    position: relative;
    z-index: 1
  }

  .ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1
  }

  .ind-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
  }

  .ind-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .3s ease
  }

  .ind-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--blue)
  }

  .ind-card:hover::before {
    transform: scaleY(1)
  }

  .ind-ico {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: #EDEFFF;
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    transition: .3s ease
  }

  .ind-ico svg {
    width: 26px;
    height: 26px
  }

  .ind-card:hover .ind-ico {
    background: var(--blue);
    color: #fff;
    transform: rotate(-6deg) scale(1.06)
  }

  .ind-card h3 {
    font-size: 1.06rem;
    letter-spacing: -.01em;
    margin-bottom: 5px
  }

  .ind-card p {
    font-size: .85rem;
    color: var(--ink-soft);
    line-height: 1.45
  }

  .ind-card:nth-child(2) {
    transition-delay: .05s
  }

  .ind-card:nth-child(3) {
    transition-delay: .10s
  }

  .ind-card:nth-child(4) {
    transition-delay: .15s
  }

  .ind-card:nth-child(5) {
    transition-delay: .05s
  }

  .ind-card:nth-child(6) {
    transition-delay: .10s
  }

  .ind-card:nth-child(7) {
    transition-delay: .15s
  }

  .ind-card:nth-child(8) {
    transition-delay: .20s
  }

  /* line-draw motion on the icons when the card scrolls in */
  .ind-ico svg [pathLength] {
    stroke-dasharray: 1
  }

  .ind-card.in .ind-ico svg [pathLength] {
    animation: indraw 1s ease forwards
  }

  @keyframes indraw {
    from {
      stroke-dashoffset: 1
    }

    to {
      stroke-dashoffset: 0
    }
  }

  /* auto-scrolling industry marquee */
  .ind-marquee {
    margin-top: 26px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
  }

  .ind-track {
    display: flex;
    width: max-content;
    animation: indscroll 42s linear infinite
  }

  .ind-marquee:hover .ind-track {
    animation-play-state: paused
  }

  @keyframes indscroll {
    to {
      transform: translateX(-50%)
    }
  }

  .ind-chip {
    flex: none;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-right: 12px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: #fff;
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink);
    white-space: nowrap
  }

  .ind-chip .d {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex: none
  }

  /* ---------- QUOTE BAND ---------- */
  .quote-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
  }

  .quote-band::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    top: -160px;
    right: -120px;
    pointer-events: none
  }

  .quote-band::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -150px;
    left: -100px;
    pointer-events: none
  }

  .quote-band .wrap {
    position: relative;
    z-index: 1
  }

  .qb-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
    line-height: .5;
    color: var(--accent);
    display: block;
    margin-bottom: 10px
  }

  .qb-text {
    font-size: clamp(1.5rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.24;
    max-width: 22ch;
    margin: 0 auto 20px;
    color: #fff
  }

  .qb-cite {
    font-style: normal;
    font-family: 'DM Mono', monospace;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
  }

  /* ---------- RESPONSIVE ---------- */
  @media(max-width:940px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 60px
    }

    .hero p.lead {
      max-width: 46ch
    }

    .cards,
    .work-grid,
    .quotes,
    .price-grid {
      grid-template-columns: 1fr 1fr
    }

    .ind-grid {
      grid-template-columns: repeat(2, 1fr)
    }

    .steps {
      grid-template-columns: 1fr 1fr
    }

    .faq-grid {
      grid-template-columns: 1fr;
      gap: 30px
    }

    .foot-grid {
      grid-template-columns: 1fr 1fr
    }

    .plan.feat {
      transform: none
    }

    .social-rail {
      display: none
    }

    .tb-social {
      display: none
    }

    .foot-cta {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px
    }
  }

  @media(max-width:640px) {
    .nav-links {
      position: fixed;
      inset: 74px 0 auto 0;
      background: var(--canvas);
      flex-direction: column;
      gap: 0;
      padding: 12px 24px 24px;
      border-bottom: 1px solid var(--line);
      transform: translateY(-120%);
      transition: transform .3s ease;
      box-shadow: var(--shadow-sm)
    }

    .nav-links.show {
      transform: translateY(0)
    }

    .nav-links a {
      width: 100%;
      padding: 14px 0;
      border-bottom: 1px solid var(--line-soft);
      font-size: 1.05rem;
      color: var(--ink)
    }

    .nav-links a:hover {
      color: var(--blue)
    }

    .nav-links a::after,
    .nav-svc::after {
      display: none
    }

    .announce {
      display: none
    }

    .nav-links .nav-svc {
      width: 100%;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--line-soft);
      font-size: 1.05rem;
      color: var(--ink)
    }

    .nav-cta .btn {
      display: none
    }

    .burger {
      display: flex
    }

    .cards,
    .work-grid,
    .quotes,
    .price-grid,
    .steps,
    .foot-grid {
      grid-template-columns: 1fr
    }

    .ind-grid {
      grid-template-columns: 1fr 1fr
    }

    .wc-arrow {
      display: none
    }

    section {
      padding: 70px 0
    }

    .hero {
      padding: 48px 0 40px
    }

    .hd-ring,
    .hd-dot1,
    .hd-glow3 {
      display: none
    }

    .trust {
      gap: 22px
    }

    .strip .wrap {
      gap: 20px
    }

    .chip-swatch {
      left: 0
    }

    .cursor {
      right: 20px
    }

    .quote {
      width: 280px;
      margin-right: 18px;
      padding: 26px 22px
    }

    .marquee-track {
      --shift: 1788px
    }

    .cta-inner {
      grid-template-columns: 1fr;
      gap: 26px
    }
  }

  @media(prefers-reduced-motion:reduce) {
    * {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto
    }

    .hl path {
      stroke-dashoffset: 0
    }

    .marquee {
      overflow-x: auto
    }

    .marquee-track {
      animation: none
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
  }

  .reveal.in {
    opacity: 1;
    transform: none
  }

  /* ---------- IN-BROWSER PROJECT FORM ---------- */
  .screen-form {
    display: none;
    flex-direction: column;
    padding: 24px;
    min-height: 392px
  }

  .hero-visual.form-active .screen {
    display: none
  }

  .hero-visual.form-active .screen-form {
    display: flex
  }

  .hero-visual.form-active .browser {
    transform: none !important
  }

  .hero-visual.form-active .chip,
  .hero-visual.form-active .cursor {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
  }

  .pf-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px
  }

  .pf-back {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    flex: none;
    transition: .2s;
    font-family: inherit
  }

  .pf-back:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
  }

  .pf-progress {
    flex: 1;
    height: 6px;
    border-radius: 6px;
    background: var(--line-soft);
    overflow: hidden
  }

  .pf-progress span {
    display: block;
    height: 100%;
    width: 14%;
    background: var(--blue);
    border-radius: 6px;
    transition: width .35s ease
  }

  .pf-count {
    font-size: .7rem;
    color: var(--ink-soft);
    letter-spacing: .08em;
    flex: none
  }

  .pf-body {
    flex: 1;
    display: flex;
    flex-direction: column
  }

  .pf-step {
    display: flex;
    flex-direction: column;
    flex: 1;
    animation: pfIn .35s ease
  }

  @keyframes pfIn {
    from {
      opacity: 0;
      transform: translateY(10px)
    }

    to {
      opacity: 1;
      transform: none
    }
  }

  .pf-q {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 6px
  }

  .pf-sub {
    font-size: .9rem;
    color: var(--ink-soft);
    margin-bottom: 20px
  }

  .pf-field {
    margin-bottom: 6px
  }

  .pf-input,
  .pf-textarea {
    width: 100%;
    font-family: inherit;
    font-size: 1.05rem;
    padding: 15px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fbfaf7;
    color: var(--ink);
    transition: .2s
  }

  .pf-input:focus,
  .pf-textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(43, 50, 232, .14)
  }

  .pf-textarea {
    resize: none;
    min-height: 104px;
    line-height: 1.45
  }

  .pf-options {
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .pf-opt {
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 18px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fbfaf7;
    color: var(--ink);
    cursor: pointer;
    transition: .18s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
  }

  .pf-opt:hover {
    border-color: var(--blue);
    background: #fff;
    transform: translateX(3px)
  }

  .pf-opt.sel {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff
  }

  .pf-opt .tick {
    opacity: 0;
    font-weight: 700
  }

  .pf-opt.sel .tick {
    opacity: 1
  }

  .pf-err {
    color: #D3372B;
    font-size: .83rem;
    min-height: 1.1em;
    margin: 8px 2px 0
  }

  .pf-foot {
    margin-top: auto;
    padding-top: 14px
  }

  .pf-next {
    width: 100%;
    justify-content: center
  }

  .pf-enter-hint {
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 11px
  }

  .pf-done {
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 2px
  }

  .pf-done .check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E7FBEF;
    color: #12A150;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin-bottom: 10px
  }

  .pf-done h3 {
    font-size: 1.5rem;
    letter-spacing: -.02em
  }

  .pf-done>p {
    color: var(--ink-soft);
    font-size: .96rem;
    max-width: 34ch;
    margin: 6px 0 0
  }

  .pf-summary {
    width: 100%;
    text-align: left;
    background: #F4F2EC;
    border-radius: 12px;
    padding: 6px 16px;
    margin-top: 18px;
    font-size: .9rem
  }

  .pf-summary div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-top: 1px solid var(--line)
  }

  .pf-summary div:first-child {
    border-top: none
  }

  .pf-summary b {
    font-weight: 600
  }

  .pf-summary span {
    color: var(--ink-soft);
    text-align: right
  }

  .pf-restart {
    background: none;
    border: none;
    color: var(--ink-soft);
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: underline;
    text-underline-offset: 3px
  }

  .pf-restart:hover {
    color: var(--ink)
  }

  /* ---------- SERVICES DRAWER (right off-canvas) ---------- */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 13, 32, .55);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    backdrop-filter: blur(2px)
  }

  .drawer-backdrop.open {
    opacity: 1;
    visibility: visible
  }

  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: min(520px, 100%);
    background: #fff;
    z-index: 90;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -40px 0 80px -30px rgba(12, 13, 50, .55);
    border-radius: 0
  }

  .drawer.open {
    transform: translateX(0)
  }

  .drawer-head {
    position: relative;
    overflow: hidden;
    padding: 30px 32px 26px;
    flex: none;
    color: #fff;
    background: linear-gradient(140deg, #3A41F0 0%, var(--blue) 42%, var(--blue-deep) 100%)
  }

  .drawer-head::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask: radial-gradient(120% 100% at 100% 0, #000, transparent 70%);
    mask: radial-gradient(120% 100% at 100% 0, #000, transparent 70%)
  }

  .drawer-head::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    top: -90px;
    right: -50px;
    pointer-events: none
  }

  .dh-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px
  }

  .drawer-head .dh-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75)
  }

  .drawer-head h2 {
    font-size: 1.6rem;
    letter-spacing: -.02em;
    color: #fff;
    margin-top: 6px
  }

  .drawer-head .dh-sub {
    position: relative;
    z-index: 2;
    font-size: .9rem;
    color: rgba(255, 255, 255, .82);
    margin-top: 8px;
    max-width: 36ch;
    line-height: 1.5
  }

  .dh-trust {
    display: flex;
    position: relative;
    z-index: 2;
    margin-top: 16px
  }

  .dh-trust span {
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    color: rgba(255, 255, 255, .82);
    letter-spacing: .02em;
    padding: 0 14px
  }

  .dh-trust span:first-child {
    padding-left: 0
  }

  .dh-trust span:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .24)
  }

  .dh-trust b {
    color: #fff;
    font-weight: 700
  }

  .drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    flex: none;
    transition: .2s;
    display: grid;
    place-items: center
  }

  .drawer-close:hover {
    background: #fff;
    color: var(--blue);
    transform: rotate(90deg)
  }

  .drawer-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 0
  }

  .drawer-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 0
  }

  .svc-item {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 16px 30px;
    border-bottom: 1px solid var(--line-soft);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .25s ease;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: inherit
  }

  .si-no {
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
    color: var(--ink-soft);
    flex: none;
    width: 20px;
    padding-top: 12px;
    transition: color .25s
  }

  .svc-item:hover .si-no {
    color: var(--blue)
  }

  .svc-item:last-child {
    border-bottom: none
  }

  .svc-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .25s ease
  }

  .svc-item:hover {
    background: linear-gradient(90deg, var(--tint), rgba(243, 245, 255, 0))
  }

  .svc-item:hover::before {
    transform: scaleY(1)
  }

  .si-ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(135deg, #EEF0FF, #DCE1FF);
    color: var(--blue);
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 2px;
    box-shadow: inset 0 0 0 1px rgba(43, 50, 232, .08);
    transition: .25s ease
  }

  .si-ico svg {
    width: 23px;
    height: 23px
  }

  .svc-item:hover .si-ico {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(43, 50, 232, .7)
  }

  .si-text {
    flex: 1;
    min-width: 0
  }

  .si-text h3 {
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink)
  }

  .si-text .si-tag {
    font-family: 'DM Mono', monospace;
    font-size: .55rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    background: #E6E8FF;
    padding: 2px 7px;
    border-radius: 100px
  }

  .si-pop {
    font-family: 'DM Mono', monospace;
    font-size: .54rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    background: var(--accent);
    padding: 3px 8px;
    border-radius: 100px
  }

  .si-text p {
    font-size: .85rem;
    color: var(--ink-soft);
    line-height: 1.45
  }

  .si-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px
  }

  .si-tags span {
    font-family: 'DM Mono', monospace;
    font-size: .55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--tint);
    border: 1px solid var(--line);
    padding: 3px 9px;
    border-radius: 100px;
    transition: .25s
  }

  .svc-item:hover .si-tags span {
    border-color: #D5D9FF;
    background: #EEF0FF;
    color: var(--blue)
  }

  .si-arw {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    display: grid;
    place-items: center;
    flex: none;
    margin-left: auto;
    margin-top: 8px;
    transition: .25s ease
  }

  .si-arw svg {
    width: 15px;
    height: 15px
  }

  .svc-item:hover .si-arw {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateX(3px)
  }

  .drawer-foot {
    flex: none;
    padding: 16px 30px 20px;
    border-top: 1px solid var(--line);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  .df-cta {
    width: 100%;
    justify-content: center
  }

  .drawer-foot .df-contact {
    font-family: 'DM Mono', monospace;
    font-size: .74rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap
  }

  .drawer-foot .df-contact a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: .2s
  }

  .drawer-foot .df-contact a:hover {
    color: var(--blue)
  }

  .df-dot {
    color: var(--line)
  }

  /* ---------- REQUIREMENTS MODAL ---------- */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 13, 32, .55);
    backdrop-filter: blur(3px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
  }

  .modal-backdrop.open {
    opacity: 1;
    visibility: visible
  }

  .req-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
  }

  .req-modal.open {
    opacity: 1;
    visibility: visible
  }

  .req-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    width: min(500px, 100%);
    max-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px -30px rgba(12, 13, 50, .6);
    transform: translateY(24px) scale(.97);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1)
  }

  .req-modal.open .req-card {
    transform: none
  }

  .req-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s
  }

  .req-close:hover {
    background: var(--ink);
    color: #fff;
    transform: rotate(90deg)
  }

  .req-inner {
    padding: 30px 30px 28px;
    display: flex;
    flex-direction: column;
    overflow-y: auto
  }

  .req-head {
    margin-bottom: 20px
  }

  .req-plan {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-top: 8px;
    color: var(--ink)
  }

  .req-card .pf-top {
    margin-bottom: 20px
  }

  .req-card .pf-body {
    min-height: 290px;
    display: flex;
    flex-direction: column
  }

  /* ---------- PRICING TABS ---------- */
  .price-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 38px
  }

  .ptab {
    font-family: inherit;
    font-weight: 600;
    font-size: .92rem;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    cursor: pointer;
    transition: .2s
  }

  .ptab:hover {
    border-color: var(--blue);
    color: var(--ink)
  }

  .ptab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
  }

  /* ---------- CHECKOUT (info + payment) ---------- */
  .ck-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 6px
  }

  .ck-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-soft)
  }

  .ck-label .pf-input {
    font-weight: 400;
    font-size: 1rem
  }

  .ck-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .ck-summary {
    background: var(--tint);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px
  }

  .ck-summary>div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    font-size: .92rem;
    color: var(--ink-soft)
  }

  .ck-summary>div b {
    color: var(--ink);
    font-weight: 600
  }

  .ck-summary .ck-total {
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 10px
  }

  .ck-summary .ck-total b {
    font-size: 1.2rem;
    letter-spacing: -.02em
  }

  .ck-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
  }

  .ck-m {
    flex: 1;
    font-family: inherit;
    font-weight: 600;
    font-size: .85rem;
    padding: 11px 8px;
    border-radius: 11px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    cursor: pointer;
    transition: .2s
  }

  .ck-m:hover {
    border-color: var(--blue)
  }

  .ck-m.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
  }

  .ck-method-body {
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  select.pf-input {
    appearance: auto;
    background: #fbfaf7
  }

  .ck-secure {
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 12px;
    line-height: 1.55
  }

  /* ---------- DISCOUNT PROMO POPUP ---------- */
  .promo-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 13, 32, .62);
    backdrop-filter: blur(4px);
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease
  }

  .promo-backdrop.open {
    opacity: 1;
    visibility: visible
  }

  .promo {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease
  }

  .promo.open {
    opacity: 1;
    visibility: visible
  }

  .promo-card {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    width: min(760px, 100%);
    max-height: 94vh;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 110px -30px rgba(12, 13, 50, .7);
    transform: translateY(26px) scale(.96);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1)
  }

  .promo.open .promo-card {
    transform: none
  }

  .promo-visual {
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 38px 26px;
    background: linear-gradient(155deg, #3A41F0 0%, var(--blue) 45%, var(--blue-deep) 100%)
  }

  .promo-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask: radial-gradient(120% 90% at 50% 0, #000, transparent 72%);
    mask: radial-gradient(120% 90% at 50% 0, #000, transparent 72%)
  }

  .promo-seal {
    position: relative;
    width: 178px;
    height: 178px;
    display: grid;
    place-items: center;
    z-index: 1
  }

  .promo-seal .ring {
    position: absolute;
    inset: 6px;
    border: 2px dashed rgba(255, 255, 255, .55);
    border-radius: 50%;
    animation: spin 18s linear infinite
  }

  .promo-seal .ring.r2 {
    inset: 20px;
    border-style: dotted;
    border-color: rgba(255, 255, 255, .35);
    animation-duration: 26s;
    animation-direction: reverse
  }

  .promo-seal .core {
    position: relative;
    text-align: center;
    z-index: 1
  }

  .promo-seal .pct {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: .9
  }

  .promo-seal .off {
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-top: 2px
  }

  .promo-visual .upto {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85)
  }

  .promo-ribbon {
    position: absolute;
    top: 35px;
    left: -38px;
    transform: rotate(-45deg);
    background: #119922;
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 44px;
    z-index: 3
  }

  .promo-indep .tricolor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 2;
    background: linear-gradient(90deg, #FF9933 0 33.3%, #fff 33.3% 66.6%, #138808 66.6% 100%)
  }

  .promo-indep .promo-seal .ring {
    border-color: rgba(255, 153, 51, .7)
  }

  .promo-indep .promo-seal .ring.r2 {
    border-color: rgba(19, 136, 8, .55)
  }

  .promo-indep .promo-visual {
    background: linear-gradient(160deg, #FF9933 0%, #E2691F 24%, #1A2478 56%, #0F6D10 100%)
  }

  .promo-indep .promo-body h2 em {
    color: #138808
  }

  .promo-indep .promo-eyebrow {
    color: #E2691F
  }

  .promo-indep .promo-eyebrow .dot {
    background: #138808
  }

  .promo-indep .promo-claim {
    background: #138808;
    color: #fff
  }

  .promo-indep .promo-claim:hover {
    background: #FF9933;
    color: #fff
  }

  @keyframes pulseBtnIndep {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(19, 136, 8, .5)
    }

    50% {
      box-shadow: 0 0 0 12px rgba(19, 136, 8, 0)
    }
  }

  .promo-indep .promo-claim {
    animation: pulseBtnIndep 2.2s ease infinite
  }

  .promo-body {
    padding: 38px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto
  }

  .promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500
  }

  .promo-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulseDot 1.4s ease infinite
  }

  @keyframes pulseDot {

    0%,
    100% {
      opacity: 1;
      transform: scale(1)
    }

    50% {
      opacity: .4;
      transform: scale(.7)
    }
  }

  .promo-body h2 {
    font-size: 1.85rem;
    letter-spacing: -.02em;
    margin: 12px 0 10px;
    line-height: 1.1
  }

  .promo-body h2 em {
    font-style: normal;
    color: var(--blue)
  }

  .promo-body p {
    color: var(--ink-soft);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5
  }

  .promo-count {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px
  }

  .promo-count .cbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
  }

  .promo-count {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px
  }

  .promo-count .cbox b {
    background: var(--ink);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 8px 8px;
    border-radius: 9px;
    min-width: 40px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em
  }

  .promo-count .cbox span {
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft)
  }

  .promo-count .csep {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: -14px
  }

  .promo-claim {
    width: 100%;
    justify-content: center;
    animation: pulseBtn 2.2s ease infinite
  }

  @keyframes pulseBtn {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(43, 50, 232, .5)
    }

    50% {
      box-shadow: 0 0 0 12px rgba(43, 50, 232, 0)
    }
  }

  .promo-fine {
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 12px
  }

  .promo-dismiss {
    background: none;
    border: none;
    color: var(--ink-soft);
    font-size: .85rem;
    cursor: pointer;
    margin-top: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
    align-self: center
  }

  .promo-dismiss:hover {
    color: var(--ink)
  }

  .promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgb(200 200 255 / 23%);
    color: #1a1eff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s;
  }

  .promo-close:hover {
    background: #fff;
    color: var(--blue);
    transform: rotate(90deg)
  }

  .promo-sub {
    color: var(--ink-soft);
    font-size: .95rem;
    margin-bottom: 16px;
    line-height: 1.5
  }

  .promo-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 6px
  }

  .promo-form .pf-err {
    min-height: 0
  }

  .promo-done {
    text-align: center
  }

  .promo-done .check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E7FBEF;
    color: #12A150;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    margin: 0 auto 12px
  }

  .promo-done h2 {
    font-size: 1.6rem
  }

  .promo-code {
    margin: 14px 0 18px;
    font-family: 'DM Mono', monospace;
    font-size: .85rem;
    background: var(--tint);
    border: 1px dashed var(--blue);
    border-radius: 10px;
    padding: 11px;
    color: var(--ink)
  }

  .promo-code strong {
    color: var(--blue);
    letter-spacing: .06em
  }

  @media(max-width:600px) {
    .promo-card {
      grid-template-columns: 1fr;
      max-height: 92vh
    }

    .promo-visual {
      padding: 24px
    }

    .promo-seal {
      width: 132px;
      height: 132px
    }

    .promo-seal .pct {
      font-size: 2.3rem
    }

    .promo-body {
      padding: 26px 24px
    }

    .promo-body h2 {
      font-size: 1.5rem
    }

    .promo-close {
      color: #fff;
      border-color: rgba(255, 255, 255, .35)
    }
  }

  .amclabel {
    color: #e8a300;
    font-weight: 600;
    font-size: 18px;
    padding: 0px 8px 0px 8px;
    background: #ffe89d3b;
    align-items: center;

  }

  .amc {
    margin-bottom: 8px;
  }

  .amcamount {
    color: #444444;
    font-weight: 600;
    font-size: 18px;
  }

  .plan.feat .amcamount {
    color: #fff;
  }

  .plan.lets.amclabel {
    background-color: transparent !important;
  }