@font-face {
  font-family: 'ABeeZee';
  src: url('/fonts/abeezee.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-allone-white: #f1f0ee;
  --color-allone-soft-grey: #d8d6d3;
  --color-allone-grey: #b3b3b3;
  --color-allone-dark-grey: #1b1b1b;
  --color-allone-black: #1b1b1b;
  --allone-blue: rgb(39, 118, 234);
  --allone-pink: rgb(185, 107, 154);
}

html, body, .layout-wrapper {
  font-family: 'ABeeZee', system-ui, sans-serif !important;
  background-color: #f1f0ee;
}

main.homepage,
main.bg-allone-white {
  background-color: #f1f0ee !important;
}

/* Footer accent: black background stays */
[style*="font-family:'Inter'"],
[style*="font-family: 'Inter'"] {
  font-family: 'ABeeZee', system-ui, sans-serif !important;
}

/* AllOne hero wordmark — matching logo letterforms */
.allone-wordmark {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: #1b1b1b;
  font-size: clamp(140px, 28vw, 480px);
  white-space: nowrap;
}

/* Horizontally center the AllOne hero wordmark — vertical untouched */
.home-hero > div.absolute.flex-col {
  right: auto !important;
  left: 0 !important;
  width: 100vw !important;
  align-items: center !important;
  transform: translateX(10vw) !important;
}

/* Align the AI-wings tagline directly under the "A" of AllOne.
   The wordmark SVG fills the +10vw-shifted container, so its left edge
   (the "A") sits at viewport-x ≈ 10vw. We left-align the tagline within
   the same container so its left edge lands at the same x. The browser
   auto-closes the <p> before the inner <div>, so the actual visible text
   lives in a sibling div .hero-mask-in-mask-line-mask. */
.home-hero > div.absolute.flex-col > .hero-mask-in-mask-line-mask {
  align-self: flex-start !important;
  transform: none !important;
}

/* Bump the AI-wings tagline size — done in plain CSS because the project's
   Tailwind is pre-compiled and won't pick up new arbitrary `text-[6rem]` values. */
@media (min-width: 1024px) {
  .home-hero .hero-in-line.tracking-7 {
    font-size: 4rem !important;
  }
}

/* AllOne header mark */
.allone-mark {
  display: block;
  width: 100%;
  height: 100%;
}

/* Negativity / invert effect: logo appears black on light bg, white on dark bg.
   Render logo white, then mix-blend-mode: difference inverts against any bg color. */
/* Logo color adapts to background section: black by default, white over dark sections */
.header-logo img {
  transition: filter 0.2s ease;
  filter: none;
}
.header-logo.is-on-dark img {
  filter: brightness(0) invert(1);
}
.header-logo svg,
.header-logo svg * {
  fill: #000000;
  transition: fill 0.2s ease;
}
.header-logo.is-on-dark svg,
.header-logo.is-on-dark svg * {
  fill: #ffffff !important;
}

/* ============================================
   Stacked service cards — pure greyscale stack
   Back card darkest → front card lightest, no accent colors.
   Uppercase single-line title, outlined tag pills.
   ============================================ */

.service-item {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

#serviceItem0 {
  background-color: #1a1a1a !important;
  /* Counters the inline transform: scale(1.05) baked into the markup,
     so this card matches the size of the others. !important is needed because
     the inline style explicitly sets scale: none. */
  scale: 0.95238 !important;
}
#serviceItem1 { background-color: #3a3a3a !important; }
#serviceItem2 { background-color: #5a5a5a !important; }
#serviceItem3 { background-color: #7e7e7e !important; }

.service-item h2 {
  font-size: clamp(2.5rem, 7vw, 6rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.02em !important;
  word-break: keep-all;
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 600;
}
.service-item h2 br { display: none; }
.service-item h2 span {
  color: #ffffff !important;
  display: inline !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase;
}
.service-item h2 span ~ span::before { content: "\00a0"; }

.service-item .service-tags span {
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9) !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.service-item:hover .service-tags span {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 1024px) {
  #serviceItem2 {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    aspect-ratio: 16 / 7 !important;
  }

}

/* Clearance between Services heading/paragraph and the stacked cards
   so the paragraph has fully scrolled out of the viewport by the time
   the cards rise into view from the bottom. Prevents visual overlap. */
/* Removed 30vh padding-bottom — was for the old stacked-cards layout. */

/* ============================================
   Portfolio marquee — 2 horizontal rows scrolling in opposite directions.
   Cards bleed off both edges of the viewport. Hover pauses the row.
   ============================================ */
.portfolio-marquee {
  width: 100vw;
  overflow-x: clip;
  padding: 1rem 0 5rem 0;
  background-color: #f1f0ee;
}
.portfolio-marquee__row {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.portfolio-marquee__row:last-child { margin-bottom: 0; }
.portfolio-marquee__row--left,
.portfolio-marquee__row--right {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.portfolio-marquee__card {
  flex: 0 0 auto;
  width: 32vw;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #1b1b1b;
}
.portfolio-marquee__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-marquee__card:hover img { transform: scale(1.04); }

@media (max-width: 1023px) {
  .portfolio-marquee__card { width: 70vw; }
}

/* Footer: full-bleed, no rounded "island" look */
.footer-wrapper {
  padding: 0 !important;
  background-color: #0c1016 !important;
}
.footer-wrapper > footer > span:first-child {
  display: none !important;
}
.footer-main {
  border-radius: 0 !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  padding: 5rem 1.5rem 3rem !important;
}
.footer-extension {
  width: 100% !important;
  border-radius: 0 !important;
  transform: none !important;
}

/* Services grid — 3 framed cards, blueprint aesthetic */
.services-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.75rem !important;
  }
}
.services-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  background: #2776EA;
  color: #0F172A;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}
.card-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #E8F1FF;
  border-style: solid;
  border-width: 0;
  opacity: 0.85;
}
.card-corner-tl { top: 1rem; left: 1rem; border-top-width: 1.5px; border-left-width: 1.5px; }
.card-corner-tr { top: 1rem; right: 1rem; border-top-width: 1.5px; border-right-width: 1.5px; }
.card-corner-bl { bottom: 1rem; left: 1rem; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.card-corner-br { bottom: 1rem; right: 1rem; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.card-number {
  font-family: 'SF Mono', 'Menlo', 'Courier New', monospace;
  font-size: 0.85rem;
  color: #B3CFFD;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0;
}
@media (min-width: 1280px) { .card-title { font-size: 2rem; } }
.card-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: #E8F1FF;
  margin: 0;
}
.card-bullets {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #E8F1FF;
}
.card-bullets li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2776EA;
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* Our DNA bullets — modest size, scales up gently on big screens */
.home-hero ~ * ul[style*="list-style:none"] { font-size: 1.6rem; }
@media (min-width: 768px) { .home-hero ~ * ul[style*="list-style:none"] { font-size: 1.9rem; } }
@media (min-width: 1024px) { .home-hero ~ * ul[style*="list-style:none"] { font-size: 2.25rem; } }
@media (min-width: 1536px) { .home-hero ~ * ul[style*="list-style:none"] { font-size: 2.75rem; } }
.home-hero ~ * ul[style*="list-style:none"] li { white-space: nowrap; }
@media (max-width: 900px) { .home-hero ~ * ul[style*="list-style:none"] li { white-space: normal; } }

/* ===== Responsive polish: cap extremes so the design holds from
   phone (320px) to ultra-wide (3840px+). ===== */

/* Stop hero SVG titles from ballooning on huge screens */
.home-hero img[src*="allone-wordmark"],
.contact-hero svg,
.studio-hero svg {
  max-width: 1400px;
  width: 100% !important;
}

.home-hero > div.absolute,
.contact-hero > div[style*="left:50%"],
.studio-hero > div[style*="left:50%"] {
  width: min(95vw, 1500px);
  max-width: 1500px;
}

/* Cap the hero tagline paragraph */
.home-hero p {
  max-width: 1200px;
}

/* Services grid: keep cards readable on 4K, comfortable on tablets */
.services-grid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1920px) {
  .services-grid > .services-card { padding: 2.5rem !important; }
}
/* Tablet (768–1023): cards in 2-col but each slightly taller text-wise */
@media (min-width: 768px) and (max-width: 1023px) {
  .services-grid > .services-card { min-height: 280px !important; }
}

