:root {
  --ink: #111114;
  --ink-soft: #1b1b20;
  --paper: #f2efe7;
  --paper-bright: #fbfaf6;
  --purple: #50389a;
  --yellow: #ffe500;
  --muted: #686866;
  --line: rgba(17, 17, 20, 0.18);
  --light-line: rgba(255, 255, 255, 0.16);
  --sans: "Instrument Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(242, 239, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { width: clamp(152px, 16vw, 230px); }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); font-size: 14px; font-weight: 650; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 8px 0; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--purple); transition: right .25s ease; }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; background: var(--ink); color: white; border: 1px solid var(--ink); transition: .2s ease; }
.nav-cta:hover { background: var(--yellow); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px 0 8px 12px; align-items: center; gap: 10px; font-weight: 700; cursor: pointer; }
.menu-toggle i, .menu-toggle i::before { display: block; width: 24px; height: 2px; background: var(--ink); content: ""; transition: .25s ease; }
.menu-toggle i::before { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::before { transform: rotate(90deg); }

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
  grid-template-rows: 1fr auto;
  gap: clamp(32px, 5vw, 88px);
  padding: clamp(70px, 9vw, 136px) clamp(20px, 4vw, 64px) 32px;
  background: var(--ink);
  color: white;
}
.hero-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(var(--light-line) 1px, transparent 1px), linear-gradient(90deg, var(--light-line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255, 229, 0, .36); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 62vw; height: 62vw; right: -30vw; top: -28vw; }
.hero-orbit-two { width: 42vw; height: 42vw; right: -20vw; top: -18vw; }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 900px; }
.kicker { margin: 0 0 28px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 650; color: rgba(255,255,255,.7); }
.kicker span { width: 28px; height: 2px; background: var(--yellow); }
.hero h1 { max-width: 900px; margin: 0; font-size: clamp(49px, 6.6vw, 104px); line-height: .93; letter-spacing: -.058em; font-weight: 620; font-stretch: condensed; }
.hero h1 em { color: var(--yellow); font-family: var(--serif); font-weight: 350; letter-spacing: -.04em; }
.hero-lead { max-width: 690px; margin: 32px 0 0; font-size: clamp(18px, 1.55vw, 24px); color: rgba(255,255,255,.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 21px; border: 1px solid currentColor; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-yellow { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.button-yellow:hover { background: white; border-color: white; }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.45); color: white; }
.button-ghost:hover { background: white; color: var(--ink); }

.hero-studio { position: relative; z-index: 2; align-self: center; min-height: 450px; padding: 18px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.035); box-shadow: 24px 24px 0 rgba(80,56,154,.4); }
.studio-topline, .studio-bottom { display: flex; justify-content: space-between; gap: 16px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.studio-display { min-height: 355px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding-inline: 4px; }
.studio-word { font-size: clamp(43px, 4.8vw, 72px); line-height: .92; letter-spacing: -.055em; font-weight: 700; white-space: nowrap; }
.studio-word:nth-child(1) { transform: translateX(0); color: var(--yellow); }
.studio-word:nth-child(2) { transform: translateX(7%); }
.studio-word:nth-child(3) { transform: translateX(0); }
.studio-word-outline { color: transparent; -webkit-text-stroke: 1px white; }
.studio-bottom { align-items: center; }
.studio-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
.hero-meta { position: relative; z-index: 2; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--light-line); }
.hero-meta div { display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 22px 26px 4px 0; border-right: 1px solid var(--light-line); }
.hero-meta div:not(:first-child) { padding-left: 26px; }
.hero-meta div:last-child { border-right: 0; }
.hero-meta strong { color: var(--yellow); font-size: 12px; }
.hero-meta span { color: rgba(255,255,255,.7); font-size: 14px; }

