/* =========================================================
   gary the graphics guy — CLEAN STYLESHEET
   Only the styles used by the current page are kept here.
   ========================================================= */

/* ---------------------------------------------------------
   1. SITE VARIABLES
   --------------------------------------------------------- */
:root{
  --accent:#FF8000;

  --paper:#F6F4F1;
  --white:#FFFFFF;
  --ink:#1E252A;
  --muted:#626E74;
  --line:#D9DDDF;
  --shadow:0 18px 42px rgba(22,27,31,.13);

  /* TYPOGRAPHY SYSTEM */
  --font-display:"Helvetica Neue",Helvetica,Arial,sans-serif;
  --font-body:"Segoe UI",Arial,sans-serif;

  --type-display-xl:clamp(2.25rem,4vw,3.45rem);
  --type-display-lg:clamp(2rem,3.5vw,3.1rem);
  --type-display-md:clamp(1.8rem,2.8vw,2.35rem);
  --type-display-sm:clamp(1.45rem,2vw,1.8rem);

  --type-body-lg:1.18rem;
  --type-body:1rem;
  --type-body-sm:.94rem;
  --type-card:.86rem;
  --type-ui:.82rem;
  --type-label:.78rem;
  --type-meta:.76rem;
  --type-kicker:.72rem;

  --content-max:1180px;
  --site-frame-max:1380px;
  --site-frame-side:90px;

  /* HERO TITLE — easiest values to adjust manually */
  --hero-ideas-width:clamp(170px,14.6vw,220px);
  --hero-products-size:clamp(3.5rem,5vw,5.5rem);
}

/* ---------------------------------------------------------
   2. GLOBAL
   --------------------------------------------------------- */
*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  /* Keep in-page navigation targets below the sticky header. */
  scroll-padding-top:90px;
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
}

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

button{font:inherit}

.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

.skip-link{
  position:fixed;
  top:10px;
  left:10px;
  z-index:1000;
  padding:10px 14px;
  border-radius:6px;
  background:#FFFFFF;
  color:#171B1F;
  font-weight:800;
  transform:translateY(-160%);
  transition:transform .15s ease;
}

.skip-link:focus{transform:translateY(0)}

/* Two-tone focus ring remains visible on both light and dark surfaces. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid #FFFFFF;
  outline-offset:3px;
  box-shadow:0 0 0 5px #1E252A;
}

section h1[tabindex="-1"]:focus,
section h2[tabindex="-1"]:focus,
section h3[tabindex="-1"]:focus{outline:none}

main[tabindex="-1"]:focus{outline:none}

h1,h2,h3{
  font-family:var(--font-display);
}

.container{
  width:min(var(--content-max),calc(100% - 40px));
  margin:auto;
}

section{padding:82px 0}

.section-kicker,
.eyebrow{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:900;
  font-size:var(--type-kicker);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  letter-spacing:.14em;
  font-weight:800;
  font-size:var(--type-kicker);
  margin-bottom:0;
}

.eyebrow:before{
  content:"";
  width:28px;
  height:1px;
  background:var(--accent);
  opacity:.9;
}

/* ---------------------------------------------------------
   3. HEADER / NAVIGATION
   --------------------------------------------------------- */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(23,27,31,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 5px 18px rgba(0,0,0,.14);
}

header .container,
.hero .container,
footer .container{
  width:min(var(--site-frame-max),calc(100% - (var(--site-frame-side) * 2)));
  max-width:none;
}

.nav{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  min-width:max-content;
}

.brand-wordmark-link{
  gap:0;
  flex:0 0 auto;
}

.brand-wordmark{
  display:block;
  width:clamp(220px,20vw,280px);
  height:auto;
}

.brand-mark{
  width:50px;
  height:50px;
}

.brand-mark circle{stroke:var(--accent)!important}
.brand-mark path{stroke:#fff!important}

.brand-name{
  font-size:1.15rem;
  font-weight:800;
  letter-spacing:.08em;
  line-height:1;
}

.brand-tag{
  margin-top:6px;
  font-size:.67rem;
  letter-spacing:.16em;
  color:var(--accent);
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:#E9ECEE;
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.012em;
}

.nav-links a{
  transition:color .18s ease,background-color .18s ease,border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}

.nav-links a:not(.nav-cta){
  position:relative;
  padding:9px 0;
}

.nav-links a:not(.nav-cta):after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}

.nav-links a:not(.nav-cta):hover:after{
  transform:scaleX(1);
}

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

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  background:transparent;
  color:var(--accent)!important;
  border:1px solid rgba(255,128,0,.92);
  border-radius:8px;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:inset 0 0 0 1px rgba(255,128,0,.08);
}

.nav-cta:hover{
  background:var(--accent)!important;
  color:#171B1F!important;
  border-color:var(--accent);
  transform:translateY(-1px);
}

.menu-btn{
  display:none;
  background:none;
  border:0;
  color:#fff;
  font-size:1.7rem;
  cursor:pointer;
}

/* ---------------------------------------------------------
   4. HERO
   --------------------------------------------------------- */
.hero{
  position:relative;
  min-height:clamp(690px,74svh,780px);
  display:flex;
  align-items:stretch;
  overflow:hidden;
  color:var(--ink);
  border-bottom:1px solid #DDD7D0;
  background:
    radial-gradient(circle at 78% 20%,rgba(255,128,0,.13),transparent 29%),
    radial-gradient(circle at 12% 78%,rgba(40,48,54,.055),transparent 25%),
    linear-gradient(125deg,#FBFAF8 0%,#F3F0EB 57%,#ECE8E1 100%);
}

.hero:before{
  content:none;
}

.hero .container{
  display:flex;
  align-items:stretch;
}

.hero-grid{
  position:relative;
  width:100%;
  min-height:clamp(690px,74svh,780px);
  display:grid;
  grid-template-columns:minmax(0,1fr) 405px;
  gap:16px;
  align-items:center;
  padding:44px 0 62px;
}

.hero-grid > div:first-child{
  width:100%;
  max-width:none;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  row-gap:28px;
}

/* HERO TITLE
   To manually resize PRODUCTS, change --hero-products-size above.
   To manually resize the IDEAS artwork, change --hero-ideas-width above.
*/
.wording-become-inline{
  width:100%;
  max-width:none;
  margin:0;
}

.wording-become-inline .wording-small,
.become-inline-word,
.become-inline-products{
  font-family:var(--font-display);
}

.wording-become-inline .wording-small{
  font-size:clamp(2.05rem,2.55vw,2.55rem);
  line-height:1;
  font-weight:700;
  letter-spacing:-.04em;
  margin-bottom:15px;
  color:#353E43;
}

.become-inline-main{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:nowrap;
}

.become-inline-ideas{
  display:flex;
  align-items:center;
  transform:translateY(-6px);
}

.become-inline-ideas .ideas-artwork-wrap{
  display:block;
  width:var(--hero-ideas-width);
  max-width:100%;
}

.become-inline-ideas .ideas-artwork{
  display:block;
  width:100%;
  height:auto;
}

.become-inline-word{
  font-size:clamp(2.1rem,2.75vw,2.75rem);
  line-height:1;
  font-weight:700;
  letter-spacing:-.035em;
  color:#4F585D;
  white-space:nowrap;
}

.become-inline-products{
  display:flex;
  align-items:center;
  font-size:var(--hero-products-size);
  line-height:.84;
  font-weight:800;
  letter-spacing:-.07em;
  color:var(--accent);
  white-space:nowrap;
  transform:translateY(-10px);
}

.hero-copy{
  max-width:750px;
  color:#58646A;
  font-size:var(--type-body-lg);
  line-height:1.72;
  margin-top:0;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:0 20px;
  border:1px solid transparent;
  border-radius:8px;
  font-weight:800;
  font-size:var(--type-ui);
  letter-spacing:.01em;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;
}

.hero .btn{
  min-height:50px;
  padding:0 21px;
  font-size:.84rem;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--accent);
  color:#171B1F;
  border-color:var(--accent);
  box-shadow:0 10px 24px rgba(255,128,0,.18);
}