/* Our DNA bullets: keep line length readable on ultrawide */
.home-hero ~ * ul[style*="list-style:none"] {
  max-width: 1100px;
}

/* DNA / hero section: cap aria-label text widths so it doesn't run edge-to-edge on 4K */
.home-projects, .home-services {
  max-width: 1800px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Studio + Contact hero text: prevent the giant inline SVG from going outside the visible area on huge screens */
@media (min-width: 1920px) {
  .contact-hero, .studio-hero {
    overflow: hidden;
  }
  .contact-hero span[class*="w-[80vw]"],
  .studio-hero span[class*="w-[85vw]"],
  .studio-hero span[class*="lg:w-[93vw]"] {
    max-width: 1500px;
    width: 1500px !important;
  }
}

/* Phone: smaller hero heights so titles + tagline fit on one screen */
@media (max-width: 640px) {
  .home-hero, .studio-hero, .contact-hero { min-height: 70vh; }
  .footer-main { padding: 3rem 1.25rem 2rem !important; }
}

/* Make sure no horizontal scroll on any width */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Custom scrollbar rail (Lenis-style) — Lenis is disabled in animations.js,
   so the thumb doesn't track scroll. Hide the rail entirely and let the
   browser's native scrollbar handle scroll indication. */
.scrollbar.fixed,
.scrollbar > .inner,
.scrollbar .thumb { display: none !important; }

/* Bump header logo 20% larger than original w-24/w-44 sizes */
.header-logo {
  width: 8.64rem !important;
}
@media (min-width: 1024px) {
  .header-logo { width: 15.84rem !important; }
}

/* Don't pin the header — let it scroll away with the page */
header.fixed.w-screen { position: absolute !important; }

/* Compact menu: smaller link text + tighter padding */
#site-menu .wrapper { padding: 1.5rem 1rem !important; gap: 0.25rem !important; }
#site-menu a {
  font-size: 1.5rem !important;
  padding: 0.5rem 1rem !important;
}
@media (min-width: 1024px) {
  #site-menu a { font-size: 1.75rem !important; padding: 0.65rem 1.25rem !important; }
}
#site-menu a span.hidden { display: none !important; }