.intro-section, .services-section, .process-section, .contact-section { padding: clamp(82px, 10vw, 150px) clamp(20px, 4vw, 64px); }
.section-number { margin-bottom: 34px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--purple); }
.intro-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(42px, 8vw, 130px); align-items: start; }
.display-heading { margin: 0; max-width: 1020px; font-size: clamp(42px, 6.2vw, 90px); line-height: .98; letter-spacing: -.055em; font-weight: 520; }
.intro-copy { padding-top: 14px; border-top: 1px solid var(--line); font-size: 18px; color: #454545; }
.intro-copy p:first-child { margin-top: 0; }
.intro-copy p:last-child { margin-bottom: 0; }

.services-section { background: var(--paper-bright); border-top: 1px solid var(--line); }
.section-heading-row { display: grid; grid-template-columns: 1fr minmax(280px, 440px); gap: 40px; align-items: end; margin-bottom: 60px; }
.section-heading-row .section-number { margin-bottom: 18px; }
.section-heading-row h2, .process-intro h2, .about-content h2, .contact-copy h2 { margin: 0; font-size: clamp(42px, 5.3vw, 76px); line-height: .98; letter-spacing: -.05em; font-weight: 560; }
.section-heading-row > p { margin: 0; font-size: 18px; color: var(--muted); }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 55px minmax(260px, .8fr) minmax(300px, 1fr) minmax(300px, .8fr); gap: clamp(20px, 3vw, 50px); align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-index { font-size: 12px; font-weight: 700; color: var(--purple); }
.service-item h3 { margin: 0; font-size: clamp(24px, 2.2vw, 34px); line-height: 1.05; letter-spacing: -.035em; }
.service-item p { margin: 0; color: var(--muted); font-size: 16px; }
.service-item ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.service-item li { padding: 6px 9px; border: 1px solid var(--line); font-size: 12px; }


/* Search marketing emphasis */
.search-focus { display: grid; grid-template-columns: minmax(150px,.28fr) minmax(320px,.82fr) minmax(300px,.9fr); gap: clamp(24px,4vw,64px); align-items: start; margin: 0 0 44px; padding: clamp(28px,4vw,52px); border: 1px solid rgba(80,56,154,.28); background: var(--ink); color: white; box-shadow: 14px 14px 0 rgba(80,56,154,.16); }
.search-focus-label { color: var(--yellow); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.search-focus-copy h3 { max-width: 680px; margin: 0 0 18px; font-size: clamp(34px,4vw,60px); line-height: .96; letter-spacing: -.05em; font-weight: 560; }
.search-focus-copy p { max-width: 720px; margin: 0; color: rgba(255,255,255,.67); font-size: 17px; }
.search-focus-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-focus-tags span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.8); font-size: 11px; }
.service-item-featured { background: linear-gradient(90deg, rgba(255,229,0,.11), transparent 72%); }
.service-item-featured h3 { color: var(--purple); }

.work-section { padding: clamp(82px, 10vw, 150px) clamp(20px, 4vw, 64px); background: var(--ink); color: white; }
.light-heading .section-number { color: var(--yellow); }
.light-heading > p { color: rgba(255,255,255,.63); }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 3vw, 44px); }
.project-card { min-width: 0; }
.project-wide { grid-column: 1 / -1; }
.project-card a { display: block; }
.project-image { overflow: hidden; border: 1px solid rgba(255,255,255,.15); background: #222; aspect-ratio: 16 / 10; }
.project-wide .project-image { aspect-ratio: 2.15 / 1; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .project-image img { transform: scale(1.025); }
.project-info { display: flex; justify-content: space-between; gap: 24px; align-items: end; padding: 17px 0 4px; border-bottom: 1px solid var(--light-line); }
.project-info span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.project-info h3 { margin: 0; font-size: clamp(23px, 2.2vw, 34px); letter-spacing: -.035em; font-weight: 520; }
.project-info b { color: var(--yellow); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.work-note { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--light-line); display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.work-note p { max-width: 780px; margin: 0; color: rgba(255,255,255,.62); }
.work-note a { color: var(--yellow); font-weight: 700; white-space: nowrap; }

.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 10vw, 150px); }
.process-intro { position: sticky; top: 130px; align-self: start; }
.process-intro p { max-width: 480px; margin-top: 25px; color: var(--muted); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 26px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--purple); font-size: 12px; font-weight: 700; }
.process-list h3 { margin: 0 0 8px; font-size: 31px; letter-spacing: -.035em; }
.process-list p { margin: 0; max-width: 610px; color: var(--muted); }

.about-section { position: relative; min-height: 720px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, .8fr); align-items: center; overflow: hidden; padding: clamp(90px, 11vw, 170px) clamp(20px, 4vw, 64px); background: var(--purple); color: white; }
.about-art { position: absolute; inset: 0 45% 0 0; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); opacity: .17; }
.about-art span { display: flex; align-items: center; justify-content: center; border-right: 1px solid white; border-bottom: 1px solid white; color: var(--yellow); font-size: clamp(150px, 21vw, 350px); font-weight: 700; line-height: .7; }
.about-content { position: relative; z-index: 2; grid-column: 2; max-width: 760px; }
.about-content .section-number { color: var(--yellow); }
.about-content p { font-size: 18px; color: rgba(255,255,255,.75); }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.about-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.35); font-size: 12px; }