.btn-primary:hover{
  background:#FF952E;
  border-color:#FF952E;
}

.btn-outline{
  border-color:#667277;
  color:#263035;
  background:rgba(255,255,255,.58);
  box-shadow:0 8px 20px rgba(26,32,36,.05);
}

.btn-outline:hover{
  border-color:var(--accent);
  color:#111;
  background:rgba(255,248,241,.92);
}

.hero-principles{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:790px;
  margin-top:0;
  color:#68747A;
}

.hero-principle{
  position:relative;
  display:flex;
  align-items:center;
  gap:11px;
  min-width:0;
  padding:2px 22px 2px 0;
}

.hero-principle + .hero-principle{
  padding-left:24px;
}

.hero-principle + .hero-principle:before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:1px;
  height:34px;
  background:rgba(79,88,93,.12);
  transform:translateY(-50%);
}

.principle-number{
  flex:0 0 auto;
  color:var(--accent);
  font-family:var(--font-display);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.11em;
}

.principle-text{
  color:#68747A;
  font-size:var(--type-card);
  line-height:1.4;
  font-weight:500;
}

/* Hero supporting graphic */
.studio-map{
  position:relative;
  width:430px;
  min-height:455px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  justify-self:end;
  margin-left:-18px;
  transform:translateY(-62px);
}

.map-card{
  position:relative;
  width:430px;
  max-width:430px;
  min-width:430px;
  min-height:405px;
  overflow:hidden;
  border:1px solid rgba(27,33,37,.08);
  border-radius:20px;
  background:linear-gradient(150deg,#FFFFFF 0%,#FBF8F3 56%,#F2ECE4 100%);
  box-shadow:0 24px 54px rgba(23,27,31,.14);
  isolation:isolate;
}

.map-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 42%,rgba(255,128,0,.13),transparent 33%),
    radial-gradient(circle at 15% 14%,rgba(27,33,37,.04),transparent 26%);
}

.core-brand{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:226px;
  padding:18px 18px 14px;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  background:#FFFFFF;
  border:1px solid rgba(27,33,37,.30);
  box-shadow:0 20px 42px rgba(23,27,31,.16);
  z-index:5;
  opacity:0;
  transform-origin:center center;
  will-change:transform,opacity;
  animation:coreBrandReveal .9s cubic-bezier(.22,.85,.25,1) .12s forwards;
}

.core-wordmark{
  display:block;
  width:190px;
  height:auto;
  aspect-ratio:2581.42 / 513.57;
}

.orbit{
  position:absolute;
  --orbit-width:136px;
  --orbit-side:34px;
  width:var(--orbit-width);
  height:96px;
  padding:13px 12px;
  border-radius:12px;
  border-style:solid;
  border-width:1px;
  border-color:rgba(27,33,37,.07);
  border-top-width:3px;
  border-top-color:var(--accent);
  background:#FFFFFF;
  color:var(--ink);
  box-shadow:0 6px 15px rgba(23,27,31,.04);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  row-gap:6px;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.02em;
  z-index:2;
  opacity:0;
  transform:translate3d(var(--enter-x,0),var(--enter-y,0),0);
  animation-name:orbitAssemble, orbitIntegrate;
  animation-duration:.68s, 1.05s;
  animation-timing-function:cubic-bezier(.22,.84,.28,1), cubic-bezier(.22,.84,.28,1);
  animation-delay:var(--orbit-delay,.24s), 3.65s;
  animation-fill-mode:forwards, forwards;
  transition:border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.orbit:hover{
  border-color:#E7C9A8;
  background:#FFFFFF;
  box-shadow:0 7px 16px rgba(23,27,31,.045);
}

.orbit-title{
  display:block;
  font-size:1rem;
  font-weight:900;
  line-height:1.05;
  letter-spacing:.02em;
}

.orbit small{
  display:block;
  color:var(--muted);
  font-weight:600;
  margin-top:0;
  font-size:.66rem;
  line-height:1.25;
}

/* Keep CREATIVE's text block at a constant two-line height while the card integrates.
   This prevents a late text-wrap reflow from looking like a card-position jump. */
.o3 small{
  white-space:nowrap;
  min-height:2.5em;
}

.connector{
  position:absolute;
  background:#7A8287;
  z-index:1;
  opacity:0;
}

.connector-v{
  width:2px;
}

.connector-h{
  height:2px;
}

/* The lines that leave the logo card are slightly stronger than the outer network. */
.connector-v-main-top,
.connector-v-main-bottom,
.connector-h-mid-left,
.connector-h-mid-right{
  background:#4F585D;
}

.connector-v-main-top{
  left:calc(50% - 1px);
  top:92px;
  height:104px;
  transform-origin:center bottom;
  transform:scaleY(0);
  animation:connectorGrowY .82s cubic-bezier(.22,.84,.28,1) .78s forwards;
}

.connector-v-main-bottom{
  left:calc(50% - 1px);
  top:196px;
  height:114px;
  transform-origin:center top;
  transform:scaleY(0);
  animation:connectorGrowY .82s cubic-bezier(.22,.84,.28,1) .90s forwards;
}

.connector-h-mid-left{
  left:14%;
  top:196px;
  width:36%;
  transform-origin:right center;
  transform:scaleX(0);
  animation:connectorGrowX .74s cubic-bezier(.22,.84,.28,1) .98s forwards;
}

.connector-h-mid-right{
  left:50%;
  top:196px;
  width:36%;
  transform-origin:left center;
  transform:scaleX(0);
  animation:connectorGrowX .74s cubic-bezier(.22,.84,.28,1) .98s forwards;
}

.connector-v-left-top,
.connector-v-left-bottom,
.connector-v-right-top,
.connector-v-right-bottom{
  transform:scaleY(0);
  animation:connectorGrowY .72s cubic-bezier(.22,.84,.28,1) 1.62s forwards;
}

.connector-v-left-top,
.connector-v-left-bottom{
  left:calc(14% - 1px);
}

.connector-v-right-top,
.connector-v-right-bottom{
  left:calc(86% - 1px);
}

.connector-v-left-top,
.connector-v-right-top{
  top:92px;
  height:104px;
  transform-origin:center bottom;
}

.connector-v-left-bottom,
.connector-v-right-bottom{
  top:196px;
  height:114px;
  transform-origin:center top;
}

.connector-h-top-left,
.connector-h-bottom-left{
  left:14%;
  width:36%;
  transform-origin:right center;
  transform:scaleX(0);
}

.connector-h-top-right,
.connector-h-bottom-right{
  left:50%;
  width:36%;
  transform-origin:left center;
  transform:scaleX(0);
}

.connector-h-top-left,
.connector-h-top-right{
  top:92px;
  animation:connectorGrowX .78s cubic-bezier(.22,.84,.28,1) 2.12s forwards;
}

.connector-h-bottom-left,
.connector-h-bottom-right{
  top:309px;
  animation:connectorGrowX .78s cubic-bezier(.22,.84,.28,1) 2.24s forwards;
}

.o1{
  left:var(--orbit-side);
  top:50px;
  --enter-x:-22px;
  --enter-y:-14px;
  --orbit-delay:.22s;
  --final-left:calc(50% - 160px);
  --final-top:42px;
  --final-width:160px;
  --final-height:160px;
  --final-radius:18px 0 0 0;
  --final-bt-width:3px;
  --final-br-width:1px;
  --final-bb-width:1px;
  --final-bl-width:3px;
  --final-bt-color:var(--accent);
  --final-br-color:rgba(27,33,37,.045);
  --final-bb-color:rgba(27,33,37,.045);
  --final-bl-color:var(--accent);
}

.o2{
  left:calc(100% - var(--orbit-side) - var(--orbit-width));
  top:50px;
  --enter-x:22px;
  --enter-y:-14px;
  --orbit-delay:.32s;
  --final-left:50%;
  --final-top:42px;
  --final-width:160px;
  --final-height:160px;
  --final-radius:0 18px 0 0;
  --final-bt-width:3px;
  --final-br-width:3px;
  --final-bb-width:1px;
  --final-bl-width:1px;
  --final-bt-color:var(--accent);
  --final-br-color:var(--accent);
  --final-bb-color:rgba(27,33,37,.045);
  --final-bl-color:rgba(27,33,37,.045);
}

.o3{
  left:var(--orbit-side);
  top:261px;
  --enter-x:-20px;
  --enter-y:14px;
  --orbit-delay:.42s;
  --creative-start-height:96px;
  /* One continuous timeline removes CREATIVE's animation handoff snap. */
  animation-name:orbitCreativeFull;
  animation-duration:4.28s;
  animation-timing-function:linear;
  animation-delay:.42s;
  animation-fill-mode:forwards;
  --final-left:calc(50% - 160px);
  --final-top:202px;
  --final-width:160px;
  --final-height:160px;
  --final-radius:0 0 0 18px;
  --final-bt-width:1px;
  --final-br-width:1px;
  --final-bb-width:3px;
  --final-bl-width:3px;
  --final-bt-color:rgba(27,33,37,.045);
  --final-br-color:rgba(27,33,37,.045);
  --final-bb-color:var(--accent);
  --final-bl-color:var(--accent);
}

.o4{
  left:calc(100% - var(--orbit-side) - var(--orbit-width));
  top:261px;
  --enter-x:20px;
  --enter-y:14px;
  --orbit-delay:.52s;
  --final-left:50%;
  --final-top:202px;
  --final-width:160px;
  --final-height:160px;
  --final-radius:0 0 18px 0;
  --final-bt-width:1px;
  --final-br-width:3px;
  --final-bb-width:3px;
  --final-bl-width:1px;
  --final-bt-color:rgba(27,33,37,.045);
  --final-br-color:var(--accent);
  --final-bb-color:var(--accent);
  --final-bl-color:rgba(27,33,37,.045);
}

@keyframes coreBrandReveal{
  0%{opacity:0;transform:translate(-50%,-50%) scale(.97)}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1)}
}