/* Services page detail cards — spacious 1 / 2 / 4 column responsive grid */
.service-block > .grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
}
@media (min-width: 768px) {
  .service-block > .grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
}
@media (min-width: 1024px) {
  .service-block > .grid { grid-template-columns: repeat(4, 1fr) !important; gap: 1.5rem !important; }
}
.services-detail-card {
  background: #2776EA;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.services-detail-card h4 {
  font-weight: 700;
  color: #0c1016;
  font-size: 1.15rem;
  margin: 0;
}
.services-detail-card p {
  color: #1E293B;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

/* Work page — sleek list view */
.work-list { display: flex; flex-direction: column; }
.work-row {
  display: grid;
  grid-template-columns: 60px 1fr auto 50px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0.5rem;
  border-bottom: 1px solid rgba(12,16,22,0.15);
  text-decoration: none;
  color: #0c1016;
  transition: padding 0.3s ease, background-color 0.3s ease;
}
.work-row:first-child { border-top: 1px solid rgba(12,16,22,0.15); }
.work-row:hover { padding-left: 2rem; padding-right: 2rem; background-color: rgba(151,204,232,0.12); }
.work-row .num {
  font-family: 'SF Mono','Menlo','Courier New',monospace;
  font-size: 0.95rem;
  color: #2776EA;
  letter-spacing: 0.08em;
}
.work-row .name {
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #0c1016;
}
.work-row .meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #1E293B;
}
.work-row .arrow {
  font-size: 1.75rem;
  color: #0c1016;
  transition: transform 0.3s ease;
  justify-self: end;
}
.work-row:hover .arrow { transform: translateX(10px); }
@media (max-width: 767px) {
  .work-row {
    grid-template-columns: auto 1fr 30px;
    grid-template-areas: "num name arrow" ". meta .";
    row-gap: 0.4rem;
  }
  .work-row .num { grid-area: num; }
  .work-row .name { grid-area: name; }
  .work-row .meta { grid-area: meta; flex-direction: column; gap: 0.2rem; }
  .work-row .arrow { grid-area: arrow; }
}

/* Work page — editorial / case-study style */
.work-editorial {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media (min-width: 1024px) { .work-editorial { gap: 10rem; } }
.work-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .work-block {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}
.work-block-flip .work-img-wrap { order: 1; }
@media (max-width: 899px) {
  .work-block-flip .work-img-wrap { order: 0; }
}
.work-img-wrap {
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #2776EA;
  transition: transform 0.4s ease;
}
.work-img-wrap:hover { transform: scale(1.02); }
.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.work-num {
  font-family: 'SF Mono','Menlo','Courier New',monospace;
  font-size: 0.95rem;
  color: #2776EA;
  letter-spacing: 0.1em;
}
.work-name {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #0c1016;
  margin: 0;
}
.work-meta {
  display: flex;
  gap: 0.6rem;
  color: #1E293B;
  font-size: 1rem;
  font-weight: 500;
}
.work-desc {
  color: #1E293B;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 38rem;
  margin: 0.5rem 0 0.5rem;
}
.work-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #0c1016;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #0c1016;
}
.work-cta span { transition: transform 0.3s ease; }
.work-cta:hover span { transform: translateX(6px); }







/* Studio page body paragraphs — moderate scale, not hero-display */
.studio-body-text { font-size: 1.5rem !important; line-height: 1.3 !important; }
@media (min-width: 768px) { .studio-body-text { font-size: 1.85rem !important; } }
@media (min-width: 1024px) { .studio-body-text { font-size: 2.25rem !important; } }
@media (min-width: 1536px) { .studio-body-text { font-size: 2.75rem !important; } }


/* Blue dot on the lowercase 'i' in hero titles: use background-clip
   to paint the top portion (the dot) of the letter blue, bottom (stem) black. */