.contact-section { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(480px, 1.22fr); gap: clamp(50px, 9vw, 140px); align-items: start; background: var(--paper-bright); }
.contact-copy { position: sticky; top: 125px; }
.contact-copy > p { max-width: 560px; margin: 24px 0 34px; color: var(--muted); font-size: 18px; }
.direct-contact { border-top: 1px solid var(--line); }
.direct-contact a { display: grid; grid-template-columns: 100px 1fr auto; gap: 15px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.direct-contact span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--purple); }
.direct-contact strong { font-size: 17px; overflow-wrap: anywhere; }
.direct-contact b { font-size: 20px; }
.contact-form { padding: clamp(28px, 4vw, 55px); background: var(--ink); color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.67); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.25); border-radius: 0; padding: 15px 14px; background: rgba(255,255,255,.04); color: white; outline: none; transition: border .2s ease, background .2s ease; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.contact-form select option { background: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow); background: rgba(255,255,255,.08); }
.contact-form textarea { resize: vertical; min-height: 160px; }
.form-footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 8px; }
.form-footer p { max-width: 340px; margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }
.hidden-field { display: none !important; }

.site-footer { display: grid; grid-template-columns: 240px 1fr auto; gap: 50px; align-items: start; padding: 55px clamp(20px, 4vw, 64px) 28px; background: var(--ink); color: white; }
.footer-logo { background: var(--paper); padding: 13px; }
.footer-statement { max-width: 560px; font-family: var(--serif); font-size: clamp(28px, 3vw, 45px); line-height: 1.05; color: var(--yellow); }
.footer-links { display: grid; gap: 9px; font-weight: 650; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 25px; margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--light-line); color: rgba(255,255,255,.48); font-size: 12px; }