@keyframes orbitAssemble{
  0%{opacity:0;transform:translate3d(var(--enter-x,0),var(--enter-y,0),0)}
  100%{opacity:1;transform:translate3d(0,0,0)}
}

@keyframes orbitIntegrate{
  to{
    left:var(--final-left);
    top:var(--final-top);
    width:var(--final-width);
    height:var(--final-height);
    padding:18px 16px;
    row-gap:8px;
    border-radius:var(--final-radius);
    box-shadow:none;
    border-top-width:var(--final-bt-width);
    border-right-width:var(--final-br-width);
    border-bottom-width:var(--final-bb-width);
    border-left-width:var(--final-bl-width);
    border-top-color:var(--final-bt-color);
    border-right-color:var(--final-br-color);
    border-bottom-color:var(--final-bb-color);
    border-left-color:var(--final-bl-color);
  }
}

@keyframes orbitCreativeFull{
  0%{
    animation-timing-function:cubic-bezier(.22,.84,.28,1);
    opacity:0;
    transform:translate3d(var(--enter-x,0),var(--enter-y,0),0);
    left:var(--orbit-side);
    top:261px;
    width:var(--orbit-width);
    height:var(--creative-start-height);
    padding:13px 12px;
    row-gap:6px;
    border-radius:12px;
    box-shadow:0 6px 15px rgba(23,27,31,.04);
    border-top-width:3px;
    border-right-width:1px;
    border-bottom-width:1px;
    border-left-width:1px;
    border-top-color:var(--accent);
    border-right-color:rgba(27,33,37,.07);
    border-bottom-color:rgba(27,33,37,.07);
    border-left-color:rgba(27,33,37,.07);
  }
  15.89%{
    animation-timing-function:linear;
    opacity:1;
    transform:translate3d(0,0,0);
    left:var(--orbit-side);
    top:261px;
    width:var(--orbit-width);
    height:var(--creative-start-height);
    padding:13px 12px;
    row-gap:6px;
    border-radius:12px;
    box-shadow:0 6px 15px rgba(23,27,31,.04);
    border-top-width:3px;
    border-right-width:1px;
    border-bottom-width:1px;
    border-left-width:1px;
    border-top-color:var(--accent);
    border-right-color:rgba(27,33,37,.07);
    border-bottom-color:rgba(27,33,37,.07);
    border-left-color:rgba(27,33,37,.07);
  }
  75.47%{
    animation-timing-function:cubic-bezier(.22,.84,.28,1);
    opacity:1;
    transform:translate3d(0,0,0);
    left:var(--orbit-side);
    top:261px;
    width:var(--orbit-width);
    height:var(--creative-start-height);
    padding:13px 12px;
    row-gap:6px;
    border-radius:12px;
    box-shadow:0 6px 15px rgba(23,27,31,.04);
    border-top-width:3px;
    border-right-width:1px;
    border-bottom-width:1px;
    border-left-width:1px;
    border-top-color:var(--accent);
    border-right-color:rgba(27,33,37,.07);
    border-bottom-color:rgba(27,33,37,.07);
    border-left-color:rgba(27,33,37,.07);
  }
  100%{
    opacity:1;
    transform:translate3d(0,0,0);
    left:var(--final-left);
    top:var(--final-top);
    width:var(--final-width);
    height:var(--final-height);
    padding:18px 16px;
    row-gap:8px;
    border-radius:var(--final-radius);
    box-shadow:none;
    border-top-width:var(--final-bt-width);
    border-right-width:var(--final-br-width);
    border-bottom-width:var(--final-bb-width);
    border-left-width:var(--final-bl-width);
    border-top-color:var(--final-bt-color);
    border-right-color:var(--final-br-color);
    border-bottom-color:var(--final-bb-color);
    border-left-color:var(--final-bl-color);
  }
}

@keyframes connectorGrowY{
  0%{opacity:0;transform:scaleY(0)}
  100%{opacity:1;transform:scaleY(1)}
}

@keyframes connectorGrowX{
  0%{opacity:0;transform:scaleX(0)}
  100%{opacity:1;transform:scaleX(1)}
}

@media (prefers-reduced-motion: reduce){
  .core-brand,
  .orbit,
  .connector{
    animation:none !important;
    opacity:1;
  }

  .core-brand{
    transform:translate(-50%,-50%);
  }

  .orbit{transform:none}
  .connector{transform:none}
}

/* ---------------------------------------------------------
   TYPOGRAPHY NOTES
   Display/headline text uses --font-display. Body, navigation,
   buttons, forms, and supporting copy use --font-body. Shared
   size tokens above keep equal text roles consistent while
   allowing intentional hero and responsive exceptions.
   --------------------------------------------------------- */

/* ---------------------------------------------------------
   5. SHARED SECTION HEADINGS
   --------------------------------------------------------- */