.i-blue-dot {
  background: linear-gradient(to bottom, #2776EA 0%, #2776EA 32%, #0c1016 32%, #0c1016 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Menu — current page + hover state in brand blue */
#site-menu a:hover,
#site-menu a[data-current="true"] {
  background-color: #97CCE8 !important;
  color: #2776EA !important;
}

/* Our DNA / Services as combined paragraph (not bullets) */
.home-bullets-text { font-size: 1.35rem; line-height: 1.45; }
@media (min-width: 768px) { .home-bullets-text { font-size: 1.6rem; } }
@media (min-width: 1024px) { .home-bullets-text { font-size: 1.9rem; } }
@media (min-width: 1536px) { .home-bullets-text { font-size: 2.3rem; } }


/* ============================================
   New Octarinox-style footer
   ============================================ */
.footer-wrapper { padding: 0 !important; background-color: #0c1016 !important; }
.allone-footer {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2.5rem;
  color: #F0F6F8;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  box-sizing: border-box;
}
@media (min-width: 768px) { .allone-footer { padding: 6rem 2.5rem 3rem; } }
@media (min-width: 1280px) { .allone-footer { padding: 7rem 4rem 3rem; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.2fr; gap: 4rem; }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.footer-logo {
  width: 7.5rem;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #B5BFC8;
  max-width: 32rem;
  margin: 0;
  font-weight: 500;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid #2776EA;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: #97CCE8;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2776EA;
  box-shadow: 0 0 8px #97CCE8;
}

.footer-col h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #828D9E;
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col li {
  color: #F0F6F8;
  font-size: 1.02rem;
}
.footer-col a {
  color: #F0F6F8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #97CCE8; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 2rem; }
}
.footer-socials { display: flex; gap: 0.85rem; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F0F6F8;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer-socials a:hover { background: #2776EA; color: #fff; transform: translateY(-2px); }
.footer-copy, .footer-built {
  font-size: 0.85rem;
  color: #828D9E;
}


/* Footer newsletter banner */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  margin: 1.5rem 0 0;
}
@media (min-width: 900px) {
  .footer-newsletter {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    padding: 2.5rem 3rem;
    column-gap: 2.5rem;
  }
}
.newsletter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'SF Mono','Menlo','Courier New',monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #97CCE8;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.newsletter-tag-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #2776EA;
}
.newsletter-tagline {
  font-size: 1.15rem;
  line-height: 1.45;
  color: #E8EEF3;
  margin: 0;
}
.newsletter-tagline em {
  font-style: italic;
  color: #97CCE8;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  align-items: center;
  align-self: center;
  margin: 0;
}
.newsletter-text { align-self: center; }
.newsletter-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #F0F6F8;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  min-width: 0;
}
.newsletter-input::placeholder { color: #6B7785; }
.newsletter-submit {
  background: #F0F6F8;
  color: #0c1016;
  border: 0;
  border-radius: 9999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-submit:hover { background: #2776EA; transform: translateX(2px); }
.newsletter-disclaimer {
  font-family: 'SF Mono','Menlo','Courier New',monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #6B7785;
  text-transform: uppercase;
}

/* Footer giant wordmark */
.footer-wordmark {
  width: 100%;
  max-width: 1600px;
  margin: 1rem auto 0;
  padding: 0 1.5rem 2rem;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 768px) { .footer-wordmark { padding: 0 2.5rem 2.5rem; } }
.wm-text {
  display: inline-block;
  font-size: clamp(4rem, 22vw, 22rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #ffffff;
  -webkit-text-stroke: 0;
  font-feature-settings: "ss01";
}
.wm-dot {
  color: #2776EA;
  -webkit-text-stroke: 0;
}

.newsletter-text .newsletter-disclaimer { margin-top: 1rem; }


/* Services page — explicit large gap between service blocks */
.services-detail {
  gap: 4rem !important;
}
@media (min-width: 1024px) {
  .services-detail { gap: 6rem !important; }
}

/* SERVICES header CTA — match MENU button dimensions */
.header-cta-services {
  height: 2.45rem !important;
  min-width: 7rem !important;
  justify-content: center !important;
  padding: 0.3rem !important;
  box-sizing: border-box !important;
}
@media (min-width: 1024px) {
  .header-cta-services {
    height: 3.6rem !important;
    min-width: 11rem !important;
  }
}
.header-cta-services > span:first-child {
  padding: 0 1.5rem !important;
  line-height: 1 !important;
}
a[style*="background-color:#2776EA"][href$="/contact/index.html"] > span:first-child {
  text-align: center;
}


/* Portfolio marquee — typographic colored cards (replaces image cards) */
.portfolio-marquee__card {
  aspect-ratio: 16 / 10;
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.portfolio-marquee__card:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.05);
}
.portfolio-marquee__card img { display: none; }
.pmc-num {
  font-family: 'SF Mono','Menlo','Courier New',monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.pmc-info { display: flex; flex-direction: column; gap: 0.35rem; }
.pmc-name {
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.pmc-meta {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
}


/* Portfolio card with a screenshot floating on the colored panel */
.portfolio-marquee__card.pmc-with-image {
  position: relative;
  padding: 1.25rem 1.5rem;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.portfolio-marquee__card.pmc-with-image .pmc-num {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 2;
}
.portfolio-marquee__card.pmc-with-image .pmc-info {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
.portfolio-marquee__card .pmc-thumb {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 72%;
  height: 58%;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 1;
}

/* Override: hide overlays on image-bearing portfolio cards (image-only view) */
.portfolio-marquee__card.pmc-with-image .pmc-num,
.portfolio-marquee__card.pmc-with-image .pmc-info { display: none !important; }
.portfolio-marquee__card.pmc-with-image .pmc-thumb {
  width: 72% !important;
  height: 58% !important;
}


/* ───────────────────────────────────────────────────────────
   AllOne premium typography — Geist (variable sans), replaces
   Inter site-wide. Clean, minimal, brand-aligned. (2026-06-17)
   ─────────────────────────────────────────────────────────── */
@font-face{
  font-family:'Geist';
  src:url('/fonts/geist.woff2') format('woff2-variations');
  font-weight:100 900; font-style:normal; font-display:swap;
}
:root{ --font-sans:'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif !important; }
html, body,
h1,h2,h3,h4,h5,h6, p, a, span, li, ul, ol,
button, input, textarea, select, label, blockquote, figcaption,
div, strong, em, small, b {
  font-family:'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
}

/* ── Header/body hierarchy: bold black section headers, regular body ──
   (was: grey semibold headers over bold body — inverted weight). 2026-06-17 */
h1.text-allone-grey, h2.text-allone-grey {
  color: var(--color-allone-black, #0c1016) !important;
  font-weight: 700 !important;
}
.home-bullets-text { font-weight: 400 !important; }

/* ════════════ Angular + high-contrast B/W system (2026-06-17) ════════════
   - kill all rounding (aggressive/angular)
   - outlines: black on light backgrounds, white on dark — no grey
   - grey filled cards -> white with a hard black outline                    */
*, *::before, *::after { border-radius: 0 !important; }

/* default outline = brand black (most of the site is light) */
*, *::before, *::after { border-color: var(--color-allone-black, #0c1016) !important; }

/* on dark surfaces, flip outlines to white */
.bg-allone-black, .bg-allone-black *,
.bg-allone-dark-grey, .bg-allone-dark-grey *,
.allone-footer, .allone-footer * {
  border-color: var(--color-allone-white, #f0f6f8) !important;
}

/* grey filled cards -> stark white card with hard black outline */
.bg-allone-soft-grey, .wrapper {
  background-color: var(--color-allone-white, #f0f6f8) !important;
  border: 1.5px solid var(--color-allone-black, #0c1016) !important;
}
/* dark cards keep dark fill but get a crisp white outline */
.bg-allone-dark-grey {
  border: 1.5px solid var(--color-allone-white, #f0f6f8) !important;
}


/* Service cards: solid black, white text, no rectangular outline
   (keep the angular corner ticks, recoloured white). 2026-06-17 */
.services-card {
  background-color: var(--color-allone-black, #0c1016) !important;
  border: none !important;
  color: var(--color-allone-white, #f0f6f8) !important;
}
.services-card *, .services-card *::before, .services-card *::after {
  color: var(--color-allone-white, #f0f6f8) !important;
}
.services-card .card-corner {
  border-color: var(--color-allone-white, #f0f6f8) !important;
}

/* ── Headers: Space Grotesk (angular premium grotesque), body stays Geist ── */
@font-face{
  font-family:'Space Grotesk';
  src:url('/fonts/space-grotesk.woff2') format('woff2-variations');
  font-weight:400 700; font-style:normal; font-display:swap;
}
h1,h2,h3,h4,h5,h6,
.hero-anim-in-lines, .card-title, .wm-text {
  font-family:'Space Grotesk', 'Geist', system-ui, sans-serif !important;
}

/* pure white pages (token flip) + remove service-card corner ticks. 2026-06-17 */
:root, :host { --color-allone-white: #ffffff !important; }
.services-card .card-corner { display: none !important; }

/* Portfolio cards strictly alternate white / black (overrides inline colors). 2026-06-17 */
.portfolio-marquee__row > .portfolio-marquee__card:nth-child(odd) {
  background: #ffffff !important; color: #000000 !important; border: 1.5px solid #000000 !important;
}
.portfolio-marquee__row > .portfolio-marquee__card:nth-child(even) {
  background: #000000 !important; color: #ffffff !important; border: none !important;
}
.portfolio-marquee__row > .portfolio-marquee__card:nth-child(odd) * { color: #000000 !important; }
.portfolio-marquee__row > .portfolio-marquee__card:nth-child(even) * { color: #ffffff !important; }

/* newsletter "The Brief" card: drop the faint grey panel -> no fill */
.footer-newsletter { background: transparent !important; }

/* ════════ Very light blue/purple clouds in the page background ════════ */
html { background-color: #ffffff !important; }
body { background-color: transparent !important; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(24vw 17vw at 13% 16%, rgba(99,102,241,0.06), transparent 70%),
    radial-gradient(28vw 19vw at 84% 22%, rgba(168,85,247,0.05), transparent 72%),
    radial-gradient(22vw 15vw at 62% 64%, rgba(96,165,250,0.06), transparent 70%),
    radial-gradient(26vw 17vw at 32% 88%, rgba(147,112,219,0.045), transparent 72%);
  animation: alloneClouds 46s ease-in-out infinite alternate;
}
@keyframes alloneClouds { from { transform: translate3d(0,0,0); } to { transform: translate3d(2.5%, -1.8%, 0); } }

/* Wingsuit custom cursor */
html.allone-cursor-on, html.allone-cursor-on body, html.allone-cursor-on *, html.allone-cursor-on *::before, html.allone-cursor-on *::after { cursor: none !important; }
#allone-cursor { position: fixed; left: 0; top: 0; width: 26px; height: 26px; z-index: 100000; pointer-events: none; will-change: transform; transition: opacity .2s; mix-blend-mode: difference; }
#allone-cursor img { width: 100%; height: 100%; display: block; filter: brightness(0) invert(1); }
#allone-cursor-trail { position: fixed; inset: 0; z-index: 99999; pointer-events: none; mix-blend-mode: difference; }
.wind-line { position: fixed; height: 1.5px; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.7)); border-radius: 2px; transform-origin: center; animation: windFade .6s ease-out forwards; }
@keyframes windFade { from { opacity: .65; } to { opacity: 0; } }


/* Footer uses the ALLONE brand display font (matches the wordmark/headers). 2026-06-17 */
.allone-footer, .allone-footer * { font-family: 'Space Grotesk', 'Geist', system-ui, sans-serif !important; }

/* remove the dash/line before "THE BRIEF · MONTHLY" */
.newsletter-tag-line { display: none !important; }
.newsletter-tag { gap: 0 !important; }

/* Services page: blue detail cards -> plain text (no card), numbers removed */
.services-detail-card { background: transparent !important; border: none !important; min-height: 0 !important; padding: 0 !important; }
.services-detail-card h4, .services-detail-card p { color: #000000 !important; }

/* footer top logo mark -> white on the dark footer */
.footer-logo { filter: brightness(0) invert(1) !important; }

/* RE-ADD (lost to a stale fetch): footer wordmark white + landing no-cards */
.footer-wordmark .wm-logo { display: block; width: 100%; max-width: 1500px; height: auto; margin: 0 auto; filter: brightness(0) invert(1) !important; }

.services-card { background: transparent !important; border: none !important; box-shadow: none !important; color: #000000 !important; padding-left: 0 !important; padding-right: 0 !important; }
.services-card *, .services-card *::before, .services-card *::after { color: #000000 !important; }
.card-number { display: none !important; }

/* remove work-page project numberings */
.work-num { display: none !important; }



/* ═══════════ Mobile optimization (2026-06-17) ═══════════ */
@media (max-width: 1023px) {
  html, body { overflow-x: hidden !important; }
  /* section titles: the reveal transform + negative margin overlapped body text */
  .tt-sub-in { opacity: 1 !important; transform: none !important; translate: none !important;
               margin-top: 0 !important; margin-bottom: 1rem !important; }
  /* keep oversized intro/body paragraphs inside the viewport */
  p[style*="max-width"] { max-width: 100% !important; }
  /* footer newsletter aligned + full width inside its box */
  .footer-newsletter { padding: 1.5rem !important; row-gap: 1.25rem !important; }
  .newsletter-form { flex-direction: column !important; align-items: stretch !important; gap: 0.65rem !important; padding: 0.6rem 0.9rem !important; }
  .newsletter-input { padding: 0.55rem 0 !important; }
  .newsletter-submit { width: 100% !important; justify-content: center !important; padding: 0.75rem 1.2rem !important; }
  .newsletter-form { width: 100% !important; box-sizing: border-box !important; align-items: center !important; }
  .newsletter-text { align-self: stretch !important; text-align: left !important; }
}

/* ── Mobile: stop footer/hero from overflowing the viewport width ── */
@media (max-width: 1023px) {
  html, body { overflow-x: clip !important; max-width: 100vw !important; }
  .layout-wrapper { overflow-x: clip !important; max-width: 100vw !important; }
  .allone-footer, .footer-wrapper, .footer-grid, .footer-newsletter,
  .footer-brand-col, .footer-col, .footer-tagline, .newsletter-text, .newsletter-tagline {
    max-width: 100% !important; box-sizing: border-box !important; min-width: 0 !important;
  }
  .footer-tagline, .newsletter-tagline { overflow-wrap: anywhere; }
  .home-hero, .home-hero > * { max-width: 100vw !important; overflow: clip; }
}

/* Footer logos (mark + wordmark) always white on the dark footer */
.allone-footer img, .footer-wrapper img { filter: brightness(0) invert(1) !important; }

/* ── Services: hover-reveal editorial list ── */
.svc-list{display:flex;flex-direction:column;border-top:1px solid rgba(12,16,22,0.12);}
.svc-row{border-bottom:1px solid rgba(12,16,22,0.12);padding:1.4rem 0;}
.svc-row-link{display:block;color:inherit;text-decoration:none;cursor:pointer;}
.svc-head{display:flex;align-items:baseline;gap:1rem;}
.svc-num{font-family:'JetBrains Mono','SF Mono',monospace;font-size:.8rem;color:#aeb3b9;flex:0 0 auto;}
.svc-title{font-family:'Space Grotesk','Geist',system-ui,sans-serif;font-size:clamp(1.5rem,4.5vw,3.5rem);font-weight:600;line-height:1;letter-spacing:-.02em;color:#0c1016;margin:0;flex:1 1 auto;transition:color .3s ease;}
.svc-arrow{font-size:1.4rem;color:#aeb3b9;flex:0 0 auto;transition:color .3s ease,transform .35s cubic-bezier(.22,.68,0,1);}
.svc-detail{display:grid;grid-template-rows:0fr;opacity:0;overflow:hidden;transition:grid-template-rows .42s cubic-bezier(.22,.68,0,1),opacity .3s ease,margin .3s ease;}
.svc-detail-inner{overflow:hidden;min-height:0;}
.svc-line{font-size:clamp(1rem,1.6vw,1.2rem);color:#4a5560;margin:1rem 0 0;max-width:46ch;}
.svc-tags{list-style:none;margin:1.1rem 0 0;padding:0;display:flex;flex-direction:column;gap:.35rem;}
.svc-tags li{font-size:clamp(1.25rem,2.3vw,1.7rem);font-weight:600;color:#2776EA;line-height:1.2;}
@media (hover:hover) and (min-width:1024px){
.svc-row:hover .svc-title{color:#2776EA;}
.svc-row:hover .svc-arrow{color:#2776EA;transform:translate(5px,-5px);}
.svc-row:hover .svc-detail{grid-template-rows:1fr;opacity:1;margin-bottom:.8rem;}
}
@media (max-width:1023px){
.svc-detail{grid-template-rows:1fr;opacity:1;}
.svc-head{gap:.75rem;}
}

/* Two-tone overscroll: cream at the top (page), dark at the bottom (footer),
   so rubber-band scrolling past the dark footer on mobile shows dark, not white. */
html { background-color: #0c1016 !important; }


/* ---- Services page (svcp) ---- */
.svcp-hero { padding-top: 7.5rem; padding-bottom: 2rem; }
@media (min-width:900px){ .svcp-hero { padding-top: 10rem; padding-bottom: 3rem; } }
.svcp-hero-inner { max-width: 64rem; }
.svcp-eyebrow { font-family:'SF Mono','Menlo','Courier New',monospace; font-size:.8rem; letter-spacing:.22em; text-transform:uppercase; color:#2776EA; }
.svcp-headline { font-family:'Space Grotesk','Geist',system-ui,sans-serif; font-weight:600; line-height:1.02; letter-spacing:-.02em; color:#0c1016; font-size:clamp(2.4rem,7vw,5.5rem); margin-top:1.25rem; }
.svcp-intro { margin-top:1.5rem; max-width:44rem; font-size:clamp(1.05rem,1.6vw,1.35rem); line-height:1.55; color:#4a525c; }
.svcp-blocks { display:flex; flex-direction:column; gap:0; padding-top:3.5rem; padding-bottom:1rem; }
.svcp-block { display:grid; grid-template-columns:1fr; gap:2rem; align-items:center; padding:3.5rem 0; border-top:1px solid rgba(12,16,22,.1); }
.svcp-block:first-child { border-top:0; }
@media (min-width:900px){ .svcp-block { grid-template-columns:1.05fr .95fr; gap:5rem; padding:5rem 0; } }
.svcp-num { font-family:'SF Mono','Menlo','Courier New',monospace; font-size:.85rem; letter-spacing:.14em; text-transform:uppercase; color:#2776EA; }
.svcp-name { font-family:'Space Grotesk','Geist',system-ui,sans-serif; font-weight:600; letter-spacing:-.01em; color:#0c1016; font-size:clamp(1.9rem,4.5vw,3.25rem); margin-top:.6rem; line-height:1.05; }
.svcp-lead { margin-top:1.1rem; font-size:clamp(1.05rem,1.5vw,1.3rem); line-height:1.55; color:#3a424c; max-width:34rem; }
.svcp-outcome { margin-top:1.1rem; font-size:1.02rem; line-height:1.5; color:#2776EA; font-weight:500; max-width:34rem; }
.svcp-card { border:1px solid rgba(12,16,22,.12); border-radius:1.25rem; padding:2rem 2.25rem; background:rgba(255,255,255,.5); }
.svcp-card h4 { font-family:'SF Mono','Menlo','Courier New',monospace; font-size:.76rem; letter-spacing:.16em; text-transform:uppercase; color:#6b7480; margin-bottom:1.25rem; }
.svcp-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.85rem; }
.svcp-list li { position:relative; padding-left:1.5rem; font-size:clamp(1rem,1.3vw,1.15rem); line-height:1.4; color:#0c1016; }
.svcp-list li::before { content:""; position:absolute; left:0; top:.5em; width:.5rem; height:.5rem; border-radius:50%; background:#2776EA; }
.svcp-block--flip .svcp-card { order:-1; }
@media (max-width:899px){ .svcp-block--flip .svcp-card { order:0; } }
.svcp-cta-section { padding-top:4.5rem; padding-bottom:7rem; }
@media (min-width:900px){ .svcp-cta-section { padding-bottom:9rem; } }
.svcp-cta-inner { max-width:46rem; }
.svcp-cta-title { font-family:'Space Grotesk','Geist',system-ui,sans-serif; font-weight:600; letter-spacing:-.02em; color:#0c1016; font-size:clamp(2rem,5vw,3.5rem); line-height:1.05; }
.svcp-cta-sub { margin-top:1rem; font-size:clamp(1.05rem,1.5vw,1.25rem); color:#4a525c; line-height:1.5; }
.svcp-cta-btn { display:inline-flex; align-items:center; gap:.6rem; margin-top:2rem; background:#1f63c9; color:#fff; font-weight:600; font-size:1.05rem; padding:.95rem 2rem; border-radius:999px; text-decoration:none; transition:transform .4s cubic-bezier(.22,.68,0,1),background .3s; }
.svcp-cta-btn:hover { transform:scale(1.04); background:#2776EA; }


/* ---- Studio band (retro start-screen card) ---- */
.studio-band{padding-top:4.5rem;padding-bottom:6rem;}
@media (min-width:900px){.studio-band{padding-top:6.5rem;padding-bottom:8rem;}}
.studio-band-eyebrow{display:block;font-family:'SF Mono','Menlo','Courier New',monospace;font-size:.8rem;letter-spacing:.22em;text-transform:uppercase;color:#2776EA;margin-bottom:1.5rem;}
.studio-card{display:block;position:relative;overflow:hidden;border-radius:0;aspect-ratio:16/7;background:#3aa0ff;text-decoration:none;transition:transform .35s cubic-bezier(.22,.68,0,1);}
@media (max-width:640px){.studio-card{aspect-ratio:4/5;}}
.studio-card:hover{transform:scale(1.008);}
.studio-card-bg{position:absolute;inset:0;background:url('/images/studio-sky.webp') center/cover no-repeat;image-rendering:pixelated;}
.studio-card-inner{position:absolute;inset:0;z-index:1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:1.1rem;padding:1.5rem;}
.studio-card-kicker{font-family:'Space Grotesk','Geist',system-ui,sans-serif !important;font-weight:600;font-size:clamp(.85rem,1.4vw,1.1rem);color:#0c1016;letter-spacing:.05em;text-transform:uppercase;}
.studio-card-title{margin:0;max-width:14ch;font-family:'Space Grotesk','Geist',system-ui,sans-serif;font-weight:700;font-size:clamp(2rem,6.5vw,5rem);line-height:1.02;color:#fff;letter-spacing:-.01em;text-shadow:4px 4px 0 #0c1016;}
.studio-card-sub{font-family:'Space Grotesk','Geist',system-ui,sans-serif !important;font-size:clamp(1rem,1.8vw,1.4rem);font-weight:600;color:#0c1016;letter-spacing:normal;}
.studio-card-cta{font-family:'Space Grotesk','Geist',system-ui,sans-serif !important;font-size:clamp(.95rem,1.4vw,1.15rem);font-weight:600;color:#fff;background:#0c1016;padding:.8rem 1.5rem;border:2px solid #0c1016;margin-top:.6rem;transition:background .25s,border-color .25s;}
.studio-card:hover .studio-card-cta{background:#2776EA;border-color:#2776EA;}


/* ---- Get in touch (contact) page ---- */
.git{ padding-top:1rem; padding-bottom:7rem; }
.git-grid{ display:grid; grid-template-columns:1fr; gap:3rem; max-width:1100px; margin:0 auto; }
@media(min-width:900px){ .git-grid{ grid-template-columns:1fr 1.1fr; gap:5rem; align-items:start; } }
.git-lead{ font-size:clamp(1.15rem,1.8vw,1.5rem); line-height:1.5; color:#0c1016; font-weight:500; max-width:32rem; }
.git-methods{ margin-top:2.5rem; display:flex; flex-direction:column; }
.git-method{ display:flex; flex-direction:column; gap:.15rem; padding:1rem 0; border-top:1px solid rgba(12,16,22,.12); text-decoration:none; transition:opacity .2s ease; }
.git-method:last-child{ border-bottom:1px solid rgba(12,16,22,.12); }
.git-method:hover{ opacity:.55; }
.git-mlabel{ font-family:'SF Mono','Menlo','Courier New',monospace; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:#2776EA; }
.git-mvalue{ font-size:1.15rem; font-weight:600; color:#0c1016; }
.git-form{ display:flex; flex-direction:column; gap:1.1rem; background:#fff; border:1px solid rgba(12,16,22,.1); border-radius:22px; padding:2rem; box-shadow:0 1px 2px rgba(12,16,22,.04); }
.git-field{ display:flex; flex-direction:column; gap:.4rem; }
.git-field label{ font-size:.9rem; font-weight:600; color:#0c1016; }
.git-form input, .git-form textarea{ width:100%; box-sizing:border-box; border:1px solid rgba(12,16,22,.16); border-radius:12px; padding:.8rem .95rem; font-size:1rem; font-family:'Inter',system-ui,sans-serif; color:#0c1016; background:#fbfbfc; transition:border-color .15s ease,box-shadow .15s ease; }
.git-form input:focus, .git-form textarea:focus{ outline:none; border-color:#2776EA; box-shadow:0 0 0 3px rgba(39,118,234,.15); background:#fff; }
.git-form textarea{ resize:vertical; min-height:120px; line-height:1.5; }
.git-hp{ position:absolute !important; left:-9999px !important; width:1px; height:1px; opacity:0; }
.git-submit{ margin-top:.3rem; align-self:flex-start; background:#2776EA; color:#fff; border:none; border-radius:9999px; padding:.9rem 2rem; font-size:1rem; font-weight:600; font-family:'Inter',system-ui,sans-serif; cursor:pointer; transition:transform .25s cubic-bezier(.22,.68,0,1),background-color .2s ease,opacity .2s ease; }
.git-submit:hover:not(:disabled){ transform:scale(1.04); background:#1f63c9; }
.git-submit:disabled{ opacity:.6; cursor:default; }
.git-status{ font-size:.95rem; font-weight:500; margin:.2rem 0 0; min-height:1.2em; }
.git-status.ok{ color:#1f8f4e; }
.git-status.err{ color:#c0362c; }