.floating-whatsapp { position: fixed; z-index: 90; right: 18px; bottom: 18px; width: 54px; height: 54px; display: grid; place-items: center; background: #25d366; border: 2px solid var(--paper-bright); box-shadow: 0 12px 30px rgba(0,0,0,.25); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 27px; fill: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-late { transition-delay: .22s; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-studio { min-height: 360px; max-width: 760px; }
  .studio-display { min-height: 265px; }
  .service-item { grid-template-columns: 45px 1fr 1fr; }
  .service-item ul { grid-column: 2 / -1; }
  .about-section { grid-template-columns: .6fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .site-footer { grid-template-columns: 210px 1fr; }
  .footer-links { grid-column: 1 / -1; grid-template-columns: repeat(4, auto); justify-content: start; gap: 28px; }
}

@media (max-width: 780px) {
  .site-header { min-height: 72px; }
  .brand { width: 155px; }
  .menu-toggle { display: flex; }
  .site-nav { position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 30px; background: var(--paper); transform: translateX(100%); visibility: hidden; transition: .3s ease; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .site-nav a { padding: 17px 0 !important; border-bottom: 1px solid var(--line); font-size: 24px; }
  .site-nav .nav-cta { margin-top: 25px; padding: 16px 18px !important; text-align: center; font-size: 16px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 72px; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .hero-studio { min-height: 290px; box-shadow: 12px 12px 0 rgba(80,56,154,.5); }
  .studio-display { min-height: 205px; }
  .studio-word { font-size: clamp(37px, 11vw, 55px); }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div, .hero-meta div:not(:first-child) { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--light-line); }
  .intro-layout, .section-heading-row, .process-grid { grid-template-columns: 1fr; }
  .display-heading { font-size: clamp(42px, 12vw, 66px); }
  .service-item { grid-template-columns: 38px 1fr; }
  .service-item p, .service-item ul { grid-column: 2; }
  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .project-wide .project-image, .project-image { aspect-ratio: 16 / 11; }
  .work-note { align-items: flex-start; flex-direction: column; }
  .process-intro { position: static; }
  .about-section { grid-template-columns: 1fr; padding-top: 300px; }
  .about-art { inset: 0 0 auto 0; height: 270px; grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
  .about-art span { font-size: 20vw; }
  .about-content { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-logo { width: 210px; }
  .footer-links { grid-column: auto; grid-template-columns: repeat(2, auto); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-actions .button { width: 100%; }
  .studio-topline, .studio-bottom { font-size: 8px; }
  .service-item { grid-template-columns: 1fr; }
  .service-item p, .service-item ul { grid-column: 1; }
  .service-index { margin-bottom: -8px; }
  .project-info { align-items: start; flex-direction: column; gap: 10px; }
  .direct-contact a { grid-template-columns: 1fr auto; }
  .direct-contact span { grid-column: 1 / -1; }
  .contact-form { margin-inline: -2px; }
}

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


/* Live client portfolio */
.live-project-list { display: grid; gap: clamp(72px, 9vw, 130px); }
.live-project { display: grid; grid-template-columns: minmax(290px, .68fr) minmax(0, 1.32fr); gap: clamp(35px, 6vw, 90px); align-items: center; }
.live-project:nth-child(even) .live-project-copy { order: 2; }
.live-project:nth-child(even) .browser-preview { order: 1; }
.live-project-copy { min-width: 0; }
.project-count { display: block; margin-bottom: 18px; color: var(--yellow); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.live-project-copy h3 { margin: 0; font-size: clamp(38px, 4.5vw, 70px); line-height: .94; letter-spacing: -.055em; font-weight: 560; }
.live-project-copy p { max-width: 630px; margin: 25px 0; color: rgba(255,255,255,.66); font-size: clamp(16px, 1.35vw, 19px); }
.live-project-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 30px; padding: 0; list-style: none; }
.live-project-copy li { padding: 7px 9px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.76); font-size: 11px; }
.live-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 7px; border-bottom: 2px solid var(--yellow); color: white; font-weight: 720; }
.live-link span { color: var(--yellow); }
.browser-preview { min-width: 0; display: block; border: 1px solid rgba(255,255,255,.22); background: #dadada; box-shadow: 24px 24px 0 rgba(80,56,154,.5); transition: transform .3s ease, box-shadow .3s ease; }
.browser-preview:hover { transform: translate(-4px,-4px); box-shadow: 30px 30px 0 rgba(80,56,154,.65); }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 13px; background: #ecebea; color: #242426; border-bottom: 1px solid #bdbdbd; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #aaa; }
.browser-bar i:first-child { background: #ff6259; }
.browser-bar i:nth-child(2) { background: #ffc04b; }
.browser-bar i:nth-child(3) { background: #2dcc5c; }
.browser-bar span { min-width: 0; flex: 1; margin-left: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; color: #666; }
.browser-bar b { font-size: 13px; }
.browser-screen { position: relative; overflow: hidden; aspect-ratio: 16 / 9.5; background: #fff; }
.browser-screen iframe { position: absolute; inset: 0; width: 142.86%; height: 142.86%; border: 0; transform: scale(.7); transform-origin: 0 0; pointer-events: none; background: white; }
.preview-action { position: absolute; right: 14px; bottom: 14px; padding: 10px 13px; background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 800; box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.mature-preview .browser-screen::after { content: "E-COMMERCE · PAYMENT GATEWAY · 18+ RETAIL"; position: absolute; inset: auto 0 0; padding: 22px 150px 22px 20px; background: linear-gradient(to top, rgba(17,17,20,.93), rgba(17,17,20,.2)); color: white; font-size: 10px; letter-spacing: .13em; }


/* Additional client partnerships */
.partner-heading { display: grid; grid-template-columns: minmax(190px,.35fr) 1fr; gap: 40px; align-items: start; margin: clamp(110px,14vw,200px) 0 48px; padding-top: 30px; border-top: 1px solid var(--light-line); }
.partner-heading > span { color: var(--yellow); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.partner-heading h3 { max-width: 950px; margin: 0; font-size: clamp(38px,5vw,76px); line-height: .98; letter-spacing: -.052em; font-weight: 540; }
.partner-heading p { max-width: 760px; margin: 22px 0 0; color: rgba(255,255,255,.64); font-size: 17px; }
.partner-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(20px,2.8vw,42px); }
.partner-card { min-width: 0; border-top: 1px solid rgba(255,255,255,.22); padding-top: 16px; }
.partner-preview { min-width: 0; display: block; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.18); background: #dadada; transition: transform .3s ease; }
.partner-preview:hover { transform: translateY(-5px); }
.partner-screen { position: relative; overflow: hidden; aspect-ratio: 16 / 10.5; background: #fff; }
.partner-screen iframe { position: absolute; inset: 0; width: 166.67%; height: 166.67%; border: 0; transform: scale(.6); transform-origin: 0 0; pointer-events: none; background: white; }
.partner-copy > span { display: block; margin-bottom: 14px; color: var(--yellow); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.partner-copy h3 { margin: 0; font-size: clamp(30px,3vw,46px); line-height: .98; letter-spacing: -.045em; font-weight: 560; }
.partner-copy p { margin: 18px 0; color: rgba(255,255,255,.64); font-size: 15px; }
.partner-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 25px; padding: 0; list-style: none; }
.partner-copy li { padding: 6px 8px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75); font-size: 10px; }

.systems-heading { display: grid; grid-template-columns: minmax(190px,.35fr) 1fr; gap: 40px; align-items: start; margin: clamp(100px, 13vw, 190px) 0 48px; padding-top: 30px; border-top: 1px solid var(--light-line); }
.systems-heading span { color: var(--yellow); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.systems-heading h3 { max-width: 1050px; margin: 0; font-size: clamp(38px, 5vw, 76px); line-height: .98; letter-spacing: -.052em; font-weight: 540; }
.systems-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(22px,3vw,44px); }
.system-card { position: relative; overflow: hidden; min-height: 690px; padding: clamp(28px,4vw,55px); border: 1px solid rgba(255,255,255,.18); background: var(--ink-soft); }
.system-number { color: var(--yellow); font-size: 11px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.system-card > h3 { margin: 22px 0 16px; font-size: clamp(36px,4vw,62px); line-height: .96; letter-spacing: -.05em; }
.system-card > p { max-width: 620px; color: rgba(255,255,255,.63); font-size: 17px; }
.system-card > ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; margin: 27px 0 0; padding: 0; list-style: none; }
.system-card > ul li { padding: 10px 0; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.78); font-size: 12px; }
.system-visual { position: absolute; left: clamp(28px,4vw,55px); right: clamp(28px,4vw,55px); bottom: clamp(28px,4vw,55px); height: 240px; border: 1px solid rgba(255,255,255,.2); background: #f5f2ea; color: var(--ink); }
.portal-visual { display: grid; grid-template-columns: .8fr 1.2fr; padding: 25px; gap: 18px; align-items: center; }
.portal-brand { color: var(--purple); font-size: clamp(24px,3vw,44px); line-height: .8; font-weight: 800; letter-spacing: -.06em; }
.portal-brand small { display: block; margin-top: 15px; color: var(--ink); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.portal-fields { display: grid; gap: 7px; }
.portal-fields span { padding: 8px 10px; border: 1px solid var(--line); color: #777; font-size: 9px; }
.portal-fields b { padding: 9px; background: var(--purple); color: white; text-align: center; font-size: 9px; letter-spacing: .1em; }
.portal-data { position: absolute; right: 20px; bottom: 17px; text-align: right; }
.portal-data strong, .server-metric strong { display: block; color: var(--purple); font-size: 30px; line-height: 1; }
.portal-data small, .server-metric small { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #777; }
.server-visual { display: grid; grid-template-columns: .7fr 1.3fr; gap: 25px; align-items: center; padding: 26px; background: #151519; color: white; }
.server-rack { display: grid; gap: 9px; }
.server-rack i { height: 29px; border: 1px solid rgba(255,255,255,.25); background: linear-gradient(90deg,#2a2a30 70%,#50389a 70%); }
.server-status { display: grid; gap: 13px; }
.server-status span { display: flex; align-items: center; gap: 9px; font-size: 11px; color: rgba(255,255,255,.72); }
.server-status b { width: 7px; height: 7px; border-radius: 50%; background: #55dc70; box-shadow: 0 0 10px #55dc70; }
.server-metric { position: absolute; right: 24px; bottom: 19px; text-align: right; }
.server-metric strong { color: var(--yellow); }
.server-metric small { color: rgba(255,255,255,.5); }

@media (max-width: 980px) {
  .live-project { grid-template-columns: 1fr; gap: 30px; }
  .live-project:nth-child(even) .live-project-copy, .live-project:nth-child(even) .browser-preview { order: initial; }
  .systems-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 650px; }
}
@media (max-width: 680px) {
  .browser-preview { box-shadow: 11px 11px 0 rgba(80,56,154,.55); }
  .browser-preview:hover { transform: none; box-shadow: 11px 11px 0 rgba(80,56,154,.55); }
  .browser-bar { height: 36px; }
  .browser-screen { aspect-ratio: 4 / 3; }
  .systems-heading { grid-template-columns: 1fr; gap: 14px; }
  .system-card { min-height: 720px; }
  .system-card > ul { grid-template-columns: 1fr; }
  .system-visual { height: 220px; }
  .portal-visual, .server-visual { grid-template-columns: 1fr; }
  .portal-brand { font-size: 30px; }
  .portal-data, .server-metric { display: none; }
  .mature-preview .browser-screen::after { padding-right: 15px; }
}


@media (max-width: 1100px) {
  .search-focus { grid-template-columns: 1fr 2fr; }
  .search-focus-tags { grid-column: 2; }
  .partner-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .search-focus { grid-template-columns: 1fr; }
  .search-focus-tags { grid-column: auto; }
  .partner-heading { grid-template-columns: 1fr; gap: 14px; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-screen { aspect-ratio: 4 / 3; }
}