.section-head{
  max-width:760px;
  margin:0 0 42px;
  text-align:left;
}

.section-head h2{
  font-size:var(--type-display-lg);
  line-height:1.03;
  letter-spacing:-.042em;
  margin:10px 0 13px;
  color:#172B34;
}

.section-head p{
  max-width:700px;
  margin:0;
  color:var(--muted);
  font-size:var(--type-body);
  line-height:1.65;
}

/* ---------------------------------------------------------
   6. THE STUDIO
   --------------------------------------------------------- */
.privacy{background:#FFF}

.privacy-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:58px;
  align-items:center;
}

.privacy-card{
  min-height:380px;
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
  border:1px solid #30383D;
  border-radius:18px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(145deg,#1B2125,#2A3237);
  background-size:28px 28px,28px 28px,100% 100%;
  box-shadow:0 18px 38px rgba(23,27,31,.12);
}

.studio-model{
  justify-content:flex-start;
  overflow:hidden;
}

.model-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:#FF9A3D;
  font-size:var(--type-kicker);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.model-kicker::before{
  content:"";
  width:26px;
  height:2px;
  background:var(--accent);
}

.privacy-card .model-heading{
  max-width:440px;
  margin:0 0 28px;
  color:#FFFFFF;
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.7rem,2.4vw,2.2rem);
  line-height:1.05;
  letter-spacing:-.025em;
}

.model-flow{
  display:grid;
  gap:0;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.model-step{
  position:relative;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
  padding:16px 0;
}

.model-step + .model-step{
  border-top:1px solid rgba(255,255,255,.08);
}

.model-num{
  color:var(--accent);
  font-size:var(--type-kicker);
  font-weight:900;
  letter-spacing:.12em;
  padding-top:3px;
}

.model-step strong{
  display:block;
  color:#FFFFFF;
  font-size:.94rem;
  line-height:1.25;
}

.model-step small{
  display:block;
  margin-top:4px;
  color:#AEB8BD;
  font-size:var(--type-label);
  line-height:1.35;
}

.model-footer{
  margin-top:auto;
  padding-top:22px;
  color:#D5DBDE;
  font-size:var(--type-ui);
  font-weight:700;
  letter-spacing:.015em;
}

.privacy-card p{
  max-width:420px;
  color:#C6CDD0;
}

.privacy-copy h2{
  font-size:var(--type-display-xl);
  line-height:1.03;
  letter-spacing:-.04em;
  margin:12px 0 18px;
}

.privacy-copy p{color:var(--muted)}

.checks{
  display:grid;
  gap:10px;
  margin-top:24px;
}

.checks div{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.checks span{
  width:3px;
  height:22px;
  display:block;
  flex:0 0 auto;
  margin-top:4px;
  border-radius:999px;
  background:var(--accent);
}

.checks p{margin:0}

/* ---------------------------------------------------------
   7. WHAT WE DEVELOP
   --------------------------------------------------------- */
.develop{background:#F6F3EE}

.develop-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.dev-card{
  min-height:260px;
  padding:24px;
  border:1px solid #DDD7D0;
  border-radius:10px;
  background:#FFF;
  box-shadow:none;
  transition:.2s;
}

.dev-card:hover{
  transform:translateY(-4px);
  border-color:#E7A45E;
  box-shadow:0 14px 28px rgba(23,27,31,.08);
}

.dev-icon{
  width:56px;
  height:56px;
  margin-bottom:21px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  background:linear-gradient(180deg,#141B22 0%, #1C252D 100%);
  color:var(--accent);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03), 0 8px 16px rgba(23,27,31,.10);
}

.dev-icon svg{
  width:24px;
  height:24px;
  stroke:currentColor;
  stroke-width:1.7;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.dev-card h3{
  margin:0 0 9px;
  font-size:1rem;
}

.dev-card p{
  margin:0;
  color:var(--muted);
  font-size:var(--type-card);
  line-height:1.52;
}

/* ---------------------------------------------------------
   8. HOW WE WORK
   --------------------------------------------------------- */
.process{
  position:relative;
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px),
    radial-gradient(circle at 82% 12%,rgba(255,128,0,.11),transparent 27%),
    linear-gradient(135deg,#171C20,#252D32 72%,#2E363B);
  background-size:34px 34px,34px 34px,100% 100%,100% 100%;
}

.process .section-head h2{color:#FFF}
.process .section-head p{color:#BFC6C9}

.process-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr)) 28px;
  gap:28px;
  margin-top:42px;
  padding-top:32px;
}

.process-grid::before{
  content:"";
  position:absolute;
  left:7px;
  right:14px;
  top:7px;
  height:2px;
  background:linear-gradient(90deg,rgba(255,128,0,.95),rgba(255,128,0,.48));
}

.process-step{
  position:relative;
  padding:0 14px 0 0;
  text-align:left;
}

.step-node{
  position:absolute;
  left:0;
  top:-32px;
  width:14px;
  height:14px;
  border:2px solid var(--accent);
  border-radius:50%;
  background:#20272C;
  box-shadow:0 0 0 5px rgba(255,128,0,.07);
  z-index:2;
}

.process-step h3{
  margin:0 0 8px;
  color:#FFF;
  font-size:1.02rem;
}

.process-step p{
  margin:0;
  color:#C2C9CC;
  font-size:var(--type-card);
  line-height:1.58;
}

.process-return{
  position:relative;
  padding:0;
  min-width:28px;
  min-height:1px;
  color:#AEB8BD;
}

.return-node{
  position:absolute;
  left:0;
  top:-37px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,128,0,.62);
  border-radius:50%;
  background:#20272C;
  color:var(--accent);
  font-size:1rem;
  line-height:1;
  box-shadow:0 0 0 5px rgba(255,128,0,.06);
  z-index:3;
}

/* ---------------------------------------------------------
   9. INSIDE THE STUDIO
   --------------------------------------------------------- */
.inside{background:#F7F4EF}

.inside-head{
  max-width:900px;
  /* Slightly more separation between the section introduction and the
     capability cards so this card transition matches the rest of the site. */
  margin-bottom:28px;
}

.inside-head h2{
  max-width:880px;
}

.inside-head p{
  max-width:720px;
}

.inside-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.inside-card{
  overflow:hidden;
  border:1px solid #DDD7D0;
  border-radius:10px;
  background:#FFF;
  box-shadow:none;
}

/* Compact category band: deliberately plain so this section
   does not compete with the visual language of the process section. */
.inside-art{
  min-height:54px;
  display:flex;
  align-items:center;
  padding:0 20px;
  color:#fff;
  background:#273137!important;
}

.inside-art:before{display:none}

.inside-badge{
  display:flex;
  flex-direction:row;
  align-items:baseline;
  justify-content:flex-start;
  gap:11px;
  text-align:left;
}

.inside-number{
  color:var(--accent);
  font-size:1.9rem;
  line-height:1;
  font-weight:900;
  letter-spacing:-.035em;
}

.inside-label{
  color:#fff;
  font-size:1.32rem;
  line-height:1;
  font-weight:900;
  letter-spacing:.055em;
  text-transform:uppercase;
}

.inside-copy{
  min-height:118px;
  padding:18px 20px 20px;
}

.inside-copy h3{
  margin:0 0 7px;
  color:#172B34;
  font-size:.98rem;
  line-height:1.3;
}

.inside-copy p{
  margin:0;
  color:var(--muted);
  font-size:var(--type-card);
  line-height:1.55;
}

/* ---------------------------------------------------------
   10. PUBLIC ROLE / CREDIBILITY
   --------------------------------------------------------- */
.credibility{background:#FFF}

.credibility .section-head{
  max-width:680px;
  /* This heading has no supporting paragraph, so use a slightly tighter
     heading-to-content gap than sections with a full intro block. */
  margin-bottom:34px;
}

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

.cred-card{
  padding:22px 18px 24px;
  border:0;
  border-top:2px solid var(--accent);
  border-radius:0;
  background:transparent;
}

.cred-card strong{
  display:block;
  margin-bottom:8px;
  font-size:1rem;
}

.cred-card p{
  margin:0;
  color:var(--muted);
  font-size:var(--type-card);
  line-height:1.58;
}

/* ---------------------------------------------------------
   11. BUSINESS INQUIRIES / CLIENT ACCESS
   --------------------------------------------------------- */
.business-inquiries{
  position:relative;
  overflow:hidden;
  padding:46px 0 50px;
  color:#fff;
  background:
    radial-gradient(circle at 12% 18%,rgba(255,128,0,.12),transparent 30%),
    radial-gradient(circle at 88% 84%,rgba(255,255,255,.035),transparent 27%),
    linear-gradient(135deg,#171D21 0%,#222A2F 52%,#171C20 100%);
}

.business-inquiries::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background-image:
    linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(90deg,#000,transparent 68%);
}

.business-inquiries-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr);
  gap:clamp(42px,5vw,70px);
  align-items:start;
}

.inquiry-intro{
  padding-top:8px;
}

.inquiry-intro .section-kicker{
  color:var(--accent);
}

.inquiry-intro h2{
  max-width:560px;
  margin:9px 0 15px;
  color:#fff;
  font-size:var(--type-display-lg);
  line-height:1.02;
  letter-spacing:-.045em;
}

.inquiry-intro > p{
  max-width:590px;
  margin:0 0 12px;
  color:#C6CDD1;
  font-size:var(--type-body-sm);
  line-height:1.58;
}

.inquiry-intro .inquiry-lead{
  color:#E3E7E9;
  font-size:var(--type-body);
}

.inquiry-boundary{
  max-width:590px;
  display:grid;
  grid-template-columns:34px 1fr;
  gap:14px;
  align-items:start;
  margin-top:20px;
  padding:15px 0 0;
  border-top:1px solid rgba(255,255,255,.12);
}

.inquiry-boundary-mark{
  color:var(--accent);
  font-size:1.25rem;
  font-weight:900;
  line-height:1.25;
}

.inquiry-boundary p{
  margin:0;
  color:#AEB8BD;
  font-size:var(--type-ui);
  line-height:1.5;
}

.inquiry-boundary strong{
  color:#fff;
  font-size:.9rem;
}

.inquiry-form-card{
  padding:25px 28px;
  color:var(--ink);
  background:#F8F6F2;
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  box-shadow:0 22px 55px rgba(0,0,0,.22);
}

.inquiry-form-heading{
  margin-bottom:17px;
  padding-bottom:16px;
  border-bottom:1px solid #D9DDDF;
}

.inquiry-form-heading > span{
  color:var(--accent);
  font-size:var(--type-kicker);
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.inquiry-form-heading h3{
  margin:5px 0 6px;
  color:#172B34;
  font-size:var(--type-display-sm);
  line-height:1.08;
  letter-spacing:-.035em;
}

.inquiry-form-heading p{
  max-width:590px;
  margin:0;
  color:var(--muted);
  font-size:var(--type-card);
  line-height:1.5;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 18px;
}

.form-field{
  display:grid;
  gap:5px;
}

.form-field-full{
  grid-column:1 / -1;
}

.form-field > span{
  color:#3A454B;
  font-size:var(--type-label);
  font-weight:800;
  letter-spacing:.015em;
}

.form-field em{
  color:var(--accent);
  font-style:normal;
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid #CBD1D4;
  border-radius:8px;
  background:#fff;
  color:var(--ink);
  font:inherit;
  font-size:.9rem;
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease,background-color .18s ease;
}

.form-field input,
.form-field select{
  min-height:41px;
  padding:0 12px;
}

.form-field textarea{
  min-height:96px;
  padding:10px 12px;
  resize:vertical;
  line-height:1.55;
}

.form-field input::placeholder,
.form-field textarea::placeholder{
  color:#69757A;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:var(--ink);
  outline:2px solid #FFFFFF;
  outline-offset:2px;
  box-shadow:0 0 0 4px #1E252A;
}

.inquiry-form-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:16px;
  padding-top:15px;
  border-top:1px solid #D9DDDF;
}

.inquiry-form-footer p{
  max-width:330px;
  margin:0;
  color:#657077;
  font-size:var(--type-kicker);
  line-height:1.4;
}

.inquiry-submit{
  flex:0 0 auto;
  min-height:43px;
  border:0;
  cursor:pointer;
}

.access{padding:0}

.access-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.access-grid-single{
  grid-template-columns:1fr;
}

.access-panel{
  min-height:275px;
  padding:48px max(clamp(40px,7vw,105px),calc((100vw - var(--content-max))/2));
  display:flex;
  align-items:center;
}

.access-panel .section-kicker{
  margin-bottom:10px;
}

.access-panel h2{
  margin:0 0 12px;
  font-size:var(--type-display-md);
  line-height:1.08;
  letter-spacing:-.035em;
}

.access-panel p{
  max-width:610px;
  margin:0 0 22px;
}

.client{
  color:var(--ink);
  background:linear-gradient(135deg,#F4F0EA,#E9E3DB);
}

.client .section-kicker{color:var(--accent)}

.client .btn{
  background:#20262A;
  color:#FFF;
}

/* ---------------------------------------------------------
   12. FINAL CTA
   --------------------------------------------------------- */
.cta{
  padding:58px 0;
  text-align:center;
  color:#fff;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,128,0,.10),transparent 40%),
    #1A2024;
}

.cta h2{
  margin:0 0 14px;
  font-size:var(--type-display-lg);
  line-height:1.04;
  letter-spacing:-.04em;
}

.cta p{
  max-width:730px;
  margin:0 auto;
  color:#C3C9CC;
  line-height:1.65;
}

.cta .btn{
  background:var(--accent);
  color:#171B1F;
}

/* ---------------------------------------------------------
   13. FOOTER
   --------------------------------------------------------- */
footer{
  padding:50px 0 22px;
  background:#101417;
  color:#C8CED1;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.55fr .8fr .8fr 1fr;
  gap:42px;
  align-items:start;
}

.footer-grid > div:first-child > p{
  max-width:360px;
  color:#929DA2;
  font-size:var(--type-card);
  line-height:1.65;
}

.footer-col h3{
  margin:0 0 14px;
  font-family:var(--font-body);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:var(--type-kicker);
}

.footer-col a{
  display:block;
  margin:0 0 9px;
  color:#ABB4B9;
  font-size:var(--type-ui);
}

.footer-col a:hover{color:var(--accent)}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-top:32px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#929DA2;
  font-size:var(--type-meta);
}

/* ---------------------------------------------------------
   14. RESPONSIVE
   --------------------------------------------------------- */
@media(max-width:1400px){
  :root{--site-frame-side:72px}

  .brand-wordmark{width:250px}
  .nav-links{gap:23px;font-size:.86rem}

  .hero-grid{
    grid-template-columns:minmax(0,1fr) 380px;
    gap:18px;
  }

  .studio-map,
  .map-card{
    width:395px;
    max-width:395px;
    min-width:395px;
    margin-left:-12px;
  }

  .studio-map{min-height:455px}
  .map-card{min-height:405px}
 .core-brand{width:214px;padding:16px 16px 12px}
 .core-wordmark{width:178px}
}

@media(max-width:1100px){
  :root{
    --hero-products-size:clamp(3.35rem,5.2vw,5rem);
  }

  .brand-wordmark{width:215px}
  .nav-links{gap:19px;font-size:.82rem}

  .hero-grid{
    grid-template-columns:minmax(0,1fr) 340px;
    gap:14px;
  }

  .studio-map,
  .map-card{
    width:355px;
    max-width:355px;
    min-width:355px;
    margin-left:-6px;
  }

  .studio-map{min-height:395px;transform:translateY(-34px)}
  .map-card{min-height:350px}
 .core-brand{width:196px;padding:14px 14px 10px}
 .core-wordmark{width:160px}
  .orbit{--orbit-width:122px;width:var(--orbit-width);height:90px;font-size:.71rem}
  .orbit-title{font-size:.92rem}
  .orbit small{font-size:.62rem}

  .o1{--final-left:calc(50% - 133px);--final-top:38px;--final-width:133px;--final-height:133px}
  .o2{--final-left:50%;--final-top:38px;--final-width:133px;--final-height:133px}
  .o3{--creative-start-height:90px;--final-left:calc(50% - 133px);--final-top:171px;--final-width:133px;--final-height:133px}
  .o4{--final-left:50%;--final-top:171px;--final-width:133px;--final-height:133px}

  .connector-v-main-top{top:88px;height:96px}
  .connector-v-main-bottom{top:184px;height:106px}
  .connector-h-mid-left,.connector-h-mid-right{top:184px}
  .connector-v-left-top,.connector-v-right-top{top:88px;height:96px}
  .connector-v-left-bottom,.connector-v-right-bottom{top:184px;height:106px}
  .connector-h-top-left,.connector-h-top-right{top:88px}
  .connector-h-bottom-left,.connector-h-bottom-right{top:289px}
}

@media(max-width:980px){
  :root{--site-frame-side:28px}

  .nav-links{
    position:absolute;
    top:96px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
    background:#171B1F;
  }

  .nav-links.open{display:flex}
  .menu-btn{display:block}
  .brand-wordmark{width:min(250px,58vw)}

  section{padding:68px 0}

  .section-head{margin-bottom:34px}

  .hero{min-height:auto}

  .hero-grid{
    min-height:auto;
    grid-template-columns:1fr;
    gap:30px;
    padding:34px 0 78px;
  }

  .studio-map{
    width:100%;
    min-height:455px;
    justify-self:center;
    justify-content:center;
    margin-left:0;
    transform:none;
  }

  .map-card{
    width:min(100%,430px);
    max-width:430px;
    min-width:0;
    min-height:405px;
    margin-left:0;
  }

  .core-brand{width:226px;padding:18px 18px 14px}
  .core-wordmark{width:190px}
  .orbit{--orbit-width:136px;--orbit-side:34px;width:var(--orbit-width);height:96px;font-size:.76rem}
  .orbit-title{font-size:1rem}
  .orbit small{font-size:.66rem}

  .o1{--final-left:calc(50% - 160px);--final-top:42px;--final-width:160px;--final-height:160px}
  .o2{--final-left:50%;--final-top:42px;--final-width:160px;--final-height:160px}
  .o3{--creative-start-height:96px;--final-left:calc(50% - 160px);--final-top:202px;--final-width:160px;--final-height:160px}
  .o4{--final-left:50%;--final-top:202px;--final-width:160px;--final-height:160px}

  .connector-v-main-top{top:92px;height:104px}
  .connector-v-main-bottom{top:196px;height:114px}
  .connector-h-mid-left,.connector-h-mid-right{top:196px}
  .connector-v-left-top,.connector-v-right-top{top:92px;height:104px}
  .connector-v-left-bottom,.connector-v-right-bottom{top:196px;height:114px}
  .connector-h-top-left,.connector-h-top-right{top:92px}
  .connector-h-bottom-left,.connector-h-bottom-right{top:309px}

  .privacy-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .develop-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .process-step{padding-right:0}
  .inside-grid{grid-template-columns:repeat(2,1fr)}
  .access-grid{grid-template-columns:1fr}
  .cred-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:640px){
  :root{--site-frame-side:16px}

  .container{
    width:min(100% - 28px,var(--content-max));
  }

  header .container,
  .hero .container,
  footer .container{
    width:calc(100% - (var(--site-frame-side) * 2));
  }

  section{padding:56px 0}

  .hero-grid{padding:26px 0 70px}

  .hero-grid > div:first-child{row-gap:24px}

  .become-inline-main{
    gap:12px;
    flex-wrap:wrap;
  }

  .hero-copy{font-size:1rem}

  .hero-principles{
    grid-template-columns:1fr;
    gap:12px;
  }

  .hero-principle,
  .hero-principle + .hero-principle{
    border-left:0;
    padding:0;
  }

  .hero-principle + .hero-principle:before{display:none}

 .core-brand{width:min(100%,212px);padding:14px 14px 10px}

  .studio-map{min-height:380px}
  .map-card{min-height:350px}

  .orbit{
    --orbit-width:130px;
    --orbit-side:20px;
    width:var(--orbit-width);
    height:96px;
    animation:orbitAssemble .72s cubic-bezier(.22,.84,.28,1) forwards !important;
    animation-delay:var(--orbit-delay,.24s) !important;
  }

  .connector{display:none}

  .develop-grid,
  .process-grid,
  .inside-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .dev-card{min-height:auto}

  .access-panel{padding:42px 28px}
}


@media(max-width:640px){
  .studio-model{padding:30px 24px}
  .privacy-card h3{font-size:1.75rem;margin-bottom:22px}
  .model-step{grid-template-columns:36px 1fr;gap:10px;padding:14px 0}
  .model-footer{padding-top:18px}
}

/* HOW IDEAS MOVE FORWARD — responsive lifecycle */
@media(max-width:980px){
  .process-grid{
    grid-template-columns:1fr;
    gap:0;
    margin-top:34px;
    padding:0 0 0 38px;
  }

  .process-grid::before{
    left:7px;
    right:auto;
    top:7px;
    bottom:14px;
    width:2px;
    height:auto;
    background:linear-gradient(180deg,rgba(255,128,0,.95),rgba(255,128,0,.40));
  }

  .process-step{
    padding:0 0 26px;
  }

  .process-step:last-of-type{
    padding-bottom:26px;
  }

  .process-return{
    padding:0;
    min-width:0;
    min-height:28px;
    height:28px;
  }

  .step-node{
    left:-38px;
    top:4px;
  }

  .return-node{
    left:-45px;
    top:0;
  }
}

@media(max-width:640px){
  .process-grid{
    padding-left:34px;
  }

  .step-node{
    left:-34px;
  }

  .return-node{
    left:-41px;
  }
}


/* BUSINESS INQUIRIES — RESPONSIVE */
@media(max-width:980px){
  .business-inquiries{padding:58px 0}

  .business-inquiries-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .inquiry-intro{padding-top:0}
  .inquiry-intro h2,
  .inquiry-intro > p,
  .inquiry-boundary{max-width:720px}
}

@media(max-width:640px){
  .inquiry-form-card{
    padding:26px 20px;
    border-radius:14px;
  }

  .form-field textarea{min-height:132px}

  .form-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .form-field-full{grid-column:auto}

  .inquiry-form-footer{
    align-items:stretch;
    flex-direction:column;
  }

  .inquiry-submit{width:100%}

  .access-panel{padding:42px 28px}
}

/* ---------------------------------------------------------
   FOOTER BRAND + INFORMATION ARCHITECTURE POLISH
   --------------------------------------------------------- */
.footer-brand{
  min-width:0;
}

.footer-wordmark-link{
  display:inline-block;
  line-height:0;
  margin-bottom:18px;
}

.footer-wordmark{
  display:block;
  width:clamp(210px,18vw,250px);
  height:auto;
}

.footer-brand > p{
  margin:0;
}

@media(max-width:640px){
  .footer-wordmark{
    width:min(230px,78vw);
  }

  /* A single-column footer should read as one compact stack rather than
     four desktop columns placed one beneath another. */
  .footer-grid{gap:30px}
  .footer-bottom{margin-top:28px}
}


/* ---------------------------------------------------------
   MOBILE HERO GRAPHIC — FULL RESPONSIVE ANIMATION
   Keep the approved desktop hero untouched. On phones, scale
   the complete map geometry proportionally instead of using
   fixed desktop pixels, and restore the full build/integration
   animation that had previously been disabled below 640px.
   --------------------------------------------------------- */
@media(max-width:640px){
  .studio-map{
    width:100%;
    min-height:0;
    height:auto;
    display:block;
    justify-self:stretch;
    margin:0;
    transform:none;
  }

  .map-card{
    width:100%;
    max-width:430px;
    min-width:0;
    min-height:0;
    aspect-ratio:430 / 405;
    margin:0 auto;
  }

  .core-brand{
    width:52.56%;
    padding:clamp(10px,4.2vw,18px) clamp(10px,4.2vw,18px) clamp(8px,3.3vw,14px);
  }

  .core-wordmark{
    width:84%;
  }

  .orbit{
    --orbit-width:31.63%;
    --orbit-side:7.91%;
    width:var(--orbit-width);
    height:23.70%;
    padding:clamp(7px,2.5vw,12px);
    row-gap:clamp(4px,1.4vw,6px);
    font-size:clamp(.62rem,2.8vw,.76rem);
    animation-name:orbitAssemble,orbitIntegrateMobile !important;
    animation-duration:.68s,1.05s !important;
    animation-timing-function:cubic-bezier(.22,.84,.28,1),cubic-bezier(.22,.84,.28,1) !important;
    animation-delay:var(--orbit-delay,.24s),3.65s !important;
    animation-fill-mode:forwards,forwards !important;
  }

  .orbit-title{
    font-size:clamp(.78rem,3.55vw,1rem);
  }

  .orbit small{
    font-size:clamp(.52rem,2.55vw,.66rem);
    line-height:1.2;
  }

  .o1{
    top:12.35%;
    --final-left:12.79%;
    --final-top:10.37%;
    --final-width:37.21%;
    --final-height:39.51%;
  }

  .o2{
    top:12.35%;
    --final-left:50%;
    --final-top:10.37%;
    --final-width:37.21%;
    --final-height:39.51%;
  }

  .o3{
    top:64.44%;
    --final-left:12.79%;
    --final-top:49.88%;
    --final-width:37.21%;
    --final-height:39.51%;
  }

  .o4{
    top:64.44%;
    --final-left:50%;
    --final-top:49.88%;
    --final-width:37.21%;
    --final-height:39.51%;
  }

  /* Restore the complete connector network on phones. */
  .connector{display:block}

  .connector-v-main-top{
    top:22.72%;
    height:25.68%;
  }

  .connector-v-main-bottom{
    top:48.40%;
    height:28.15%;
  }

  .connector-h-mid-left,
  .connector-h-mid-right{
    top:48.40%;
  }

  .connector-v-left-top,
  .connector-v-right-top{
    top:22.72%;
    height:25.68%;
  }

  .connector-v-left-bottom,
  .connector-v-right-bottom{
    top:48.40%;
    height:28.15%;
  }

  .connector-h-top-left,
  .connector-h-top-right{
    top:22.72%;
  }

  .connector-h-bottom-left,
  .connector-h-bottom-right{
    top:76.30%;
  }

  /* Used only for the one-time mobile viewport replay. */
  .studio-map.animation-reset .core-brand,
  .studio-map.animation-reset .orbit,
  .studio-map.animation-reset .connector{
    animation:none !important;
    opacity:0;
  }

  .studio-map.animation-reset .core-brand{
    transform:translate(-50%,-50%) scale(.97);
  }

  .studio-map.animation-reset .orbit{
    transform:translate3d(var(--enter-x,0),var(--enter-y,0),0);
  }

  .studio-map.animation-reset .connector-v{
    transform:scaleY(0);
  }

  .studio-map.animation-reset .connector-h{
    transform:scaleX(0);
  }
}

@keyframes orbitIntegrateMobile{
  to{
    left:var(--final-left);
    top:var(--final-top);
    width:var(--final-width);
    height:var(--final-height);
    padding:clamp(8px,2.8vw,14px);
    row-gap:clamp(4px,1.5vw,7px);
    border-radius:var(--final-radius);
    box-shadow:none;
    border-top-width:var(--final-bt-width);
    border-right-width:var(--final-br-width);
    border-bottom-width:var(--final-bb-width);
    border-left-width:var(--final-bl-width);
    border-top-color:var(--final-bt-color);
    border-right-color:var(--final-br-color);
    border-bottom-color:var(--final-bb-color);
    border-left-color:var(--final-bl-color);
  }
}

/* Preserve the existing reduced-motion behavior after the mobile animation override. */
@media(max-width:640px) and (prefers-reduced-motion:reduce){
  .core-brand,
  .orbit,
  .connector{
    animation:none !important;
    opacity:1;
  }

  .core-brand{transform:translate(-50%,-50%)}
  .orbit{transform:none}
  .connector{transform:none}
}

/* ---------------------------------------------------------
   MOBILE / TABLET HERO STACKING — SPECIFICITY CORRECTION
   .hero .container is a flex rule with higher specificity than
   .hero-grid, so explicitly override it once the hero is meant
   to become a single column. Desktop (>980px) is untouched.
   --------------------------------------------------------- */
@media(max-width:980px){
  .hero .container.hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr);
    align-items:start;
  }

  .hero-grid > div:first-child,
  .hero-grid > .studio-map{
    min-width:0;
  }
}

@media(max-width:640px){
  .hero .container.hero-grid{
    gap:32px;
  }

  .hero-grid > .studio-map{
    grid-column:1;
    width:100%;
    max-width:430px;
    justify-self:center;
    margin:0;
  }

  /* Keep the phone animation at frame zero until the graphic
     actually enters the viewport. This avoids an off-screen run
     followed by a replay and makes the first visible run clean. */
  .studio-map:not(.mobile-animate) .core-brand,
  .studio-map:not(.mobile-animate) .orbit,
  .studio-map:not(.mobile-animate) .connector{
    animation-play-state:paused !important;
  }
}

/* ---------------------------------------------------------
   FINAL RESPONSIVE QA — TABLET NAVIGATION + SHORT VIEWPORTS
   --------------------------------------------------------- */

/* The full desktop navigation begins wrapping just above the
   previous 980px breakpoint. Switch to the compact menu before
   that happens so every navigation label remains one clean line. */
@media(max-width:1080px){
  .nav-links{
    position:absolute;
    top:96px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
    background:#171B1F;
  }

  .nav-links.open{display:flex}
  .menu-btn{display:block}
  .brand-wordmark{width:min(250px,58vw)}
}

/* Keep the approved Business Inquiries proportions on normal
   displays, but tighten only the outside vertical breathing room
   on shorter desktop/laptop viewports so the complete section can
   remain visible after its navigation link is selected. */
@media(min-width:981px) and (max-height:850px){
  .business-inquiries{
    padding:18px 0 20px;
  }
}


/* ---------------------------------------------------------
   MOBILE MENU OVERLAY / SCROLL LOCK FIX
   --------------------------------------------------------- */
@media(max-width:1080px){
  /* Cover the complete viewport directly below the sticky header.
     top:100% follows the header's real rendered height, removing
     the old gap caused by the hard-coded top:96px value. */
  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    height:calc(100dvh - 92px);
    min-height:calc(100dvh - 92px);
    max-height:calc(100dvh - 92px);
    padding:24px max(24px,var(--site-frame-side)) 34px;
    background:#171B1F;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    z-index:49;
  }

  .nav-links.open{display:flex}

  /* Gesture containment is handled by JavaScript instead of locking
     document overflow, so closing the menu can never leave the page frozen. */
  html.nav-open{
    overscroll-behavior:none;
  }

  .menu-btn{
    position:relative;
    z-index:51;
    min-width:44px;
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
  }
}


/* ---------------------------------------------------------
   MOBILE HERO START POSITION + HEADER HOME BEHAVIOR POLISH
   --------------------------------------------------------- */
@media(max-width:980px){
  /* Generic responsive section padding was stacking on top of the
     hero-grid padding (68px + 34px on tablet / 56px + 26px on phone).
     The hero owns its own spacing, so remove the duplicate section
     padding and let the approved hero-grid values control the start. */
  .hero{
    padding:0;
  }
}


/* ---------------------------------------------------------
   15. LEGAL PAGES
   --------------------------------------------------------- */
.footer-legal{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.footer-legal a{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  color:#ABB4B9;
  transition:color .18s ease;
}

.footer-legal a:hover{color:var(--accent)}

.legal-main{
  min-height:60vh;
  background:
    radial-gradient(circle at 84% 4%,rgba(255,128,0,.08),transparent 28%),
    linear-gradient(180deg,#FBFAF8 0%,#F4F1EC 100%);
}

.legal-hero{
  padding:72px 0 34px;
  border-bottom:1px solid #DED9D2;
}

.legal-hero .container{
  max-width:900px;
}

.legal-hero h1{
  margin:8px 0 10px;
  font-family:var(--font-display);
  font-size:var(--type-display-xl);
  line-height:1.02;
  letter-spacing:-.045em;
  color:var(--ink);
}

.legal-meta{
  margin:0;
  color:var(--muted);
  font-size:var(--type-body-sm);
}

.legal-content-section{
  padding:44px 0 78px;
}

.legal-content-section .container{
  max-width:900px;
}

.legal-card{
  padding:46px 50px;
  background:#FFF;
  border:1px solid #DAD5CE;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(22,27,31,.07);
}

.legal-intro{
  margin:0 0 30px;
  color:#4E5A60;
  font-size:var(--type-body-lg);
  line-height:1.72;
}

.legal-content h2{
  margin:34px 0 10px;
  font-size:1.35rem;
  line-height:1.18;
  letter-spacing:-.02em;
}

.legal-content h2:first-of-type{margin-top:0}

.legal-content p,
.legal-content li{
  color:#4E5A60;
  font-size:var(--type-body);
  line-height:1.72;
}

.legal-content p{margin:0 0 14px}

.legal-content ul{
  margin:10px 0 18px;
  padding-left:22px;
}

.legal-content li{margin:0 0 8px}

.legal-content strong{color:var(--ink)}

.legal-content a{
  color:var(--ink);
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.legal-note{
  margin:28px 0 0;
  padding:18px 20px;
  border-left:3px solid var(--accent);
  background:#F7F3ED;
  border-radius:0 8px 8px 0;
}

.legal-note p{margin:0;font-size:var(--type-body-sm)}

@media(max-width:640px){
  .legal-hero{padding:52px 0 26px}
  .legal-content-section{padding:30px 0 56px}
  .legal-card{padding:30px 24px;border-radius:12px}
  .legal-intro{font-size:1.04rem}
  .legal-content h2{font-size:1.22rem;margin-top:28px}
  .footer-legal{width:100%}
}


/* ---------------------------------------------------------
   16. CLIENT ACCESS PRESENTATION PAGE
   --------------------------------------------------------- */
.client-access-main{
  background:
    radial-gradient(circle at 14% 8%,rgba(255,128,0,.10),transparent 30%),
    radial-gradient(circle at 88% 86%,rgba(32,38,42,.05),transparent 28%),
    linear-gradient(180deg,#FBFAF8 0%,#F1EDE7 100%);
}

.client-access-hero{
  padding:72px 0 78px;
}

.client-access-shell{
  max-width:1180px;
}

.client-access-intro{
  max-width:810px;
  margin-bottom:34px;
}

.client-access-intro h1{
  margin:8px 0 16px;
  font-family:var(--font-display);
  font-size:var(--type-display-xl);
  line-height:1.01;
  letter-spacing:-.048em;
  color:var(--ink);
}

.client-access-intro p{
  max-width:760px;
  margin:0;
  color:#536066;
  font-size:var(--type-body-lg);
  line-height:1.68;
}

.client-access-help-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  column-gap:42px;
  align-items:end;
  padding:34px 36px;
  border:1px solid #D8D2CA;
  border-top:3px solid var(--accent);
  border-radius:14px;
  background:#FFF;
  box-shadow:0 16px 36px rgba(24,29,32,.07);
}

.client-access-status,
.client-access-help-card h2,
.client-access-help-card p{
  grid-column:1;
}

.client-access-status{
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:11px;
  color:#6A7479;
  font-size:var(--type-kicker);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.client-access-status-dot{
  width:8px;
  height:8px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(255,128,0,.12);
}

.client-access-help-card h2{
  margin:0 0 10px;
  font-size:clamp(1.55rem,2.2vw,2.15rem);
  line-height:1.08;
  letter-spacing:-.03em;
}

.client-access-help-card p{
  max-width:720px;
  margin:0;
  color:#566168;
  line-height:1.66;
}

.client-access-actions{
  grid-column:2;
  grid-row:1 / span 3;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:13px;
  min-width:265px;
}

.client-access-actions .btn{
  width:100%;
  justify-content:center;
  white-space:nowrap;
}

.client-access-return{
  color:#59656B;
  font-size:var(--type-ui);
  font-weight:750;
}

.client-access-return:hover{color:var(--accent)}

.client-access-detail-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:20px;
}

.client-access-detail{
  min-width:0;
  padding:24px 24px 26px;
  border:1px solid #D9D4CD;
  border-radius:12px;
  background:rgba(255,255,255,.66);
}

.client-access-number{
  display:block;
  margin-bottom:16px;
  color:var(--accent);
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:800;
  line-height:1;
}

.client-access-detail h3{
  margin:0 0 8px;
  font-size:1.05rem;
  line-height:1.2;
}

.client-access-detail p{
  margin:0;
  color:#657077;
  font-size:var(--type-card);
  line-height:1.62;
}

@media(max-width:900px){
  .client-access-hero{padding:58px 0 66px}
  .client-access-help-card{
    grid-template-columns:1fr;
    gap:24px;
    align-items:start;
  }
  .client-access-actions{
    grid-column:1;
    grid-row:auto;
    min-width:0;
    width:100%;
  }
  .client-access-actions .btn{width:auto}
  .client-access-detail-grid{grid-template-columns:1fr}
}

@media(max-width:640px){
  .client-access-hero{padding:46px 0 52px}
  .client-access-intro{margin-bottom:26px}
  .client-access-help-card{padding:26px 22px;border-radius:12px}
  .client-access-actions .btn{width:100%;white-space:normal;text-align:center}
  .client-access-detail{padding:22px 20px}
}


/* ---------------------------------------------------------
   ACCESSIBILITY — REDUCED MOTION
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
}
