:root {
  color-scheme: dark;
  --navy: #080b1a;
  --navy-2: #10172f;
  --blue: #2563eb;
  --cyan: #18d7ff;
  --green: #6dfc45;
  --green-action: #6dfc45;
  --gold: #f6b73c;
  --violet: #7c3aed;
  --ink: #111827;
  --muted: #647184;
  --line: #d9e4ee;
  --soft: #eef4f7;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(8, 11, 26, 0.2);
  --radius: 8px;
}

/* YC Systems OS - brand experience layer */
.yc-brand-v2 {
  --yc-os-bg: #07111f;
  --yc-os-bg-deep: #020817;
  --yc-os-surface: rgba(8, 20, 38, 0.74);
  --yc-os-line: rgba(0, 216, 255, 0.2);
  --yc-os-line-strong: rgba(0, 216, 255, 0.46);
  --yc-os-primary: #2563eb;
  --yc-os-cyan: #00d8ff;
  --yc-os-action: #5cff5c;
  --yc-os-text: #f8fbff;
  --yc-os-muted: #a9bdd5;
  --yc-os-radius: 26px;
  --yc-os-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  color: var(--yc-os-text);
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(0, 216, 255, 0.12), transparent 30rem),
    linear-gradient(135deg, var(--yc-os-bg-deep), var(--yc-os-bg));
}

.yc-brand-v2 main {
  background:
    linear-gradient(90deg, rgba(0, 216, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 216, 255, 0.028) 1px, transparent 1px);
  background-size: 96px 96px;
}

.yc-brand-v2 .section-pad {
  border-top: 1px solid rgba(0, 216, 255, 0.09);
}

.yc-brand-v2 .section-head {
  max-width: 780px;
}

.yc-brand-v2 .section-head h2,
.yc-brand-v2 .product-hero h1,
.yc-brand-v2 .hero h1 {
  letter-spacing: 0;
  color: var(--yc-os-text);
}

.yc-brand-v2 .section-head p,
.yc-brand-v2 .hero-lede,
.yc-brand-v2 p {
  color: var(--yc-os-muted);
}

.yc-brand-v2 .eyebrow,
.yc-brand-v2 .breadcrumb {
  color: var(--yc-os-cyan);
  letter-spacing: 0.18em;
}

.yc-brand-v2 .button,
.yc-brand-v2 .project-match-grid a,
.yc-brand-v2 .pricing-note a {
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.18);
}

.yc-brand-v2 .button-primary,
.yc-brand-v2 .pricing-note a {
  background: linear-gradient(135deg, var(--yc-os-cyan), var(--yc-os-action));
  color: #03101d;
}

.yc-brand-v2 .button-secondary {
  background: rgba(8, 20, 38, 0.7);
  border-color: var(--yc-os-line-strong);
  color: var(--yc-os-text);
}

.yc-os-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.yc-os-product-card,
.yc-os-product-lane,
.yc-brand-v2 .live-client-card,
.yc-brand-v2 .package-grid article,
.yc-brand-v2 .company-core-grid article,
.yc-brand-v2 .trust-grid article,
.yc-brand-v2 .values-mini-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--yc-os-line);
  border-radius: var(--yc-os-radius);
  background:
    linear-gradient(145deg, rgba(11, 27, 50, 0.86), rgba(4, 13, 27, 0.78)),
    radial-gradient(circle at 90% 110%, rgba(0, 216, 255, 0.14), transparent 13rem);
  box-shadow: none;
}

.yc-os-product-card::after,
.yc-os-product-lane::after,
.yc-brand-v2 .live-client-card::after {
  content: "Verified by Nexus";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  border: 1px solid rgba(92, 255, 92, 0.32);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(4, 13, 27, 0.72);
  color: var(--yc-os-action);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.yc-os-product-card:hover::after,
.yc-os-product-lane:hover::after,
.yc-brand-v2 .live-client-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.yc-os-product-card {
  min-height: 520px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
}

.yc-os-product-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  filter: saturate(1.05) contrast(1.02);
}

.yc-os-card-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--yc-os-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.yc-os-product-card h3 {
  margin: 0;
  color: var(--yc-os-text);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.yc-os-product-card dl,
.yc-os-product-lane dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.yc-os-product-card dl div,
.yc-os-product-lane dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 216, 255, 0.12);
  padding-bottom: 9px;
}

.yc-os-product-card dt,
.yc-os-product-lane dt {
  color: var(--yc-os-cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.yc-os-product-card dd,
.yc-os-product-lane dd {
  margin: 0;
  color: var(--yc-os-text);
  font-weight: 800;
  text-align: right;
}

.yc-os-product-card small,
.yc-os-product-lane small {
  color: var(--yc-os-muted);
  line-height: 1.55;
}

.yc-os-product-card > strong {
  margin-top: auto;
  color: var(--yc-os-cyan);
}

.yc-os-product-card:hover,
.yc-os-product-lane:hover,
.yc-brand-v2 .live-client-card:hover {
  border-color: var(--yc-os-line-strong);
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 216, 255, 0.08);
}

.yc-os-product-stack {
  border: 1px solid var(--yc-os-line);
  border-radius: 34px;
  background: radial-gradient(circle at 50% 20%, rgba(0, 216, 255, 0.13), transparent 24rem), rgba(3, 10, 22, 0.64);
}

.yc-os-product-stack img {
  border-radius: 18px;
}

.yc-os-product-lanes {
  gap: 22px;
}

.yc-os-product-lane {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  padding: 22px;
}

.yc-os-product-lane .asset-copy {
  gap: 16px;
}

.yc-os-product-lane .asset-copy h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.yc-os-product-lane .asset-copy p {
  font-size: 1.02rem;
  max-width: 44ch;
}

.yc-os-product-lane .asset-media {
  border: 0;
  background: transparent;
}

.yc-os-product-lane .asset-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.yc-brand-v2 .live-client-card {
  padding: 16px;
}

.yc-brand-v2 .live-client-card img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.yc-brand-v2 .live-client-card p:nth-of-type(n + 2) {
  display: none;
}

.yc-brand-v2 .project-logo-mark {
  min-height: 54px;
  border-radius: 14px;
  background: rgba(248, 251, 255, 0.96);
  color: #06111f;
}

.yc-brand-v2 .project-logo-mark.antony {
  display: grid;
  place-items: center;
  line-height: 1.02;
}

.yc-brand-v2 .project-logo-mark.antony strong,
.yc-brand-v2 .project-logo-mark.antony span {
  display: block;
}

.yc-brand-v2 .project-logo-mark.antony span {
  color: var(--yc-os-primary);
  font-size: 0.74rem;
}

.yc-brand-v2 .live-client-card h3 {
  overflow-wrap: anywhere;
}

.yc-brand-v2 .package-grid-home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yc-brand-v2 .package-grid-home article {
  padding: 22px;
  min-height: auto;
}

.yc-brand-v2 .package-grid-home ul {
  display: none;
}

.yc-brand-v2 .about-brand-visual,
.yc-brand-v2 .identity-story-card,
.yc-brand-v2 .nexus-brand-panel {
  border-radius: 32px;
  border: 1px solid var(--yc-os-line);
  background:
    radial-gradient(circle at 80% 16%, rgba(0, 216, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(8, 20, 38, 0.84), rgba(3, 10, 22, 0.78));
  box-shadow: var(--yc-os-shadow);
}

.yc-brand-v2 .nexus-brand-panel {
  overflow: hidden;
}

.yc-brand-v2 .nexus-steps span::before,
.yc-brand-v2 .hero-proof span::before {
  background: var(--yc-os-action);
  box-shadow: 0 0 20px rgba(92, 255, 92, 0.48);
}

@media (max-width: 980px) {
  .yc-os-product-grid,
  .yc-brand-v2 .package-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yc-os-product-lane {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .yc-brand-v2 .site-header {
    min-height: 78px;
    padding-inline: 16px;
  }

  .yc-brand-v2 .brand-logo img {
    max-width: 132px;
    width: 132px;
    height: auto;
    object-fit: contain;
  }

  .yc-brand-v2 .nav-toggle {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .yc-os-product-grid,
  .yc-brand-v2 .package-grid-home {
    grid-template-columns: 1fr;
  }

  .yc-os-product-stack,
  .yc-brand-v2 .yc-product-stack {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 18px;
  }

  .yc-os-product-stack img,
  .yc-brand-v2 .yc-product-stack img {
    max-width: 100%;
    transform: none !important;
  }

  .yc-os-product-card {
    min-height: auto;
  }

  .yc-os-product-lane {
    padding: 16px;
  }

  .yc-os-product-lane .asset-media img {
    min-height: 220px;
  }
}

/* Nexus brand system */
.nexus-home {
  background: #f8fbff;
}

.nexus-strip {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 20%, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(135deg, #081224, #102342 58%, #0b1730);
  color: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.nexus-brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: 26px;
  padding: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 22%, rgba(24, 215, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #081224, #102342 58%, #06101f);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.22);
}

.nexus-brand-copy h2 {
  max-width: 680px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.nexus-brand-copy p {
  max-width: 650px;
  color: #d8e8f7;
  font-size: 18px;
  line-height: 1.62;
}

.nexus-steps,
.identity-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.nexus-steps span,
.identity-pill-row span {
  border: 1px solid rgba(24, 215, 255, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.nexus-brand-image {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.34));
}

.yc-identity-system {
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f3f7fb);
}

.yc-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.yc-identity-grid h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.yc-identity-grid p {
  max-width: 690px;
  color: #42536a;
  font-size: 17px;
  line-height: 1.68;
}

.identity-pill-row span {
  color: var(--navy);
  background: #ffffff;
}

.identity-story-card {
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(8, 11, 26, 0.08);
}

.identity-story-card img {
  width: min(100%, 360px);
}

.identity-story-card strong {
  border-left: 4px solid var(--blue);
  padding-left: 14px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.45;
}

.nexus-strip img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.nexus-strip h2,
.nexus-identity h2,
.nexus-guide-section h2,
.nexus-contact h2 {
  margin: 0 0 12px;
  color: #ffffff;
}

.nexus-strip p,
.nexus-identity p,
.nexus-guide-section p,
.nexus-contact p {
  color: inherit;
}

.nexus-strip .eyebrow,
.nexus-identity .eyebrow,
.nexus-guide-section .eyebrow,
.nexus-contact .eyebrow {
  color: #00c9ff;
}

.nexus-identity {
  background: #071225;
  color: #fff;
}

.nexus-identity-grid,
.nexus-guide-grid,
.nexus-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.nexus-identity-grid > img,
.nexus-guide-grid > img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(0, 201, 255, 0.22);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.nexus-identity blockquote {
  margin: 28px 0 0;
  padding: 22px;
  border-left: 3px solid #00c9ff;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #eaf4ff;
  font-weight: 700;
}

.nexus-identity blockquote span {
  display: block;
  margin-top: 10px;
  color: #00c9ff;
}

.nexus-guide-section {
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  color: var(--navy);
}

.nexus-guide-section h2 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
}

.nexus-guide-section p:not(.eyebrow) {
  max-width: 720px;
  color: #314158;
  font-size: 17px;
  line-height: 1.65;
}

.nexus-guide-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.nexus-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.nexus-process span {
  padding: 14px 12px;
  border-radius: 14px;
  background: #081224;
  color: #fff;
  border: 1px solid rgba(24, 215, 255, 0.16);
  font-weight: 800;
  text-align: center;
}

.nexus-contact {
  padding-top: 0;
}

.nexus-contact-card {
  grid-template-columns: 120px minmax(0, 1fr) auto;
  padding: 28px;
  border-radius: 20px;
  background: #081224;
  color: #fff;
  border: 1px solid rgba(0, 201, 255, 0.2);
}

.nexus-contact-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 28px;
}

@media (max-width: 760px) {
  .yc-ecosystem-visual {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 22px;
  }

  .ecosystem-logo {
    width: 180px;
  }

  .ecosystem-nexus {
    right: -58px;
    bottom: -22px;
    width: 86%;
    opacity: 0.92;
  }

  .ecosystem-products {
    width: min(270px, 100%);
    margin-top: 124px;
  }

  .ecosystem-products a {
    padding: 12px;
  }

  .ecosystem-products strong {
    font-size: 16px;
  }

  .nexus-brand-panel,
  .yc-identity-grid {
    grid-template-columns: 1fr;
  }

  .nexus-brand-panel {
    padding: 22px;
  }

  .nexus-brand-copy h2,
  .yc-identity-grid h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .nexus-brand-image {
    max-height: 320px;
  }

  .identity-story-card {
    padding: 22px;
  }

  .nexus-strip,
  .nexus-contact-card {
    grid-template-columns: 82px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .nexus-strip img,
  .nexus-contact-card img {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }

  .nexus-strip .button,
  .nexus-contact-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .nexus-identity-grid,
  .nexus-guide-grid {
    grid-template-columns: 1fr;
  }

  .nexus-guide-grid > img {
    order: 2;
  }

  .nexus-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Brand V2 consistency pass */
.yc-brand-v2 .ecosystem-logo {
  width: 170px;
  opacity: 0.14;
  top: 30px;
  left: 32px;
  filter: blur(0.1px) drop-shadow(0 0 22px rgba(0, 216, 255, 0.22));
}

.yc-brand-v2 .ecosystem-nexus {
  right: 52px;
  bottom: 32px;
  width: min(34vw, 300px);
  border-radius: 34px;
  box-shadow: 0 24px 90px rgba(0, 216, 255, 0.16);
}

.yc-brand-v2 .ecosystem-products {
  z-index: 8;
}

.yc-brand-v2 .ecosystem-products a {
  backdrop-filter: blur(16px);
}

.yc-brand-v2 :is(
  .product-assets,
  .product-buy-section,
  .ecosystem,
  .project-match,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .launch,
  .nexus-contact,
  .compact-showcase,
  .packages,
  .about-snapshot,
  .contact,
  .why-yc,
  .yc-identity-system,
  .nexus-home
) {
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 216, 255, 0.08), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(6, 16, 31, 0.98), rgba(7, 20, 39, 0.96));
}

.yc-brand-v2 :is(
  .product-assets,
  .product-buy-section,
  .ecosystem,
  .project-match,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .launch,
  .nexus-contact
) :is(h1, h2, h3, strong) {
  color: var(--yc-white);
}

.yc-brand-v2 :is(
  .product-assets,
  .product-buy-section,
  .ecosystem,
  .project-match,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .launch,
  .nexus-contact
) :is(p, li, span:not(.status-pill):not(.language-chip), small) {
  color: var(--yc-muted);
}

.yc-brand-v2 .breadcrumb {
  color: var(--yc-success);
}

.yc-brand-v2 .yc-product-stack,
.yc-brand-v2 .live-sites-mosaic {
  border: 1px solid var(--yc-border-strong);
  border-radius: var(--yc-radius-lg);
  background:
    radial-gradient(circle at 70% 18%, rgba(0, 216, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(8, 25, 47, 0.86), rgba(6, 16, 31, 0.96));
  box-shadow: var(--yc-shadow);
}

.yc-brand-v2 .live-client-card small,
.yc-brand-v2 .client-card small,
.yc-brand-v2 .asset-product-card a {
  position: relative;
  z-index: 2;
}

.yc-brand-v2 .project-logo-mark {
  border-color: rgba(0, 216, 255, 0.28);
  background: rgba(6, 16, 31, 0.74);
  color: var(--yc-white);
}

.yc-brand-v2 .contact-sales-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 216, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(8, 25, 47, 0.94), rgba(6, 16, 31, 0.98));
}

.yc-brand-v2 .project-brief-form {
  border: 1px solid var(--yc-border);
  border-radius: var(--yc-radius-lg);
  background: rgba(6, 16, 31, 0.82);
  box-shadow: var(--yc-shadow);
}

.yc-brand-v2 .project-brief-form label span {
  color: var(--yc-white);
}

.yc-brand-v2 .project-brief-form :is(input, select, textarea) {
  border: 1px solid rgba(0, 216, 255, 0.22);
  color: var(--yc-white);
  background: rgba(10, 28, 52, 0.92);
}

.yc-brand-v2 .project-brief-form :is(input, textarea)::placeholder {
  color: rgba(211, 226, 241, 0.64);
}

.yc-brand-v2 .brief-note {
  color: var(--yc-muted);
}

.yc-brand-v2 .contact-links a,
.yc-brand-v2 .contact-links span,
.yc-brand-v2 .contact-steps span,
.yc-brand-v2 .launch-grid article,
.yc-brand-v2 .nexus-contact-card {
  border: 1px solid var(--yc-border);
  background: rgba(9, 24, 45, 0.76);
  color: var(--yc-white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.yc-brand-v2 .launch-grid article p,
.yc-brand-v2 .nexus-contact-card p {
  color: var(--yc-muted);
}

@media (max-width: 760px) {
  .yc-brand-v2 .ecosystem-logo {
    width: 112px;
    top: 18px;
    left: 18px;
    opacity: 0.16;
  }

  .yc-brand-v2 .ecosystem-nexus {
    width: 50%;
    right: 18px;
    bottom: 22px;
    border-radius: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(37, 99, 235, 0.08), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(24, 215, 255, 0.08), transparent 28%),
    #f6f9fc;
  overflow-x: hidden;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(24, 215, 255, 0.16);
  background: rgba(8, 11, 26, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(166px, 38vw);
  height: 46px;
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-mark,
.card-logo,
.founder-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 34px rgba(23, 105, 255, 0.22);
}

.brand-mark {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 105, 255, 0.14);
}

.brand-mark img {
  display: block;
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
}

.brand-copy small {
  color: #aac5d7;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #dcecf6;
  font-size: 14px;
  font-weight: 600;
}

.lang-toggle {
  min-width: 38px;
  height: 34px;
  border: 1px solid rgba(24, 215, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.language-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(24, 215, 255, 0.28);
  border-radius: var(--radius);
  padding: 0 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  user-select: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.language-chip:hover,
.language-chip:focus-visible {
  border-color: rgba(24, 215, 255, 0.62);
  background: rgba(24, 215, 255, 0.16);
  outline: none;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

body:not(.lang-es) .lang-es,
body.lang-es .lang-en {
  display: none;
}

body.lang-es .lang-es {
  display: inline;
}

.main-nav a {
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 215, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(130, 247, 47, 0.16), transparent 34%),
    linear-gradient(245deg, rgba(24, 215, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #080b1a 0%, #10172f 58%, #f8fbf7 100%);
}

.hero::before,
.portfolio-showcase::before,
.product-hero::before,
.brands::before,
.contact-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(109, 252, 69, 0.08), transparent 26%),
    radial-gradient(circle at 80% 16%, rgba(24, 215, 255, 0.1), transparent 30%);
  content: "";
}

.hero .container,
.product-hero .container,
.brands .container,
.contact-panel > * {
  position: relative;
  z-index: 1;
}

.hero-grid,
.brand-grid,
.about-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero h1,
.hero p,
.product-hero h1,
.product-hero p {
  color: var(--white);
}

.hero-lede,
.product-hero .hero-lede {
  color: #c8d8e6;
}

.hero-lede {
  max-width: 690px;
  font-size: 19px;
}

.hero-actions,
.hero-proof,
.brand-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  box-shadow: 0 18px 44px rgba(24, 215, 255, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof span,
.brand-points span,
.stack-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(8, 11, 26, 0.38);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-proof span:nth-child(1) {
  border-color: rgba(24, 215, 255, 0.38);
}

.hero-proof span:nth-child(2) {
  border-color: rgba(124, 58, 237, 0.46);
}

.hero-proof span:nth-child(3) {
  border-color: rgba(130, 247, 47, 0.42);
}

.hero-proof span:nth-child(4) {
  border-color: rgba(246, 183, 60, 0.44);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin: 2px 0 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.status-pill.ready {
  color: #097a2d;
  background: rgba(130, 247, 47, 0.18);
  border: 1px solid rgba(9, 122, 45, 0.2);
}

.status-pill.pilot {
  color: #7c5d00;
  background: rgba(255, 210, 84, 0.18);
  border: 1px solid rgba(124, 93, 0, 0.2);
}

.status-pill.soon {
  color: #334155;
  background: rgba(100, 116, 139, 0.12);
  border: 1px solid rgba(100, 116, 139, 0.22);
}

.coming-soon-card {
  opacity: 0.92;
}

.compact-showcase {
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f9fc);
}

.product-card-grid,
.client-card-grid,
.values-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.client-card,
.mission-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 50px rgba(8, 11, 26, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.client-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 215, 255, 0.42);
  box-shadow: 0 24px 70px rgba(8, 11, 26, 0.12);
}

.product-card-media,
.client-card img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius);
  background: #eef4f7;
}

.client-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.live-client-card {
  position: relative;
  align-content: start;
}

.live-client-card img {
  aspect-ratio: 16 / 9;
  object-position: top center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.live-client-card::after {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(109, 252, 69, 0.18);
  content: "";
}

.product-card-media img,
.client-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-grid-2,
.media-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}

.media-grid-3 img:first-child {
  grid-row: span 2;
}

.soon-media {
  position: relative;
  filter: saturate(0.76);
}

.soon-media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(8, 11, 26, 0.42);
  font-size: 18px;
  font-weight: 950;
  content: "COMING SOON";
}

.product-card h3,
.client-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.project-logo-mark {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--navy);
  background: #ffffff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.project-logo-mark strong,
.project-logo-mark span {
  display: block;
  width: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  line-height: 1.12;
  text-transform: uppercase;
}

.project-logo-mark span {
  font-size: 11px;
  opacity: 0.78;
}

.project-logo-mark.ghost {
  color: #111827;
  background: linear-gradient(135deg, #fffbea, #ffffff);
}

.project-logo-mark.luciano {
  color: #075985;
  background: linear-gradient(135deg, #e0f7ff, #ffffff);
}

.project-logo-mark.antony {
  color: #0f172a;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
}

.project-logo-mark.lps {
  color: #1e3a8a;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.project-logo-mark.snack {
  color: #14532d;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.product-card p,
.client-card p,
.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-tags span,
.client-card span,
.client-card small {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--navy);
  background: rgba(37, 99, 235, 0.07);
  font-size: 11px;
  font-weight: 900;
}

.client-card small {
  color: #075985;
  background: rgba(24, 215, 255, 0.1);
  border-color: rgba(24, 215, 255, 0.26);
}

.about-snapshot {
  background:
    radial-gradient(circle at 12% 0%, rgba(130, 247, 47, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.about-snapshot-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.mission-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}

.values-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.values-mini-grid article {
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: #ffffff;
}

.values-mini-grid article:last-child {
  grid-column: 1 / -1;
}

.values-mini-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.values-mini-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.why-yc {
  background:
    radial-gradient(circle at 12% 0%, rgba(130, 247, 47, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4fbff);
}

.hero-visual {
  min-width: 0;
}

.identity-card,
.window-card,
.screen-card,
.about-panel,
.contact-panel,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.identity-card {
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)),
    var(--white);
  box-shadow: 0 30px 90px rgba(24, 215, 255, 0.22);
}

.yc-hero {
  padding-top: 82px;
}

.yc-ecosystem-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(230px, 1fr);
  gap: 18px;
  align-items: end;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: 26px;
  padding: 30px;
  background:
    radial-gradient(circle at 72% 24%, rgba(24, 215, 255, 0.22), transparent 28%),
    radial-gradient(circle at 22% 82%, rgba(92, 255, 92, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(8, 11, 26, 0.98));
  box-shadow: 0 34px 120px rgba(8, 11, 26, 0.36);
}

.ecosystem-logo {
  position: absolute;
  top: 26px;
  left: 28px;
  width: min(230px, 48%);
  height: auto;
  z-index: 2;
}

.ecosystem-nexus {
  position: absolute;
  right: -20px;
  bottom: -36px;
  width: min(440px, 62%);
  max-height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.45));
}

.ecosystem-products {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: min(320px, 100%);
  margin-top: 150px;
}

.ecosystem-products a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: 16px;
  padding: 14px;
  color: #ffffff;
  background: rgba(8, 17, 38, 0.76);
  backdrop-filter: blur(14px);
}

.ecosystem-products span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #071018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 950;
}

.ecosystem-products strong,
.ecosystem-products small {
  min-width: 0;
}

.ecosystem-products strong {
  font-size: 18px;
}

.ecosystem-products small {
  color: #b8cee5;
  font-weight: 800;
}

.solution-card {
  display: grid;
  gap: 16px;
}

.solution-logo {
  display: block;
  width: min(360px, 100%);
  margin: 0 auto;
}

.solution-screens {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.solution-screens img {
  display: block;
  width: 100%;
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  object-fit: cover;
  object-position: top left;
}

.solution-screens img:first-child {
  grid-row: span 2;
  min-height: 310px;
}

.mobile-investor-strip {
  display: none;
}

.identity-preview {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  object-fit: cover;
  object-position: top center;
}

.hero-project-preview {
  display: grid;
  gap: 12px;
}

.hero-project-preview img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  object-fit: cover;
  object-position: top left;
}

.preview-main {
  aspect-ratio: 16 / 9;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid img {
  aspect-ratio: 4 / 3;
}

.identity-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), #122a34);
}

.identity-meta span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-meta strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.45;
}

.identity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.identity-stats article {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f0fff6);
}

.identity-stats small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.identity-stats strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.window-card {
  overflow: hidden;
  min-height: 420px;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #a8b6c8;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 360px;
  background: var(--navy);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-sidebar b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.dashboard-sidebar span {
  width: 32px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.dashboard-main {
  padding: 28px;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 800;
}

.dashboard-topline strong {
  border-radius: 999px;
  padding: 6px 10px;
  color: #bff7d3;
  background: rgba(34, 197, 94, 0.14);
  font-size: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.metric-row article {
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.metric-row small {
  display: block;
  margin-bottom: 14px;
  color: #9fb2c9;
}

.metric-row strong {
  color: var(--white);
  font-size: 20px;
}

.pipeline-preview {
  display: grid;
  gap: 13px;
}

.pipeline-preview span {
  width: var(--w);
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green-action));
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.narrow {
  max-width: 680px;
}

.ecosystem {
  background:
    linear-gradient(180deg, #f8fbf7, #ffffff);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 340px;
  padding: 24px;
  box-shadow: 0 14px 42px rgba(9, 30, 56, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 215, 255, 0.45);
  box-shadow: 0 28px 80px rgba(8, 11, 26, 0.16);
}

.product-card.broker-card {
  border-color: rgba(24, 215, 255, 0.2);
  background: linear-gradient(180deg, #ffffff, #ecfbff);
}

.product-card.soc-card {
  border-color: rgba(124, 58, 237, 0.2);
  background: linear-gradient(180deg, #ffffff, #f4efff);
}

.product-card.clean-card {
  border-color: rgba(34, 197, 94, 0.22);
  background: linear-gradient(180deg, #ffffff, #effff5);
}

.product-card.ghost-card {
  border-color: rgba(246, 183, 60, 0.28);
  background: linear-gradient(180deg, #ffffff, #fff8e8);
}

.card-logo {
  width: 54px;
  height: 54px;
}

.card-logo.soc {
  background: linear-gradient(135deg, #101828, var(--violet));
}

.card-logo.clean {
  background: linear-gradient(135deg, #064e3b, var(--green-action));
}

.card-logo.ghost {
  background: linear-gradient(135deg, #111827, var(--gold));
}

.status,
.pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(24, 215, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.product-card p {
  font-size: 14px;
}

.product-card a {
  align-self: end;
  color: var(--blue);
  font-weight: 800;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(8, 11, 26, 0.1);
}

.case-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #eef4f7;
  object-fit: cover;
  object-position: top left;
}

.case-card div {
  display: grid;
  align-content: center;
  padding: 26px;
}

.case-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(24, 215, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.case-card p {
  font-size: 15px;
}

.case-card a {
  color: var(--blue);
  font-weight: 900;
}

.mobile-project-proof {
  display: none;
}

.contract-paths {
  background:
    linear-gradient(180deg, #f8fbf7, #ffffff);
}

.contract-grid,
.solution-paths,
.case-detail-grid,
.process-roadmap,
.solution-overview-grid,
.project-match-grid {
  display: grid;
  gap: 18px;
}

.contract-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-overview {
  background:
    radial-gradient(circle at 10% 0%, rgba(24, 215, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f9fc, #ffffff);
}

.solution-overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.project-match-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.solution-overview-grid article {
  min-height: 220px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(37, 99, 235, 0.1), transparent 44%),
    #ffffff;
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.solution-overview-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #075985;
  font-size: 12px;
  font-weight: 950;
}

.solution-overview-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
}

.solution-overview-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.58;
}

.contract-grid article,
.solution-paths article,
.case-detail-grid article,
.process-roadmap article {
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.contract-grid article {
  display: grid;
  align-content: start;
  min-height: 310px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(24, 215, 255, 0.12), transparent 42%),
    linear-gradient(180deg, #ffffff, #f6fff8);
}

.contract-grid span,
.solution-paths span,
.case-detail-grid span,
.process-roadmap span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(24, 215, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.contract-grid strong,
.solution-paths strong,
.case-detail-grid h3,
.process-roadmap strong {
  display: block;
  color: var(--navy);
}

.contract-grid strong,
.solution-paths strong,
.process-roadmap strong {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.contract-grid p,
.solution-paths p,
.process-roadmap p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.62;
}

.contract-grid a,
.case-detail-grid a {
  align-self: end;
  color: var(--blue);
  font-weight: 900;
}

.solution-paths {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-paths article {
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f3fbff);
}

.solution-paths small {
  display: inline-flex;
  width: fit-content;
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--navy);
  background: #eef4f7;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.case-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-case-list {
  display: none;
}

.case-detail-grid article {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f8fbf7);
}

.case-detail-grid img {
  display: block;
  width: 100%;
  height: 230px;
  background: #eef4f7;
  object-fit: cover;
  object-position: top left;
}

.case-detail-grid div {
  display: grid;
  align-content: start;
  padding: 24px;
}

.case-detail-grid h3 {
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.08;
}

.case-detail-grid p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.56;
}

.case-detail-grid p strong {
  color: var(--navy);
}

.deep-case-grid {
  display: grid;
  gap: 22px;
}

.deep-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(8, 11, 26, 0.1);
}

.deep-case-shot {
  display: block;
  min-height: 420px;
  background: #eef4f7;
}

.deep-case-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.deep-case-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.mobile-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mobile-case-tags span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #05728f;
  background: rgba(24, 215, 255, 0.16);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.deep-case-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.05;
}

.deep-case-body p {
  margin: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 12px;
  color: #26354a;
  font-size: 15px;
  line-height: 1.58;
}

.deep-case-body p:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.deep-case-body strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  font-weight: 950;
}

.project-match {
  background:
    radial-gradient(circle at 85% 0%, rgba(109, 252, 69, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff, #eef5fb);
}

.project-match-grid a {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  color: #071018;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 16px 42px rgba(37, 99, 235, 0.16);
  font-weight: 900;
  text-align: center;
}

.project-tech-note {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #ffffff;
}

.project-tech-note span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.project-tech-note a {
  color: var(--blue);
  font-weight: 900;
}

.business-section,
.documents-section,
.legal-page {
  background: #f8fbf7;
}

.business-grid,
.documents-grid {
  display: grid;
  gap: 18px;
}

.business-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.business-grid article,
.documents-grid article,
.legal-card {
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.business-grid article,
.documents-grid article {
  padding: 24px;
}

.business-grid span,
.documents-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.business-grid strong,
.documents-grid h2,
.legal-card h2 {
  display: block;
  color: var(--navy);
  line-height: 1.15;
}

.business-grid strong {
  margin-bottom: 12px;
  font-size: 21px;
}

.business-grid p,
.documents-grid p,
.legal-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.business-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.12), transparent 44%),
    var(--navy);
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.business-panel h2 {
  color: var(--white);
}

.business-panel p {
  color: #cbd5e1;
}

.business-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.business-checks span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.legal-layout h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(44px, 8vw, 78px);
  line-height: 0.96;
}

.legal-layout > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.legal-card {
  padding: 30px;
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal-card p {
  margin: 0 0 24px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.documents-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.documents-grid article:first-child {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.12), transparent 45%),
    #ffffff;
}

.documents-grid h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.documents-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.documents-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--navy);
  background: #f8fbf7;
  font-size: 14px;
  font-weight: 800;
}

.concept-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: inherit;
}

.concept-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid rgba(24, 215, 255, 0.38);
  border-radius: var(--radius);
  padding: 8px 15px 8px 9px;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  box-shadow: 0 20px 48px rgba(8, 11, 26, 0.28);
  cursor: pointer;
}

.concept-chat-launcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.concept-chat-launcher strong {
  font-size: 15px;
  font-weight: 900;
}

.concept-chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  overflow: hidden;
  width: min(360px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  border: 1px solid rgba(24, 215, 255, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(8, 11, 26, 0.34);
}

.concept-chat.is-open .concept-chat-panel {
  display: block;
}

.concept-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.16), transparent 38%),
    var(--navy);
}

.concept-chat-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-chat-head strong {
  font-size: 19px;
  line-height: 1.15;
}

.concept-chat-head button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.concept-chat-body {
  display: grid;
  gap: 14px;
  max-height: min(620px, calc(100vh - 170px));
  overflow: auto;
  padding: 18px;
}

.chat-message {
  border-radius: var(--radius);
  padding: 12px 13px;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.chat-message-yc {
  color: #dcecf6;
  background: #10172f;
}

.chat-question {
  display: grid;
  gap: 6px;
}

.chat-question span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.chat-question strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.chat-options {
  display: grid;
  gap: 8px;
}

.chat-options button,
.chat-actions a,
.chat-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--navy);
  background: #f8fbf7;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.chat-options button:hover,
.chat-actions a:hover {
  border-color: rgba(24, 215, 255, 0.5);
  background: rgba(24, 215, 255, 0.12);
}

.chat-field {
  display: grid;
  gap: 8px;
}

.chat-field span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.chat-field textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.chat-primary {
  border-color: transparent;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
}

.chat-summary {
  overflow: auto;
  max-height: 220px;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  color: #203047;
  background: #f8fbf7;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.chat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-identity-card {
  align-content: center;
  min-height: 420px;
}

.about-founder-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.2);
  border-radius: var(--radius);
  background: #07111f;
  box-shadow: var(--shadow);
}

.about-founder-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 30, 0.02), rgba(5, 13, 30, 0.78)),
    linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent 45%);
  pointer-events: none;
}

.about-founder-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.about-founder-visual > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(5, 13, 30, 0.72);
  backdrop-filter: blur(12px);
}

.about-founder-visual span {
  color: var(--neon);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-founder-visual strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.28;
}

.about-company {
  background: #ffffff;
}

.about-company-grid,
.trust-grid,
.proof-grid,
.package-grid,
.project-brief-form {
  display: grid;
  gap: 18px;
}

.about-company-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: start;
}

.about-company-grid p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.founder-panel,
.trust-grid article,
.proof-grid article,
.package-grid article,
.project-brief-form {
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.founder-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.14), transparent 42%),
    #ffffff;
}

.founder-profile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 60% center;
}

.founder-panel span,
.trust-grid span,
.package-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-panel strong {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.08;
}

.founder-panel p {
  margin: 0;
  font-size: 15px;
}

.founder-panel a,
.package-grid a {
  color: var(--blue);
  font-weight: 900;
}

.trust-section,
.packages {
  background:
    linear-gradient(180deg, #f8fbf7, #ffffff);
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article,
.package-grid article {
  min-height: 260px;
  padding: 22px;
}

.trust-grid strong,
.package-grid strong,
.proof-grid strong {
  display: block;
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.16;
}

.trust-grid p,
.package-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.proof-section {
  background: #eef4f7;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  min-height: 150px;
  padding: 22px;
}

.proof-grid span {
  color: var(--muted);
  line-height: 1.58;
}

.package-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.package-grid-home {
  align-items: stretch;
}

.package-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.package-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.package-grid-home article {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 52%),
    #ffffff;
}

.package-grid-home article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(0, 216, 255, 0.12);
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(14, 40, 74, 0.94));
  color: #ffffff;
  box-shadow: 0 18px 54px rgba(8, 11, 26, 0.16);
}

.pricing-note strong {
  color: var(--cyan);
  white-space: nowrap;
}

.pricing-note span {
  flex: 1;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.pricing-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-weight: 950;
}

.pricing-note a:hover {
  transform: translateY(-2px);
}


.contact-sales-panel {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.95fr);
}

.contact-mini-links {
  margin-top: 20px;
}

.contact-mini-links a,
.contact-mini-links span {
  min-height: 48px;
  padding: 12px 14px;
}

.project-brief-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
}

.project-brief-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.project-brief-form label span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.project-brief-form input,
.project-brief-form select,
.project-brief-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 14px;
}

.project-brief-form textarea {
  min-height: 116px;
  resize: vertical;
}

.brief-full {
  grid-column: 1 / -1;
}

.brief-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.contact-steps span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.contact-request-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-roadmap {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-roadmap article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(130, 247, 47, 0.1), transparent 40%),
    linear-gradient(180deg, #ffffff, #f5fbff);
}

.products,
.technology {
  background:
    linear-gradient(180deg, #eef4f7, #f8fbf7);
}

.showcase-band {
  padding: 72px 0;
  background:
    linear-gradient(180deg, #f8fbf7 0%, #eef4f7 100%);
}

.portfolio-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.2fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: var(--radius);
  padding: 54px 46px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(130, 247, 47, 0.2), transparent 34%),
    linear-gradient(245deg, rgba(24, 215, 255, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%),
    #0a1830;
  box-shadow:
    0 32px 95px rgba(8, 11, 26, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.portfolio-showcase::before {
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22));
}

.portfolio-showcase::after {
  position: absolute;
  right: -18%;
  bottom: -48%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 215, 255, 0.28), transparent 62%);
  content: "";
}

.showcase-copy,
.desktop-mockup {
  position: relative;
  z-index: 1;
}

.showcase-copy {
  display: grid;
  justify-items: start;
}

.showcase-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  box-shadow: 0 22px 60px rgba(24, 215, 255, 0.34);
  font-size: 42px;
  font-weight: 900;
}

.showcase-copy h2 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.showcase-copy p {
  max-width: 520px;
  color: #c8d8e6;
}

.showcase-copy .button {
  margin-top: 18px;
}

.desktop-mockup {
  align-self: end;
  perspective: 900px;
}

.mockup-screen {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 18px solid #080b1a;
  border-radius: 22px;
  background: #f8fbf7;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  transform: rotateY(-5deg) rotateX(2deg);
}

.mockup-screen::before {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  content: "";
  transform: translateX(-50%);
}

.mockup-screen img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top left;
}

.mockup-base {
  width: 30%;
  height: 82px;
  margin: 0 auto;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.32) 50%, transparent 88%),
    linear-gradient(180deg, #c8d8e6, #718096);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  opacity: 0.94;
}

.ownership {
  background: #ffffff;
}

.ownership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
}

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

.ownership-pillars article {
  min-height: 220px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f4fbf8);
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.ownership-pillars span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.ownership-pillars strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.ownership-pillars p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.services {
  background:
    linear-gradient(180deg, #f8fbf7, #ffffff);
}

.service-identity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 46px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(100deg, rgba(37, 99, 235, 0.08), transparent 44%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 18px 52px rgba(8, 11, 26, 0.08);
}

.service-identity img {
  display: block;
  width: min(420px, 100%);
  margin-bottom: 14px;
}

.service-identity p {
  max-width: 700px;
  margin-bottom: 0;
}

.service-identity > span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--navy);
  background: #ffffff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(9, 30, 56, 0.06);
}

.delivery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -14px 0 24px;
}

.delivery-strip span {
  min-height: 58px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff, #f3fff6);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 32px rgba(9, 30, 56, 0.06);
}

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

.services-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(24, 215, 255, 0.2);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 248, 0.96));
  box-shadow: 0 18px 52px rgba(8, 11, 26, 0.08);
}

.service-offers article {
  display: grid;
  align-content: start;
  min-height: 370px;
  background:
    linear-gradient(145deg, rgba(24, 215, 255, 0.13), transparent 38%),
    linear-gradient(180deg, #ffffff, #f7fffb);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-offers article:first-child,
.service-offers article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #ffffff, #f2fff7);
}

.service-offers article:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 215, 255, 0.44);
  box-shadow: 0 24px 64px rgba(8, 11, 26, 0.13);
}

.services-grid article::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  content: "";
}

.services-grid article > img {
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 22px rgba(37, 99, 235, 0.16));
}

.services-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.services-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
}

.services-grid p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.62;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
}

.offer-points small {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(24, 215, 255, 0.2);
  border-radius: 999px;
  padding: 8px 10px;
  color: #05728f;
  background: rgba(24, 215, 255, 0.12);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.service-offers article > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  border-radius: var(--radius);
  padding: 10px 13px;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(24, 215, 255, 0.18);
}

.signature-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: var(--radius);
  padding: 22px 26px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(24, 215, 255, 0.26), transparent 34%),
    linear-gradient(180deg, #10172f, #080b1a);
  box-shadow: 0 18px 54px rgba(8, 11, 26, 0.18);
}

.signature-strip img {
  display: block;
  width: min(260px, 100%);
}

.signature-strip div {
  display: grid;
  gap: 8px;
}

.signature-strip strong {
  display: block;
  font-size: 20px;
}

.signature-strip span {
  display: block;
  max-width: 500px;
  color: #c8d8e6;
  font-weight: 650;
}

.brand-system {
  background: #ffffff;
}

.brand-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.brand-system-copy {
  max-width: 620px;
}

.section-lockup {
  display: block;
  width: min(360px, 100%);
  margin-bottom: 28px;
}

.brand-swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.brand-swatches span {
  display: grid;
  gap: 8px;
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(90deg, var(--swatch) 0 10px, #ffffff 10px);
  box-shadow: 0 12px 32px rgba(9, 30, 56, 0.06);
}

.brand-swatches strong {
  color: var(--navy);
  font-size: 16px;
}

.brand-swatches small {
  color: var(--muted);
  font-weight: 800;
}

.brand-board {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(8, 11, 26, 0.12);
}

.brand-board img {
  display: block;
  width: 100%;
  height: auto;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.product-detail.product-broker {
  --product-accent: var(--blue);
  --product-soft: rgba(24, 215, 255, 0.12);
}

.product-detail.product-soc {
  --product-accent: var(--violet);
  --product-soft: rgba(124, 58, 237, 0.12);
}

.product-detail.product-clean {
  --product-accent: var(--green-action);
  --product-soft: rgba(130, 247, 47, 0.14);
}

.product-detail.flip .detail-copy {
  order: 2;
}

.detail-copy {
  max-width: 540px;
}

.product-detail .pill {
  color: var(--product-accent);
  background: var(--product-soft);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #314258;
  font-weight: 650;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--product-accent), var(--green-action));
  content: "";
}

.screen-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(9, 30, 56, 0.12);
}

.image-screen {
  padding: 0;
  background: var(--navy);
  box-shadow: 0 30px 90px rgba(8, 11, 26, 0.22);
}

.image-screen::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 26, 0.76));
  content: "";
}

.image-screen img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top left;
}

.screen-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(8, 11, 26, 0.74);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.crm-screen {
  background: linear-gradient(135deg, #ffffff, #eaf2ff);
}

.screen-nav {
  height: 54px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
}

.screen-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kanban-col {
  min-height: 230px;
  border-radius: var(--radius);
  background:
    linear-gradient(#ffffff 0 0) padding-box,
    linear-gradient(180deg, rgba(23, 105, 255, 0.4), rgba(219, 228, 239, 0.7)) border-box;
  border: 1px solid transparent;
}

.kanban-col::before,
.kanban-col::after {
  display: block;
  height: 42px;
  margin: 14px;
  border-radius: var(--radius);
  background: #eef4fb;
  content: "";
}

.kanban-col::after {
  height: 74px;
  background: #dfeafd;
}

.ops-screen {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
  background: var(--navy);
}

.ops-map {
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 22% 30%, var(--blue) 0 7px, transparent 8px),
    radial-gradient(circle at 74% 54%, #22c55e 0 7px, transparent 8px),
    radial-gradient(circle at 48% 72%, #f59e0b 0 7px, transparent 8px);
  background-size:
    34px 34px,
    34px 34px,
    auto,
    auto,
    auto;
}

.ops-stats {
  display: grid;
  gap: 14px;
}

.ops-stats span {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.clean-screen {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #effdf9);
}

.mobile-app {
  width: 160px;
  height: 310px;
  margin: auto;
  border: 10px solid var(--navy);
  border-radius: 30px;
  background:
    linear-gradient(#ffffff 0 0) padding-box,
    linear-gradient(180deg, #ccfbf1, #dbeafe);
}

.mobile-app::before {
  display: block;
  width: 70px;
  height: 8px;
  margin: 16px auto 28px;
  border-radius: 999px;
  background: #d4dee9;
  content: "";
}

.mobile-app::after {
  display: block;
  width: 102px;
  height: 172px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #14b8a6, #1769ff);
  content: "";
}

.route-panel {
  display: grid;
  gap: 16px;
}

.route-panel span {
  height: 74px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.1);
}

.brands {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(246, 183, 60, 0.16), transparent 34%),
    linear-gradient(250deg, rgba(124, 58, 237, 0.24), transparent 42%),
    linear-gradient(90deg, #080b1a, #10172f);
}

.brands h1,
.brands h2,
.brands h3 {
  color: var(--white);
}

.brands p {
  color: #bdd0e4;
}

.brand-tagline {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.brand-points span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.client-case-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 0;
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.client-case-badge strong {
  color: var(--blue);
}

.client-case-badge small {
  grid-column: 1 / -1;
  color: #bdd0e4;
  font-weight: 700;
}

.live-store-showcase {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.32);
  border-radius: var(--radius);
  background: #050505;
  box-shadow:
    0 34px 100px rgba(8, 11, 26, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.live-store-showcase img {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: top left;
  transition: transform 220ms ease;
}

.live-store-showcase:hover img {
  transform: scale(1.025);
}

.live-store-showcase span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(24, 215, 255, 0.28);
}

.trust-signals {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.trust-signals span {
  display: grid;
  gap: 5px;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.trust-signals strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.2;
}

.trust-signals small {
  color: #bcd0e6;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.apparel-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  min-height: 440px;
}

.apparel-showcase article {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(135deg, #f8fafc, #1f2937);
  background-position: center;
  background-size: cover;
}

.apparel-showcase article:nth-child(2) {
  min-height: 400px;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(135deg, #1769ff, #071526);
}

.apparel-showcase article:nth-child(3) {
  min-height: 360px;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(135deg, #64748b, #111827);
}

.apparel-images article {
  background-blend-mode: normal;
}

.launch {
  background: var(--white);
}

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

.launch-grid.contact-request-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launch-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fbef);
  box-shadow: 0 14px 40px rgba(8, 11, 26, 0.08);
}

.launch-grid span {
  display: block;
  margin-bottom: 14px;
  color: #0f8fb0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

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

.process-grid article {
  min-height: 230px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  box-shadow: 0 14px 40px rgba(8, 11, 26, 0.08);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  font-size: 13px;
  font-weight: 900;
}

.process-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.62;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(109, 252, 69, 0.16), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(24, 215, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #080b1a 0%, #10172f 70%, #eef5fb 100%);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.about-hero h1,
.projects-page .product-hero h1 {
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.02;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green-action);
  font-weight: 800;
}

.product-page-shot {
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.32);
  border-radius: var(--radius);
  background: #071018;
  box-shadow:
    0 34px 100px rgba(8, 11, 26, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.product-page-shot img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top left;
}

.live-sites-shot img {
  min-height: 420px;
  filter: saturate(1.04) contrast(1.03);
}

.process-preview {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(24, 215, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #071018;
  box-shadow:
    0 34px 100px rgba(8, 11, 26, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.process-preview article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.process-preview span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--green-action));
  font-size: 13px;
  font-weight: 900;
}

.process-preview strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 21px;
}

.process-preview p {
  margin: 0;
  color: #c8d8e6;
  font-size: 14px;
  line-height: 1.55;
}

.process-note {
  border: 1px solid rgba(130, 247, 47, 0.24);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--white);
  background: rgba(130, 247, 47, 0.1);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
}

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

.product-meta-grid article {
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #f3fff6);
  box-shadow: 0 16px 45px rgba(8, 11, 26, 0.08);
}

.product-meta-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-meta-grid strong {
  color: var(--navy);
  line-height: 1.4;
}

.product-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.product-status-strip article,
.product-detail-grid article,
.product-buy-grid article,
.business-product-map article {
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.product-status-strip article {
  min-height: 148px;
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(24, 215, 255, 0.12), transparent 42%),
    #ffffff;
}

.product-status-strip span,
.product-detail-grid span,
.product-buy-grid span,
.business-product-map span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-status-strip strong,
.product-detail-grid h3,
.product-buy-grid strong,
.business-product-map strong {
  display: block;
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.16;
}

.product-status-strip strong,
.product-buy-grid strong,
.business-product-map strong {
  font-size: 20px;
}

.product-status-strip p,
.product-detail-grid p,
.product-buy-grid p,
.business-product-map p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.product-story-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.product-story-head h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.product-story-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.product-detail-grid,
.product-buy-grid,
.business-product-map {
  display: grid;
  gap: 16px;
}

.product-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.product-detail-grid article,
.product-buy-grid article,
.business-product-map article {
  padding: 22px;
}

.product-detail-grid h3 {
  font-size: 21px;
}

.product-page-cta,
.product-buy-panel,
.business-investor-panel {
  display: grid;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(24, 215, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 215, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #ffffff, #f6fff8);
  box-shadow: 0 18px 54px rgba(8, 11, 26, 0.1);
}

.product-page-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
  padding: 22px;
}

.product-page-cta strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.product-buy-section {
  background: linear-gradient(180deg, #ffffff, #eef4f7);
}

.product-buy-panel,
.business-investor-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding: 30px;
}

.product-buy-panel h2,
.business-investor-panel h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
}

.product-buy-panel p,
.business-investor-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.product-buy-grid,
.business-product-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-product-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.light-checks span {
  color: var(--navy);
  border-color: rgba(24, 215, 255, 0.2);
  background: #ffffff;
}

.apparel-showcase span {
  color: var(--white);
  font-weight: 800;
}

.ghost-product-strip {
  padding: 44px 0 72px;
  background:
    linear-gradient(180deg, #080b1a, #eef4f7 74%);
}

.strip-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.strip-head h2 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 42px);
}

.ghost-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ghost-strip-grid article {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(8, 11, 26, 0.78) 100%),
    #10172f;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 62px rgba(8, 11, 26, 0.18);
}

.ghost-strip-grid article:nth-child(3) {
  background-position: top left;
}

.ghost-strip-grid span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.ghost-strip-grid strong,
.ghost-strip-grid p,
.ghost-strip-grid a {
  position: relative;
  z-index: 1;
}

.ghost-strip-grid strong {
  max-width: 180px;
  font-size: 18px;
  line-height: 1.16;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.ghost-strip-grid p {
  margin: 12px 0 18px;
  color: #dcecf6;
  font-size: 14px;
}

.ghost-strip-grid a {
  color: var(--blue);
  font-weight: 900;
}

.ghost-real-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ghost-real-products > a,
.ghost-real-products > article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, #10172f, #080b1a);
  box-shadow: 0 22px 62px rgba(8, 11, 26, 0.18);
}

.ghost-real-products > a {
  display: grid;
}

.ghost-real-products img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.ghost-real-products > a span,
.ghost-real-products > a strong {
  display: block;
  padding-inline: 16px;
}

.ghost-real-products > a span {
  padding-top: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ghost-real-products > a strong {
  padding-top: 8px;
  padding-bottom: 18px;
  font-size: 16px;
  line-height: 1.22;
}

.ghost-real-products .ghost-commerce-card {
  display: grid;
  align-content: center;
  min-height: 250px;
  padding: 22px;
}

.ghost-commerce-card {
  background:
    linear-gradient(145deg, rgba(24, 215, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #10172f, #080b1a) !important;
}

.case-build {
  background: #eef4f7;
}

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

.case-build-grid article {
  min-height: 220px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 16px 42px rgba(8, 11, 26, 0.07);
}

.case-build-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.case-build-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.14;
}

.case-build-grid p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.62;
}

.about-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  box-shadow: 0 16px 46px rgba(9, 30, 56, 0.1);
}

.about-panel article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-avatar {
  width: 58px;
  height: 58px;
}

.founder-card p {
  margin-bottom: 0;
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stack-grid span {
  min-height: 54px;
  padding: 16px 18px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(9, 30, 56, 0.07);
}

.contact {
  background: var(--white);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  padding: 44px;
  background:
    linear-gradient(120deg, rgba(130, 247, 47, 0.16), transparent 38%),
    linear-gradient(250deg, rgba(24, 215, 255, 0.18), transparent 42%),
    var(--navy);
}

.contact-panel h1,
.contact-panel h2 {
  color: var(--white);
}

.contact-panel h1 {
  max-width: 640px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.contact-panel p {
  color: #bfd0e5;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-links a,
.contact-links span {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.contact-links a:first-child {
  grid-column: 1 / -1;
}

.contact-links a:last-child {
  grid-column: 1 / -1;
}

.contact-links span {
  opacity: 0.72;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: #f8fbf7;
}

.footer-map {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 20px;
}

.footer-map div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-map strong {
  color: var(--navy);
  font-size: 15px;
}

.footer-map p,
.footer-map span,
.footer-map a {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-map a:hover {
  color: var(--blue);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-legal {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .product-card-grid,
  .client-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-identity {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .brand-grid,
  .brand-system-grid,
  .ownership-grid,
  .about-grid,
  .about-company-grid,
  .contact-panel,
  .business-panel,
  .legal-layout,
  .product-detail,
  .product-detail.flip {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-grid,
  .documents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail.flip .detail-copy {
    order: 0;
  }

  .deep-case-card {
    grid-template-columns: 1fr;
  }

  .deep-case-shot {
    min-height: 320px;
  }

  .detail-copy {
    max-width: none;
  }

  .portfolio-showcase {
    gap: 34px;
  }

  .signature-strip {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 760px) {
  .product-card-grid,
  .client-card-grid,
  .values-mini-grid {
    grid-template-columns: 1fr;
  }

  .values-mini-grid article:last-child {
    grid-column: auto;
  }

  .product-card,
  .client-card,
  .mission-card {
    padding: 14px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-grid-home article {
    min-height: 0;
  }

  .pricing-note {
    padding: 16px;
  }

  .pricing-note strong {
    white-space: normal;
  }

  .product-card h3,
  .client-card h3 {
    font-size: 20px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .container {
    width: min(100%, 1180px);
    max-width: calc(100% - 32px);
    margin-inline: auto;
  }

  .section-pad {
    padding: 58px 0;
  }

  .showcase-band {
    padding: 42px 0;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 58px;
    height: 46px;
  }

  .brand-logo img {
    content: url("./assets/brand/yc-logo-mark-white.png");
    object-position: left center;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 64px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    color: var(--white);
    background: rgba(8, 11, 26, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .language-chip {
    justify-content: flex-start;
    margin-top: 6px;
    padding: 12px 14px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 38px;
  }

  .yc-hero .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .hero-grid,
  .hero-copy,
  .product-hero-grid > div {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy,
  .product-hero-grid > div:first-child {
    max-width: min(100%, 340px);
  }

  .yc-hero .hero-copy {
    width: min(100%, 340px);
    max-width: calc(100vw - 32px);
    margin-inline: 0;
  }

  .hero-actions,
  .hero-proof,
  .mobile-investor-strip,
  .mobile-project-proof {
    max-width: 340px;
  }

  .section-head,
  .contact-panel > div,
  .contact-links {
    max-width: 340px;
    min-width: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 22px 0 18px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof span {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 10px;
    color: #ffffff;
    background: rgba(16, 23, 47, 0.72);
    text-align: center;
  }

  .mobile-investor-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .mobile-investor-strip article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-height: 78px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-investor-strip strong,
  .mobile-investor-strip span {
    display: block;
  }

  .mobile-investor-strip strong {
    color: var(--white);
    font-size: 18px;
    line-height: 1.1;
  }

  .mobile-investor-strip span {
    margin-top: 0;
    color: #c8d8e6;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
  }

  .hero-visual {
    display: block;
    margin-top: 24px;
  }

  .solution-card {
    padding: 12px;
  }

  .identity-card,
  .about-identity-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .solution-logo {
    width: min(220px, 72vw);
  }

  .solution-card .identity-meta {
    margin: 12px 0 0;
    padding: 14px;
  }

  .solution-card .identity-meta strong {
    font-size: 14px;
  }

  .identity-meta strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .about-identity-card .identity-meta {
    width: 100%;
    max-width: 100%;
  }

  .about-identity-card .identity-meta strong {
    display: block;
    max-width: 260px;
    font-size: 16px;
    line-height: 1.38;
  }

  .solution-screens {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .solution-screens img,
  .solution-screens img:first-child {
    grid-row: auto;
    min-height: 92px;
    aspect-ratio: 1 / 1;
  }

  .service-identity {
    padding: 20px;
  }

  .window-card {
    min-height: 340px;
  }

  .dashboard-shell {
    grid-template-columns: 56px 1fr;
    min-height: 300px;
  }

  .dashboard-main {
    padding: 18px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row article {
    min-height: 72px;
  }

  .ecosystem-grid,
  .services-grid,
  .contract-grid,
  .product-status-strip,
  .product-detail-grid,
  .product-buy-grid,
  .business-product-map,
  .solution-paths,
  .trust-grid,
  .proof-grid,
  .package-grid,
  .solution-overview-grid,
  .project-match-grid,
  .business-grid,
  .business-checks,
  .documents-grid,
  .case-detail-grid,
  .process-roadmap,
  .delivery-strip,
  .case-grid,
  .case-build-grid,
  .brand-swatches,
  .ghost-strip-grid,
  .ghost-real-products,
  .trust-signals,
  .launch-grid,
  .product-meta-grid,
  .ownership-pillars,
  .screen-content,
  .ops-screen,
  .clean-screen,
  .apparel-showcase,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .case-card,
  .solution-screens,
  .process-grid {
    grid-template-columns: 1fr;
  }

  main:not(.projects-page) .case-grid {
    gap: 12px;
  }

  main:not(.projects-page) .case-grid .case-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 172px;
  }

  main:not(.projects-page) .case-grid .case-card img {
    width: 100%;
    height: 100%;
    min-height: 172px;
    object-fit: cover;
    object-position: top center;
  }

  main:not(.projects-page) .case-grid .case-card div {
    min-width: 0;
    padding: 16px;
  }

  main:not(.projects-page) .case-grid .case-card span {
    margin-bottom: 8px;
    padding: 6px 8px;
    font-size: 10px;
  }

  main:not(.projects-page) .case-grid .case-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 1.05;
  }

  main:not(.projects-page) .case-grid .case-card p {
    display: -webkit-box;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.42;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  main:not(.projects-page) .case-grid .case-card a {
    font-size: 13px;
  }

  .launch-grid.contact-request-grid {
    grid-template-columns: 1fr;
  }

  .project-brief-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .project-brief-form label,
  .project-brief-form input,
  .project-brief-form select,
  .project-brief-form textarea {
    min-width: 0;
    max-width: 100%;
  }

  .documents-grid article:first-child {
    grid-column: auto;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-layout h1 {
    font-size: 44px;
  }

  .brief-full {
    grid-column: auto;
  }

  .case-card img,
  .solution-screens img:first-child,
  .solution-screens img,
  .live-store-showcase img {
    min-height: 220px;
  }

  .portfolio-showcase {
    min-height: auto;
    margin: 28px 0 42px;
    padding: 28px;
  }

  .showcase-mark {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
    border-radius: var(--radius);
    font-size: 30px;
  }

  .showcase-copy h2 {
    font-size: 31px;
    line-height: 1.05;
  }

  .mockup-screen {
    min-height: 260px;
    border-width: 10px;
    border-radius: 16px;
    transform: none;
  }

  .mockup-screen img {
    height: 260px;
  }

  .mockup-base {
    height: 48px;
    width: 42%;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .projects-page .product-hero {
    padding: 42px 0 36px;
  }

  .projects-page .hero-lede {
    max-width: 31ch;
  }

  .projects-page .product-page-shot {
    display: none;
  }

  .mobile-project-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 18px 0 22px;
  }

  .mobile-project-proof span {
    border: 1px solid rgba(24, 215, 255, 0.24);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 900;
  }

  .projects-page .case-grid {
    gap: 14px;
  }

  .projects-page .case-card {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .projects-page .case-card img {
    height: 138px;
    min-height: 138px;
    object-position: top center;
  }

  .projects-page .case-card div {
    min-width: 0;
    padding: 17px;
  }

  .projects-page .case-card span {
    margin-bottom: 9px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .projects-page .case-card h3 {
    font-size: 21px;
    line-height: 1.05;
  }

  .projects-page .case-card p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }

  .projects-page .case-card a {
    margin-top: 2px;
    font-size: 14px;
  }

  .contract-grid article,
  .solution-overview-grid article,
  .solution-paths article,
  .process-roadmap article,
  .business-grid article,
  .documents-grid article,
  .trust-grid article,
  .proof-grid article,
  .package-grid article {
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .solution-overview-grid strong,
  .solution-overview-grid p,
  .project-match-grid a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .project-match-grid a {
    min-height: 60px;
  }

  .project-tech-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .deep-case-grid {
    gap: 18px;
    max-width: 360px;
    margin: 0 auto;
  }

  .deep-case-card {
    display: block;
    overflow: hidden;
    border-color: rgba(15, 23, 42, 0.16);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(8, 11, 26, 0.14);
  }

  .deep-case-shot {
    min-height: 0;
    height: 150px;
  }

  .deep-case-body {
    gap: 10px;
    padding: 18px;
  }

  .deep-case-body h3 {
    font-size: 23px;
    line-height: 1.08;
  }

  .deep-case-body p {
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.42;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .deep-case-body p:first-of-type {
    -webkit-line-clamp: 3;
  }

  .deep-case-body p:nth-of-type(3) {
    display: none;
  }

  .deep-case-body strong {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .mobile-case-tags {
    gap: 6px;
  }

  .mobile-case-tags span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .case-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .case-detail-grid img {
    height: 150px;
  }

  .projects-page .case-detail-grid {
    gap: 18px;
    max-width: 340px;
    margin-inline: auto;
  }

  .projects-page .case-detail-grid article {
    display: block;
    position: relative;
    overflow: hidden;
    border-color: rgba(15, 23, 42, 0.16);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(8, 11, 26, 0.14);
  }

  .projects-page .case-detail-grid img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 176px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    background: #eef4f7;
    object-fit: cover;
    object-position: top center;
  }

  .case-detail-grid div {
    padding: 18px;
  }

  .projects-page .case-detail-grid div {
    display: block;
    position: relative;
    z-index: 2;
    gap: 8px;
    margin: 0;
    padding: 20px;
    color: #050816;
    background: #ffffff;
  }

  .case-detail-grid h3 {
    font-size: 22px;
  }

  .projects-page .case-detail-grid h3 {
    margin-bottom: 4px;
    color: #050816;
    font-size: 24px;
    line-height: 1.08;
  }

  .case-detail-grid p {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .projects-page .case-detail-grid p {
    margin: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 10px;
    color: #26354a;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .projects-page .case-detail-grid p:first-of-type {
    border-top: 0;
    padding-top: 0;
  }

  .projects-page .case-detail-grid p strong {
    display: block;
    margin-bottom: 3px;
    color: #050816;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .projects-page .case-detail-grid span {
    margin-bottom: 6px;
    color: #05728f;
    background: rgba(24, 215, 255, 0.16);
    font-size: 11px;
  }

  .projects-page .case-detail-grid a {
    display: block;
    margin-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 12px;
    font-size: 15px;
  }

  .contact-steps span {
    font-size: 13px;
  }

  .product-card {
    min-height: auto;
  }

  .product-story-head {
    max-width: 340px;
    margin-inline: auto;
    margin-bottom: 20px;
  }

  .product-story-head h2,
  .product-buy-panel h2,
  .business-investor-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.06;
  }

  .product-story-head p,
  .product-buy-panel p,
  .business-investor-panel p {
    font-size: 15px;
    line-height: 1.56;
  }

  .product-status-strip,
  .product-detail-grid,
  .product-buy-grid,
  .business-product-map {
    max-width: 340px;
    margin-inline: auto;
  }

  .product-status-strip article,
  .product-detail-grid article,
  .product-buy-grid article,
  .business-product-map article {
    min-height: auto;
    padding: 18px;
  }

  .product-status-strip strong,
  .product-detail-grid h3,
  .product-buy-grid strong,
  .business-product-map strong {
    font-size: 19px;
  }

  .product-status-strip p,
  .product-detail-grid p,
  .product-buy-grid p,
  .business-product-map p {
    font-size: 13px;
    line-height: 1.5;
  }

  .product-page-cta,
  .product-buy-panel,
  .business-investor-panel {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
    padding: 20px;
  }

  .product-page-cta strong {
    font-size: 19px;
  }

  .services-grid article,
  .service-offers article,
  .process-grid article,
  .case-build-grid article {
    min-height: auto;
    padding: 20px;
  }

  .service-offers article > a {
    width: 100%;
  }

  .offer-points {
    margin-top: 2px;
  }

  .case-card {
    min-height: auto;
  }

  .case-card div {
    padding: 20px;
  }

  .case-card h3 {
    font-size: 23px;
  }

  .case-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  .screen-card {
    min-height: 320px;
  }

  .mobile-app {
    width: 142px;
    height: 268px;
  }

  .apparel-showcase {
    min-height: auto;
  }

  .apparel-showcase article,
  .apparel-showcase article:nth-child(2),
  .apparel-showcase article:nth-child(3) {
    min-height: 220px;
  }

  .contact-panel {
    padding: 24px;
    background:
      linear-gradient(120deg, rgba(130, 247, 47, 0.14), transparent 38%),
      linear-gradient(250deg, rgba(24, 215, 255, 0.18), transparent 42%),
      #080b1a;
  }

  .contact-sales-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel h1,
  .contact-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .contact-links a:first-child,
  .contact-links a:last-child {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-map {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .concept-chat {
    right: 12px;
    bottom: 14px;
    left: auto;
    width: auto;
    max-width: calc(100% - 24px);
  }

  .concept-chat-panel {
    left: auto;
    right: 0;
    bottom: 58px;
    width: min(340px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .concept-chat-launcher {
    width: auto;
    min-height: 48px;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    padding: 7px 11px 7px 7px;
  }

  .concept-chat-launcher span {
    width: 34px;
    height: 34px;
  }

  .concept-chat-launcher strong {
    display: inline;
    font-size: 14px;
  }

  .chat-actions {
    grid-template-columns: 1fr;
  }
}

/* YC Systems unified brand architecture */
.technology-hero .product-page-shot {
  display: none;
}

.yc-method-visual,
.yc-product-stack,
.about-brand-visual {
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 215, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(8, 18, 36, 0.9), rgba(6, 16, 31, 0.98));
  box-shadow: 0 34px 100px rgba(8, 11, 26, 0.38);
}

.yc-method-visual {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.yc-method-visual img,
.about-brand-visual img {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.method-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.method-badges span {
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: 14px;
  padding: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
  text-align: center;
}

.method-section,
.product-assets,
.company-core {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff, #f5f9fc);
}

.method-grid,
.outcome-grid,
.company-core-grid,
.asset-product-list {
  display: grid;
  gap: 18px;
}

.method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-grid article,
.outcome-grid article,
.company-core-grid article {
  min-width: 0;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(37, 99, 235, 0.08), transparent 44%),
    #ffffff;
  box-shadow: 0 16px 46px rgba(8, 11, 26, 0.08);
}

.method-grid span,
.company-core-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(24, 215, 255, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.method-grid strong,
.outcome-grid strong,
.company-core-grid strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.method-grid p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.business-outcomes {
  background: linear-gradient(180deg, #06101f, #0f172a);
}

.outcome-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
  color: #ffffff;
}

.outcome-panel h2,
.outcome-panel p {
  color: #ffffff;
}

.outcome-panel p {
  color: #d8e8f7;
}

.outcome-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcome-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(24, 215, 255, 0.2);
}

.outcome-grid strong {
  color: #ffffff;
}

.outcome-grid span {
  display: block;
  margin-top: 10px;
  color: #c8d8e6;
  line-height: 1.55;
}

.nexus-method-strip {
  background: linear-gradient(180deg, #f5f9fc, #ffffff);
}

.nexus-method-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: 26px;
  padding: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(24, 215, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #081224, #102342 58%, #06101f);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.22);
}

.nexus-method-card img {
  display: none;
}

.nexus-method-card h2,
.nexus-method-card p {
  color: #ffffff;
}

.nexus-method-card p:not(.eyebrow) {
  color: #d8e8f7;
}

.yc-product-stack {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 26px;
}

.yc-product-stack img {
  position: absolute;
  display: block;
  width: 70%;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  object-fit: cover;
  object-position: top left;
}

.yc-product-stack img:nth-child(1) {
  top: 28px;
  left: 24px;
  z-index: 3;
}

.yc-product-stack img:nth-child(2) {
  top: 150px;
  right: 22px;
  z-index: 2;
}

.yc-product-stack img:nth-child(3) {
  bottom: 28px;
  left: 58px;
  z-index: 1;
}

.asset-product-list {
  gap: 26px;
}

.asset-product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 215, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #081224, #102342 58%, #06101f);
  box-shadow: 0 24px 80px rgba(8, 11, 26, 0.18);
}

.asset-product-card:nth-child(even) {
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.72fr);
}

.asset-product-card:nth-child(even) .asset-copy {
  order: 2;
}

.asset-copy h3 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.asset-copy p,
.asset-copy li {
  color: #d8e8f7;
}

.asset-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 18px;
}

.asset-media {
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.asset-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: top left;
}

.creditpilot-preview {
  display: grid;
  gap: 14px;
}

.creditpilot-preview img {
  display: block;
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 18px;
  background: #ffffff;
}

.about-brand-visual {
  display: grid;
  align-content: end;
  min-height: 500px;
  padding: 28px;
}

.about-brand-visual div {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.about-brand-visual strong {
  color: #ffffff;
  font-size: 28px;
}

.about-brand-visual span {
  color: #c8d8e6;
  font-weight: 800;
}

.values-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(130, 252, 69, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5f9fc);
}

.founder-section {
  background: #ffffff;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.founder-photo-card {
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(8, 11, 26, 0.14);
}

.founder-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% center;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.founder-links a {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(37, 99, 235, 0.07);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .method-grid,
  .outcome-panel,
  .asset-product-card,
  .asset-product-card:nth-child(even),
  .founder-layout,
  .nexus-method-card {
    grid-template-columns: 1fr;
  }

  .asset-product-card:nth-child(even) .asset-copy {
    order: 0;
  }
}

@media (max-width: 760px) {
  .method-grid,
  .outcome-grid,
  .company-core-grid,
  .method-badges {
    grid-template-columns: 1fr;
  }

  .yc-product-stack {
    min-height: 420px;
  }

  .yc-product-stack img {
    width: 82%;
  }

  .asset-product-card,
  .nexus-method-card {
    padding: 18px;
    border-radius: 18px;
  }

  .asset-media,
  .asset-media img {
    min-height: 240px;
  }

  .about-brand-visual {
    min-height: 420px;
  }
}

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

/* Final video QA pass: align the home story and remove distracting overlaps */
.yc-brand-v2 .home-main {
  display: flex;
  flex-direction: column;
}

.yc-brand-v2 .home-main .section-pad {
  padding-top: clamp(60px, 7vw, 96px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

.yc-brand-v2 .yc-hero {
  order: 1;
}

.yc-brand-v2 .home-products-section {
  order: 2;
}

.yc-brand-v2 .home-clients-section {
  order: 3;
}

.yc-brand-v2 .home-proof-section {
  order: 4;
}

.yc-brand-v2 .home-nexus-section {
  order: 5;
}

.yc-brand-v2 .home-identity-section {
  order: 6;
}

.yc-brand-v2 .home-packages-section {
  order: 7;
}

.yc-brand-v2 .home-about-section {
  order: 8;
}

.yc-brand-v2 .home-contact-section {
  order: 9;
}

.yc-brand-v2 .live-client-card::after {
  right: 14px;
  bottom: 14px;
  top: auto;
  padding: 6px 8px;
  background: rgba(4, 13, 27, 0.9);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  pointer-events: none;
}

.yc-brand-v2 .founder-links a {
  border-color: rgba(0, 216, 255, 0.42);
  background: rgba(0, 216, 255, 0.12);
  color: #f8fbff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.yc-brand-v2 .founder-links a:hover,
.yc-brand-v2 .founder-links a:focus-visible {
  background: rgba(92, 255, 92, 0.14);
  border-color: rgba(92, 255, 92, 0.5);
  color: #ffffff;
}

.yc-brand-v2 .values-band .trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yc-brand-v2 .values-band .trust-grid article {
  min-height: 210px;
}

@media (max-width: 760px) {
  .yc-brand-v2 .home-main .section-pad {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .yc-brand-v2 .values-band .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium cleanup: stronger contrast, calmer cards, clearer case studies */
.yc-brand-v2 :is(
  .compact-showcase,
  .yc-identity-system,
  .about-snapshot,
  .technology-hero,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .contact
) :is(h1, h2, h3) {
  color: #f8fbff !important;
}

.yc-brand-v2 :is(
  .compact-showcase,
  .yc-identity-system,
  .about-snapshot,
  .technology-hero,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .contact
) :is(p, li, dd, small, em) {
  color: #c7d7ea;
}

.yc-brand-v2 :is(
  .yc-os-product-card,
  .live-client-card,
  .package-grid article,
  .company-core-grid article,
  .trust-grid article,
  .values-mini-grid article,
  .method-grid article,
  .outcome-grid article
) {
  border: 1px solid rgba(0, 216, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(10, 27, 50, 0.84), rgba(4, 13, 27, 0.82)),
    radial-gradient(circle at 90% 110%, rgba(0, 216, 255, 0.12), transparent 12rem);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.yc-brand-v2 :is(.yc-os-product-card, .live-client-card, .package-grid article, .method-grid article, .outcome-grid article):hover {
  transform: translateY(-3px);
  border-color: rgba(92, 255, 92, 0.34);
}

.yc-brand-v2 .yc-os-product-card {
  min-height: 0;
  padding: 16px;
  gap: 12px;
}

.yc-brand-v2 .yc-os-product-card > img {
  border-radius: 14px;
}

.yc-brand-v2 .yc-os-product-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #ffffff;
}

.yc-brand-v2 .yc-os-product-card dl {
  margin: 0;
}

.yc-brand-v2 .yc-os-product-card .product-summary {
  margin: 0;
  color: #c7d7ea;
  font-size: 0.92rem;
  line-height: 1.5;
}

.yc-brand-v2 .yc-os-product-card > strong {
  margin-top: auto;
  color: var(--yc-os-action);
}

.yc-brand-v2 .client-card-grid {
  align-items: stretch;
}

.yc-brand-v2 .live-client-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  min-width: 0;
}

.yc-brand-v2 .live-client-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}

.yc-brand-v2 .live-client-card h3 {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.08;
  overflow-wrap: normal;
}

.yc-brand-v2 .live-client-card em {
  display: block;
  max-width: 100%;
  margin: -4px 0 2px;
  font-style: normal;
  color: #90a9c5;
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.yc-brand-v2 .live-client-card > span {
  border-color: rgba(0, 216, 255, 0.28);
  background: rgba(0, 216, 255, 0.1);
  color: #bfeeff;
}

.yc-brand-v2 .live-client-card p,
.yc-brand-v2 .live-client-card p:nth-of-type(n + 2) {
  display: block;
  margin: 0;
  color: #c7d7ea;
  font-size: 0.86rem;
  line-height: 1.45;
}

.yc-brand-v2 .live-client-card p strong {
  color: #f8fbff;
}

.yc-brand-v2 .live-client-card small {
  margin-top: auto;
  color: #06111f;
  background: linear-gradient(135deg, var(--yc-os-action), var(--yc-os-cyan));
  border: 0;
  font-size: 0.72rem;
}

.yc-brand-v2 .project-logo-mark {
  min-height: 48px;
  border-radius: 12px;
}

.yc-brand-v2 .method-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yc-brand-v2 .method-grid article {
  min-height: 230px;
}

@media (max-width: 1100px) {
  .yc-brand-v2 .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .yc-brand-v2 .yc-os-product-grid,
  .yc-brand-v2 .client-card-grid,
  .yc-brand-v2 .method-grid {
    grid-template-columns: 1fr !important;
  }

  .yc-brand-v2 .concept-chat {
    right: 14px;
    bottom: 14px;
  }

  .yc-brand-v2 .concept-chat-launcher {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 6px !important;
    border-radius: 999px !important;
  }

  .yc-brand-v2 .concept-chat-launcher span {
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
  }

  .yc-brand-v2 .concept-chat-launcher strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
  }
}


/* Tablet and narrow desktop should not make client projects feel like one long feed. */
@media (min-width: 680px) and (max-width: 900px) {
  .yc-brand-v2 .client-card-grid,
  .yc-brand-v2 .projects-page .client-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .yc-brand-v2 .client-card-grid .live-client-card,
  .yc-brand-v2 .projects-page .client-card-grid .live-client-card {
    grid-column: auto !important;
  }
}

/* Microphase final lock: keep the floating quote control helpful, not intrusive. */
.yc-brand-v2 .concept-chat {
  display: block !important;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}

.yc-brand-v2.is-contact-page .concept-chat:not(.is-open) {
  bottom: calc(max(18px, env(safe-area-inset-bottom)) + 24px);
}

.yc-brand-v2 .concept-chat-panel {
  max-height: min(560px, calc(100dvh - 132px));
  overflow: auto;
}

.yc-brand-v2 .concept-chat-launcher {
  border-radius: 999px;
}

@media (max-width: 760px) {
  .yc-brand-v2 .concept-chat {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(max(12px, env(safe-area-inset-bottom)) + 2px);
  }

  .yc-brand-v2.is-contact-page .concept-chat:not(.is-open) {
    bottom: calc(max(12px, env(safe-area-inset-bottom)) + 18px);
  }

  .yc-brand-v2 .concept-chat-panel {
    right: 0;
    bottom: 62px;
    width: min(342px, calc(100vw - 24px));
    max-height: min(520px, calc(100dvh - 148px));
    border-radius: 18px;
  }

  .yc-brand-v2 .concept-chat-launcher {
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34), 0 0 18px rgba(0, 216, 255, 0.24);
  }

  .yc-brand-v2 .concept-chat-launcher span {
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
  }
}

/* Conversion polish: project domains should prove credibility without breaking cards. */
.yc-brand-v2 .project-domain,
.yc-brand-v2 .live-client-card em.project-domain {
  display: block;
  max-width: 100%;
  color: var(--yc-os-muted);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 760px) {
  .yc-brand-v2 .concept-chat {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .yc-brand-v2.show-concept-chat .concept-chat,
  .yc-brand-v2 .concept-chat.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .yc-brand-v2 .yc-hero .hero-proof span:nth-child(n + 4) {
    display: none;
  }

  .yc-brand-v2 .project-domain,
  .yc-brand-v2 .live-client-card em.project-domain {
    font-size: 0.8rem;
  }
}

/* Commercial home polish: clearer Instagram-to-client conversion path */
.yc-brand-v2 .home-products-section {
  order: 4;
}

.yc-brand-v2 .home-clients-section {
  order: 3;
}

.yc-brand-v2 .home-proof-section {
  order: 5;
}

.yc-brand-v2 .home-nexus-section {
  order: 6;
}

.yc-brand-v2 .home-identity-section {
  order: 7;
}

.yc-brand-v2 .home-packages-section {
  order: 2;
}

.yc-brand-v2 .home-about-section {
  order: 8;
}

.yc-brand-v2 .home-contact-section {
  order: 9;
}

.yc-brand-v2 .hero-commercial-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin-top: 18px;
}

.yc-brand-v2 .hero-commercial-proof article {
  min-width: 0;
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  background:
    linear-gradient(145deg, rgba(8, 20, 38, 0.86), rgba(3, 10, 23, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(0, 216, 255, 0.12), transparent 7rem);
}

.yc-brand-v2 .hero-commercial-proof strong {
  display: block;
  color: #f8fbff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.yc-brand-v2 .hero-commercial-proof span {
  display: block;
  margin-top: 5px;
  color: #a9bdd5;
  font-size: 0.78rem;
  font-weight: 800;
}

.yc-brand-v2 .hero-actions .button-primary {
  min-width: 154px;
}

.yc-brand-v2 .yc-hero {
  padding-top: clamp(28px, 4vw, 36px) !important;
  padding-bottom: clamp(26px, 3vw, 32px) !important;
}

.yc-brand-v2 .hero-grid {
  align-items: center !important;
}

.yc-brand-v2 .hero-copy {
  align-self: center;
}

.yc-brand-v2 .yc-hero .hero-proof {
  display: none !important;
}

.yc-brand-v2 .yc-ecosystem-visual {
  min-height: 480px !important;
}

.yc-brand-v2 .ecosystem-products {
  width: min(290px, 100%) !important;
  margin-top: 126px !important;
}

.yc-brand-v2 .ecosystem-nexus {
  width: min(390px, 62%) !important;
  max-height: 92% !important;
}

.yc-brand-v2 .home-packages-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 216, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(3, 10, 23, 0.42), rgba(8, 20, 38, 0.18));
}

.yc-brand-v2 .home-packages-section .section-head {
  max-width: 820px;
}

.yc-brand-v2 .home-packages-section .package-grid-home article {
  min-height: 260px;
}

.yc-brand-v2 .home-clients-section .section-head,
.yc-brand-v2 .home-products-section .section-head {
  max-width: 840px;
}

@media (max-width: 760px) {
  .yc-brand-v2 .hero-commercial-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 14px;
  }

  .yc-brand-v2 .hero-commercial-proof article {
    display: block;
    padding: 10px 8px;
    text-align: center;
  }

  .yc-brand-v2 .hero-commercial-proof span {
    margin-top: 5px;
    text-align: center;
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .yc-brand-v2 .mobile-investor-strip {
    display: none !important;
  }

  .yc-brand-v2 .hero-proof {
    display: none !important;
  }

  .yc-brand-v2 .yc-hero {
    padding-bottom: 34px !important;
  }

  .yc-brand-v2 .hero-grid {
    gap: 24px !important;
  }

  .yc-brand-v2 .hero-visual {
    display: none !important;
  }

  .yc-brand-v2 .yc-ecosystem-visual {
    min-height: 420px !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .yc-brand-v2 .ecosystem-logo {
    width: 112px !important;
    top: 18px !important;
    left: 18px !important;
  }

  .yc-brand-v2 .ecosystem-products {
    width: min(210px, 66%) !important;
    gap: 8px !important;
    margin-top: 116px !important;
  }

  .yc-brand-v2 .ecosystem-products a {
    grid-template-columns: auto 1fr !important;
    min-height: 54px !important;
    padding: 8px 10px !important;
    border-radius: 14px !important;
  }

  .yc-brand-v2 .ecosystem-products span {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
    font-size: 0.76rem !important;
  }

  .yc-brand-v2 .ecosystem-products strong {
    font-size: 0.86rem !important;
    line-height: 1.05 !important;
  }

  .yc-brand-v2 .ecosystem-products small {
    font-size: 0.68rem !important;
  }

  .yc-brand-v2 .ecosystem-nexus {
    right: -36px !important;
    bottom: -12px !important;
    width: min(270px, 72%) !important;
    max-height: 78% !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .yc-brand-v2 .main-nav a:hover:not([aria-current="page"]) {
    color: #d8e5f4;
    text-shadow: none;
  }

  .yc-brand-v2 .main-nav a:hover:not([aria-current="page"])::after {
    left: 50%;
    right: 50%;
    opacity: 0;
  }

  .yc-brand-v2 .language-chip:hover {
    border-color: rgba(0, 216, 255, 0.28);
    background: rgba(0, 216, 255, 0.06);
    color: #f8fbff;
  }
}

/* Identity card public lockup: avoid dark SVG text on dark cards */
.yc-brand-v2 .identity-story-card {
  align-content: center;
  gap: 22px;
}

.yc-brand-v2 .identity-logo-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: 360px;
}

.yc-brand-v2 .identity-logo-lockup img {
  width: 88px !important;
  max-width: 88px !important;
  height: auto;
  margin: 0 !important;
  filter: drop-shadow(0 0 22px rgba(0, 216, 255, 0.22));
}

.yc-brand-v2 .identity-logo-lockup strong {
  display: block;
  border: 0;
  padding: 0;
  color: #f8fbff !important;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yc-brand-v2 .identity-logo-lockup span {
  display: block;
  margin-top: 6px;
  color: #91a9c4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .yc-brand-v2 .identity-logo-lockup {
    grid-template-columns: 1fr;
    justify-items: start;
    max-width: 100%;
  }

  .yc-brand-v2 .identity-logo-lockup img {
    width: 74px !important;
    max-width: 74px !important;
  }
}

/* Stable release polish: balance, spacing and anchor behavior */
.yc-brand-v2 :is(main > section, .section-pad, .product-hero) {
  scroll-margin-top: 96px;
}

.yc-brand-v2 .home-main .section-pad {
  padding-top: clamp(56px, 6.2vw, 86px);
  padding-bottom: clamp(56px, 6.2vw, 86px);
}

.yc-brand-v2 .home-nexus-section .nexus-brand-panel {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.94fr) !important;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
}

.yc-brand-v2 .home-nexus-section .nexus-brand-panel picture {
  display: block !important;
  align-self: center;
  justify-self: end;
}

.yc-brand-v2 .home-nexus-section .nexus-brand-copy {
  align-self: center;
}

.yc-brand-v2 .home-nexus-section .nexus-steps {
  display: flex;
  flex-wrap: wrap;
}

.yc-brand-v2 .home-nexus-section .nexus-steps span {
  flex: 0 1 auto;
}

.yc-brand-v2 .home-nexus-section .nexus-brand-image {
  align-self: center;
  justify-self: end;
  width: min(520px, 100%);
  max-height: 520px;
  object-position: center right;
}

.yc-brand-v2 .client-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.yc-brand-v2 .live-client-card {
  min-height: 100%;
}

.yc-brand-v2 .home-packages-section .section-head h2 {
  max-width: 920px;
}

.yc-brand-v2 .home-packages-section .section-head p {
  max-width: 820px;
}

.yc-brand-v2 .contact-sales-panel {
  align-items: start;
}

.yc-brand-v2 .contact-mini-links [data-domain-email] {
  border-style: dashed;
  color: #9fc7dd;
}

@media (max-width: 1180px) {
  .yc-brand-v2 .client-card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .yc-brand-v2 .client-card-grid .live-client-card {
    grid-column: span 2;
  }

  .yc-brand-v2 .client-card-grid .live-client-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .yc-brand-v2 .client-card-grid .live-client-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 980px) {
  .yc-brand-v2 .home-nexus-section .nexus-brand-panel {
    grid-template-columns: 1fr !important;
    min-height: 0;
  }

  .yc-brand-v2 .home-nexus-section .nexus-brand-image {
    justify-self: center;
    width: min(460px, 100%);
    max-height: 420px;
  }
}

@media (max-width: 760px) {
  .yc-brand-v2 :is(main > section, .section-pad, .product-hero) {
    scroll-margin-top: 82px;
  }

  .yc-brand-v2 .home-main .section-pad {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .yc-brand-v2 .client-card-grid {
    grid-template-columns: 1fr !important;
  }

  .yc-brand-v2 .client-card-grid .live-client-card,
  .yc-brand-v2 .client-card-grid .live-client-card:nth-child(4),
  .yc-brand-v2 .client-card-grid .live-client-card:nth-child(5) {
    grid-column: auto;
  }

  .yc-brand-v2 .concept-chat {
    right: 12px !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
  }

  .yc-brand-v2 .concept-chat-panel {
    bottom: 58px;
    max-height: min(620px, calc(100vh - 92px));
    overflow-y: auto;
  }
}

/* Last-mile Nexus visual correction */
.yc-brand-v2 .ecosystem-nexus {
  right: -8px !important;
  bottom: 42px !important;
  width: min(350px, 68%) !important;
  max-height: 86% !important;
  object-fit: contain !important;
  object-position: right bottom !important;
  z-index: 2 !important;
}

.yc-brand-v2 .ecosystem-products {
  position: absolute !important;
  left: 32px !important;
  top: 188px !important;
  width: min(260px, 50%) !important;
  margin: 0 !important;
}

.yc-brand-v2 .ecosystem-logo {
  width: min(170px, 38%) !important;
  opacity: 0.16 !important;
}

@media (max-width: 760px) {
  .yc-brand-v2 .ecosystem-nexus {
    right: -12px !important;
    bottom: 12px !important;
    width: min(300px, 74%) !important;
    max-height: 66% !important;
  }

  .yc-brand-v2 .ecosystem-products {
    position: absolute !important;
    left: 20px !important;
    top: 136px !important;
    width: min(220px, 62%) !important;
    margin: 0 !important;
  }
}

/* Final visual architecture pass: clearer page identities */
.product-hero {
  padding: 78px 0 64px;
}

.product-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.product-hero .hero-lede {
  max-width: 650px;
  color: #d8e8f7;
}

.products-hero .product-hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
}

.projects-page .product-hero {
  padding: 62px 0 48px;
  background:
    radial-gradient(circle at 14% 18%, rgba(92, 255, 92, 0.16), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(0, 216, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #07101f 0%, #111a2f 74%, #f6fbff 100%);
}

.projects-page .product-hero-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: 44px;
}

.projects-page .product-hero h1 {
  font-size: clamp(40px, 4.2vw, 58px);
}

.live-sites-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 216, 255, 0.24);
  border-radius: 26px;
  padding: 14px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 216, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(8, 18, 36, 0.92), rgba(6, 16, 31, 0.98));
  box-shadow: 0 34px 100px rgba(8, 11, 26, 0.38);
}

.live-sites-mosaic img {
  display: block;
  width: 100%;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #06101f;
  object-fit: cover;
  object-position: top left;
}

.projects-page .section-pad:first-of-type {
  padding-top: 42px;
}

.projects-page .client-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.projects-page .client-card {
  min-height: 100%;
  padding: 18px;
}

.projects-page .client-card img {
  height: 128px;
}

.projects-page .client-card h3 {
  font-size: 21px;
  overflow-wrap: anywhere;
}

.projects-page .client-card p {
  font-size: 14px;
  line-height: 1.52;
}

.technology-hero .product-hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.94fr);
}

.technology-hero h1 {
  font-size: clamp(40px, 4.7vw, 66px);
}

.about-hero .product-hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.96fr);
}

.about-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
}

.client-card,
.asset-product-card,
.method-grid article,
.company-core-grid article,
.trust-grid article,
.proof-grid article {
  border-color: rgba(0, 216, 255, 0.18);
}

@media (max-width: 1120px) {
  .projects-page .client-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-hero,
  .projects-page .product-hero {
    padding: 42px 0 34px;
  }

  .product-hero h1,
  .projects-page .product-hero h1,
  .technology-hero h1,
  .about-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.03;
  }

  .product-hero .hero-lede {
    font-size: 16px;
    line-height: 1.58;
  }

  .product-hero-grid,
  .products-hero .product-hero-grid,
  .projects-page .product-hero-grid,
  .technology-hero .product-hero-grid,
  .about-hero .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-page .product-page-shot {
    display: none;
  }

  .live-sites-mosaic {
    display: none;
  }

  .mobile-project-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-project-proof span {
    min-height: 44px;
    padding: 10px;
    font-size: 12px;
  }

  .projects-page .hero-actions {
    margin-top: 18px;
  }

  .projects-page .hero-actions .button {
    min-height: 50px;
  }

  .projects-page .section-pad:first-of-type {
    padding-top: 26px;
  }

  .projects-page .client-card-grid {
    grid-template-columns: 1fr;
  }

  .projects-page .client-card {
    padding: 16px;
  }

  .projects-page .client-card img {
    height: 156px;
  }

  .yc-product-stack {
    min-height: 360px;
  }

  .yc-method-visual,
  .about-brand-visual {
    border-radius: 18px;
    padding: 16px;
  }

  .concept-chat {
    display: none;
  }
}

/* YC Systems Brand Evolution V2 */
:root {
  --yc-primary: #2563eb;
  --yc-primary-dark: #0f172a;
  --yc-primary-deep: #06101f;
  --yc-primary-glow: #00d8ff;
  --yc-surface: rgba(9, 24, 45, 0.78);
  --yc-surface-strong: rgba(6, 16, 31, 0.94);
  --yc-surface-soft: rgba(15, 23, 42, 0.72);
  --yc-background: #06101f;
  --yc-border: rgba(0, 216, 255, 0.24);
  --yc-border-strong: rgba(0, 216, 255, 0.46);
  --yc-success: #5cff5c;
  --yc-danger: #ff4d6d;
  --yc-muted: #9fb3c8;
  --yc-white: #ffffff;
  --yc-gray: #64748b;
  --yc-radius: 18px;
  --yc-radius-lg: 28px;
  --yc-shadow: 0 28px 100px rgba(0, 0, 0, 0.38);
  --yc-glow: 0 0 42px rgba(0, 216, 255, 0.22);
  --yc-type-tight: -0.01em;
}

html {
  background: var(--yc-background);
}

body {
  color: var(--yc-white);
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.24), transparent 34%),
    radial-gradient(circle at 88% 2%, rgba(0, 216, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #06101f 0%, #07162a 44%, #06101f 100%);
}

.yc-brand-v2,
.yc-brand-v2 main {
  position: relative;
  overflow-x: clip;
}

.yc-brand-v2 main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 216, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 216, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 10%, #000 0%, transparent 68%);
}

.site-header {
  border-bottom: 1px solid rgba(0, 216, 255, 0.15);
  background: rgba(6, 16, 31, 0.78);
  backdrop-filter: blur(22px);
}

.brand-logo img {
  filter: drop-shadow(0 0 18px rgba(0, 216, 255, 0.18));
}

.main-nav a,
.language-chip {
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.language-chip:hover {
  color: var(--yc-white);
  background: rgba(0, 216, 255, 0.1);
  border-color: rgba(0, 216, 255, 0.28);
  transform: translateY(-1px);
}

.yc-brand-v2 .hero,
.yc-brand-v2 .product-hero,
.yc-brand-v2 .projects-page .product-hero {
  background:
    radial-gradient(circle at 72% 26%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 20% 84%, rgba(92, 255, 92, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(6, 16, 31, 0.96), rgba(6, 16, 31, 0.86));
}

.yc-brand-v2 .section-pad {
  position: relative;
}

.yc-brand-v2 .section-pad::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 216, 255, 0.25), transparent);
}

.hero h1,
.product-hero h1,
.section-head h2,
.nexus-brand-copy h2,
.yc-identity-grid h2,
.about-snapshot h2,
.contact-panel h2 {
  letter-spacing: var(--yc-type-tight);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 0.96;
}

.eyebrow {
  color: var(--yc-primary-glow) !important;
  letter-spacing: 0.14em;
}

.hero-lede,
.section-head p,
.product-card p,
.client-card p,
.about-snapshot p,
.contact-panel p {
  color: var(--yc-muted);
}

.button {
  border-radius: 999px;
  min-height: 48px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(92, 255, 92, 0.58);
  color: #04101d;
  background: linear-gradient(135deg, var(--yc-primary-glow), var(--yc-success));
  box-shadow: 0 18px 60px rgba(92, 255, 92, 0.18);
}

.button-secondary {
  border: 1px solid var(--yc-border-strong);
  color: var(--yc-white);
  background: rgba(8, 25, 47, 0.72);
  box-shadow: var(--yc-glow);
}

.hero-proof span,
.mobile-investor-strip article,
.proof-grid article,
.product-card,
.client-card,
.package-grid article,
.values-mini-grid article,
.contact-panel,
.identity-story-card,
.nexus-brand-panel,
.asset-product-card,
.company-core-grid article,
.trust-grid article,
.method-grid article,
.outcome-grid article,
.nexus-method-card,
.product-buy-panel,
.about-brand-visual,
.yc-method-visual {
  border: 1px solid var(--yc-border);
  border-radius: var(--yc-radius-lg);
  color: var(--yc-white);
  background:
    linear-gradient(180deg, rgba(12, 32, 58, 0.78), rgba(6, 16, 31, 0.92)),
    var(--yc-surface-strong);
  box-shadow: var(--yc-shadow);
}

.proof-grid article:hover,
.product-card:hover,
.client-card:hover,
.package-grid article:hover,
.values-mini-grid article:hover,
.asset-product-card:hover,
.method-grid article:hover,
.trust-grid article:hover {
  border-color: var(--yc-border-strong);
  box-shadow: 0 34px 120px rgba(0, 216, 255, 0.16), var(--yc-shadow);
  transform: translateY(-4px);
}

.proof-grid article,
.product-card,
.client-card,
.package-grid article,
.values-mini-grid article,
.asset-product-card,
.method-grid article,
.trust-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-grid article strong,
.product-card h3,
.client-card h3,
.package-grid strong,
.values-mini-grid strong,
.asset-product-card h3,
.method-grid strong,
.trust-grid strong,
.company-core-grid strong {
  color: var(--yc-white);
}

.proof-grid article span,
.product-card p,
.client-card p,
.package-grid p,
.package-grid li,
.values-mini-grid span,
.asset-product-card p,
.asset-product-card li,
.method-grid p,
.trust-grid p,
.company-core-grid strong {
  color: var(--yc-muted);
}

.yc-ecosystem-visual {
  isolation: isolate;
  min-height: 610px;
  border-radius: 34px;
  border-color: var(--yc-border-strong);
  background:
    radial-gradient(circle at 72% 26%, rgba(0, 216, 255, 0.26), transparent 26%),
    radial-gradient(circle at 34% 70%, rgba(92, 255, 92, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(8, 25, 47, 0.94), rgba(4, 10, 20, 0.98));
}

.yc-ecosystem-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(0, 216, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(rgba(0, 216, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 216, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 68% 46%, #000 0%, transparent 70%);
}

.ecosystem-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(0, 216, 255, 0.22);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.orbit-a {
  right: 48px;
  top: 122px;
  width: 390px;
  height: 390px;
  animation: ycPulse 4.8s ease-in-out infinite;
}

.orbit-b {
  right: 6px;
  top: 76px;
  width: 500px;
  height: 500px;
  border-color: rgba(92, 255, 92, 0.16);
  animation: ycPulse 6.2s ease-in-out infinite reverse;
}

.ecosystem-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--yc-border-strong);
  border-radius: 18px;
  color: var(--yc-white);
  background: rgba(7, 20, 39, 0.88);
  box-shadow: 0 0 32px rgba(0, 216, 255, 0.18);
  font-weight: 950;
}

.node-cleanloop { right: 360px; top: 206px; }
.node-soc { right: 80px; top: 230px; }
.node-broker { right: 244px; top: 78px; }

.ecosystem-signal {
  position: absolute;
  z-index: 2;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yc-primary-glow), transparent);
  opacity: 0.72;
  transform-origin: center;
}

.signal-a { right: 182px; top: 250px; transform: rotate(23deg); }
.signal-b { right: 236px; top: 182px; transform: rotate(-28deg); }

.ecosystem-logo,
.ecosystem-nexus,
.ecosystem-products {
  z-index: 5;
}

.ecosystem-nexus {
  animation: ycFloat 5.8s ease-in-out infinite;
}

.ecosystem-products a {
  border-color: rgba(0, 216, 255, 0.28);
  border-radius: 20px;
  background: rgba(7, 20, 39, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ecosystem-products a:hover {
  transform: translateX(4px);
  border-color: var(--yc-success);
  background: rgba(10, 36, 63, 0.9);
}

.product-card-media,
.client-card img,
.asset-media,
.live-sites-mosaic {
  border-color: rgba(0, 216, 255, 0.2);
  border-radius: 22px;
  background: #06101f;
}

.product-meta {
  display: grid;
  gap: 8px;
  margin: 14px 0 4px;
}

.product-meta span {
  display: block;
  border-left: 2px solid var(--yc-primary-glow);
  padding-left: 10px;
  color: #dcecff;
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  border-radius: 999px;
  border: 1px solid var(--yc-border);
  background: rgba(0, 216, 255, 0.1);
}

.status-pill.ready {
  border-color: rgba(92, 255, 92, 0.44);
  color: var(--yc-success);
}

.status-pill.pilot {
  border-color: rgba(0, 216, 255, 0.5);
  color: var(--yc-primary-glow);
}

.status-pill.soon {
  border-color: rgba(100, 116, 139, 0.5);
  color: #cbd5e1;
}

.feature-tags span,
.identity-pill-row span,
.nexus-steps span,
.project-match-grid a,
.method-badges span {
  border: 1px solid rgba(0, 216, 255, 0.28);
  border-radius: 999px;
  color: #dcecff;
  background: rgba(8, 25, 47, 0.72);
}

.nexus-brand-panel {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 76% 44%, rgba(0, 216, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(8, 25, 47, 0.9), rgba(6, 16, 31, 0.96));
}

.nexus-brand-panel::after {
  content: "NEXUS";
  position: absolute;
  right: -18px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(90px, 18vw, 220px);
  font-weight: 950;
  letter-spacing: 0;
  pointer-events: none;
}

.nexus-brand-image {
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
  animation: ycFloat 6.4s ease-in-out infinite;
}

.yc-identity-system,
.why-yc,
.compact-showcase,
.packages,
.about-snapshot,
.contact {
  background: transparent;
}

.identity-story-card img {
  filter: drop-shadow(0 0 28px rgba(37, 99, 235, 0.2));
}

.client-card {
  overflow: hidden;
}

.client-card::before,
.product-card::before,
.asset-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 216, 255, 0.12), transparent 32%, rgba(92, 255, 92, 0.06));
  opacity: 0;
  transition: opacity 180ms ease;
}

.client-card:hover::before,
.product-card:hover::before,
.asset-product-card:hover::before {
  opacity: 1;
}

.technology-hero .yc-method-visual,
.about-hero .about-brand-visual {
  background:
    radial-gradient(circle at 70% 18%, rgba(0, 216, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(8, 25, 47, 0.88), rgba(6, 16, 31, 0.96));
}

.business-outcomes,
.method-section,
.values-band,
.company-core,
.founder-section,
.nexus-identity {
  background: transparent;
}

.site-footer {
  border-top: 1px solid rgba(0, 216, 255, 0.18);
  background: #040b16;
}

/* Final YC Systems visual QA fixes */
.yc-brand-v2 .yc-identity-grid h2,
.yc-brand-v2 .about-snapshot h2,
.yc-brand-v2 .contact-panel h2,
.yc-brand-v2 .footer-map strong,
.yc-brand-v2 .footer-inner,
.yc-brand-v2 .footer-legal,
.yc-brand-v2 .footer-legal a {
  color: var(--yc-os-text);
}

.yc-brand-v2 .yc-identity-grid > div > p:not(.eyebrow),
.yc-brand-v2 .identity-story-card p,
.yc-brand-v2 .about-snapshot p,
.yc-brand-v2 .contact-panel p,
.yc-brand-v2 .footer-map p,
.yc-brand-v2 .footer-map span,
.yc-brand-v2 .footer-map a {
  color: #c7d7ea;
}

.yc-brand-v2 .identity-story-card strong {
  border-left-color: var(--yc-os-cyan);
  color: #f8fbff;
}

.yc-brand-v2 .identity-pill-row span {
  color: #f8fbff;
  background: rgba(8, 25, 47, 0.84);
}

.yc-brand-v2 .main-nav.is-open {
  background:
    linear-gradient(180deg, rgba(7, 18, 34, 0.98), rgba(3, 9, 18, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
}

.yc-brand-v2 .main-nav.is-open a,
.yc-brand-v2 .main-nav.is-open .language-chip {
  color: #f8fbff;
}

.yc-brand-v2 .concept-chat {
  right: 18px;
  bottom: 18px;
}

.yc-brand-v2 .concept-chat-launcher {
  width: 54px;
  min-height: 48px;
  padding: 7px;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.yc-brand-v2 .concept-chat-launcher strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (min-width: 980px) {
  .yc-brand-v2 .concept-chat {
    right: 28px;
    bottom: 26px;
  }
}

@media (max-width: 760px) {
  .yc-brand-v2 .main-nav {
    border-color: rgba(0, 216, 255, 0.34);
  }

  .yc-brand-v2 .concept-chat {
    right: 14px;
    bottom: 14px;
  }

  .yc-brand-v2 .concept-chat-launcher {
    width: 48px;
    min-height: 44px;
    padding: 6px;
  }

  .yc-brand-v2 .concept-chat-launcher span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .yc-brand-v2 .concept-chat-launcher strong {
    font-size: 13px;
  }
}

@keyframes ycFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes ycPulse {
  0%, 100% { opacity: 0.46; transform: rotate(-18deg) scale(1); }
  50% { opacity: 0.86; transform: rotate(-18deg) scale(1.03); }
}

@media (max-width: 980px) {
  .yc-ecosystem-visual {
    min-height: 520px;
  }

  .ecosystem-node,
  .ecosystem-signal,
  .ecosystem-orbit {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 84px;
  }

  .brand-logo img {
    width: 132px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
  }

  .hero-lede {
    font-size: 17px;
  }

  .yc-ecosystem-visual {
    min-height: 430px;
    border-radius: 24px;
    padding: 20px;
  }

  .ecosystem-logo {
    width: 160px;
  }

  .ecosystem-nexus {
    right: -20px;
    width: 62%;
  }

  .ecosystem-products {
    width: min(245px, 70%);
    margin-top: 124px;
  }

  .ecosystem-products a {
    padding: 10px;
  }

  .ecosystem-products span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 12px;
  }

  .ecosystem-products strong {
    font-size: 14px;
  }

  .ecosystem-products small {
    font-size: 11px;
  }

  .nexus-brand-panel,
  .contact-panel,
  .identity-story-card,
  .product-card,
  .client-card,
  .package-grid article {
    border-radius: 22px;
  }
}

/* Final mobile/header overrides for YC Systems OS */
@media (max-width: 760px) {
  .yc-brand-v2 .site-header {
    position: sticky;
    min-height: 72px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .yc-brand-v2 .brand,
  .yc-brand-v2 .brand-logo {
    width: auto;
    max-width: 132px;
    flex: 0 0 auto;
  }

  .yc-brand-v2 .brand-logo img {
    width: 124px !important;
    max-width: 124px !important;
    height: auto !important;
    object-fit: contain;
  }

  .yc-brand-v2 .nav-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    right: 16px !important;
    top: 14px !important;
    z-index: 9999;
    width: 50px;
    height: 50px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 216, 255, 0.36);
    border-radius: 16px;
    background: rgba(8, 20, 38, 0.72);
  }

  .yc-brand-v2 .nav-toggle::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #f8fbff;
    transform: translateY(-5px);
    box-shadow: 0 10px 0 #f8fbff;
  }

  .yc-brand-v2 .site-header::after {
    content: "";
    position: fixed;
    right: 16px;
    top: 14px;
    z-index: 9998;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 216, 255, 0.46);
    border-radius: 16px;
    background:
      linear-gradient(#f8fbff, #f8fbff) center 18px / 22px 2px no-repeat,
      linear-gradient(#f8fbff, #f8fbff) center 31px / 22px 2px no-repeat,
      rgba(8, 20, 38, 0.86);
    box-shadow: 0 14px 34px rgba(0, 216, 255, 0.14);
    pointer-events: none;
  }

  .yc-brand-v2 .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #f8fbff;
  }

  .yc-brand-v2 .hero h1,
  .yc-brand-v2 .product-hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .yc-brand-v2 .yc-product-stack,
  .yc-brand-v2 .yc-os-product-stack {
    max-width: 100%;
    overflow: hidden;
  }
}

/* Visual QA polish: keep the YC Systems OS language tight and readable */
.yc-brand-v2 .client-card,
.yc-brand-v2 .live-client-card {
  min-width: 0;
}

.yc-brand-v2 .client-card h3,
.yc-brand-v2 .live-client-card h3 {
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
}

.yc-brand-v2 .domain-stack {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 2px;
}

.yc-brand-v2 .domain-stack span {
  display: inline-block;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.yc-brand-v2 .domain-small {
  font-size: clamp(1rem, 1.15vw, 1.14rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0;
  white-space: nowrap;
}

.yc-brand-v2 .project-logo-mark.antony {
  background: #f8fbff;
  border: 1px solid rgba(0, 216, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.yc-brand-v2 .project-logo-mark.antony strong {
  color: #06111f;
}

.yc-brand-v2 .project-logo-mark.antony span {
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 1;
}

.yc-brand-v2 .projects-page .client-card-grid {
  align-items: stretch;
}

.yc-brand-v2 .projects-page .client-card {
  display: flex;
  flex-direction: column;
}

.yc-brand-v2 .projects-page .client-card small {
  margin-top: auto;
  width: max-content;
}

@media (max-width: 760px) {
  .yc-brand-v2 .site-header {
    display: grid !important;
    grid-template-columns: auto 48px !important;
    align-items: center !important;
    gap: 12px;
    min-height: 68px !important;
    padding: 8px 14px !important;
  }

  .yc-brand-v2 .brand,
  .yc-brand-v2 .brand-logo {
    width: 96px !important;
    max-width: 96px !important;
  }

  .yc-brand-v2 .brand-logo img {
    content: url("./assets/brand/yc-logo-mark-white.png");
    width: 76px !important;
    max-width: 76px !important;
    height: auto !important;
    display: block;
  }

  .yc-brand-v2 .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    grid-column: 2;
    justify-self: end;
    width: 48px !important;
    height: 48px !important;
    border-radius: 15px !important;
  }

  .yc-brand-v2 .site-header::after {
    display: none !important;
    content: none !important;
  }

  .yc-brand-v2 .hero h1,
  .yc-brand-v2 .product-hero h1,
  .yc-brand-v2 .projects-page .product-hero h1 {
    font-size: clamp(2.25rem, 9.6vw, 2.95rem) !important;
    line-height: 1.06 !important;
  }

  .yc-brand-v2 .hero,
  .yc-brand-v2 .product-hero,
  .yc-brand-v2 .projects-page .product-hero {
    padding-top: 38px !important;
  }

  .yc-brand-v2 .client-card-grid,
  .yc-brand-v2 .projects-page .client-card-grid {
    gap: 18px !important;
  }

  .yc-brand-v2 .projects-page .client-card {
    padding: 16px !important;
  }

  .yc-brand-v2 .projects-page .client-card img {
    height: auto !important;
    aspect-ratio: 16 / 8.8;
    object-fit: cover;
  }

  .yc-brand-v2 .projects-page .client-card h3 {
    font-size: 1.2rem !important;
    line-height: 1.12 !important;
  }

  .yc-brand-v2 .domain-stack {
    display: block;
  }

  .yc-brand-v2 .domain-stack span {
    display: inline;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .yc-brand-v2 .domain-small {
    font-size: 1.08rem !important;
    white-space: normal;
    overflow-wrap: normal;
  }

  .yc-brand-v2 .main-nav.is-open {
    border-color: rgba(0, 216, 255, 0.42) !important;
    background: #020812 !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(22px);
  }
}

/* Public Nexus asset lock: no brand-book posters in customer-facing pages */
.yc-brand-v2 .hero-visual picture,
.yc-brand-v2 .nexus-brand-panel picture,
.yc-brand-v2 .about-brand-visual picture,
.yc-brand-v2 .yc-method-visual picture,
.yc-brand-v2 .nexus-method-card picture,
.yc-brand-v2 .nexus-identity-grid picture {
  display: contents;
}

.yc-brand-v2 .ecosystem-logo {
  width: min(190px, 42%);
  opacity: 0.18;
  filter: drop-shadow(0 0 22px rgba(0, 216, 255, 0.18));
}

.yc-brand-v2 .ecosystem-nexus {
  right: -58px;
  bottom: -54px;
  width: min(520px, 70%);
  max-height: 112%;
  object-fit: contain;
  object-position: right bottom;
}

.yc-brand-v2 .yc-ecosystem-visual {
  overflow: hidden;
  isolation: isolate;
}

.yc-brand-v2 .yc-ecosystem-visual::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% 42%;
  height: 48%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 216, 255, 0.18), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 1;
}

.yc-brand-v2 .ecosystem-products {
  z-index: 5;
}

.yc-brand-v2 .nexus-brand-panel {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.9fr);
}

.yc-brand-v2 .nexus-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.yc-brand-v2 .nexus-steps span,
.yc-brand-v2 .identity-pill-row span {
  border-color: rgba(0, 216, 255, 0.26);
  background: rgba(0, 216, 255, 0.08);
  color: #dff8ff;
}

.yc-brand-v2 .nexus-brand-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}

.yc-brand-v2 .identity-story-card img {
  width: min(320px, 82%);
  max-height: none;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(0, 216, 255, 0.14));
}

.yc-brand-v2 .about-brand-visual {
  overflow: hidden;
}

.yc-brand-v2 .about-brand-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 64% center;
}

.yc-brand-v2 .about-brand-visual > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.yc-brand-v2 .yc-method-visual img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
}

.yc-brand-v2 .nexus-method-card {
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
}

.yc-brand-v2 .nexus-method-card img {
  display: block !important;
  width: min(220px, 100%);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.yc-brand-v2 .nexus-identity-grid img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .yc-brand-v2 .nexus-brand-panel,
  .yc-brand-v2 .nexus-method-card {
    grid-template-columns: 1fr;
  }

  .yc-brand-v2 .nexus-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .yc-brand-v2 .ecosystem-logo {
    width: 132px;
  }

  .yc-brand-v2 .ecosystem-nexus {
    right: -32px;
    bottom: -10px;
    width: min(360px, 78%);
    max-height: 76%;
  }

  .yc-brand-v2 .ecosystem-products {
    width: min(220px, 66%);
    margin-top: 132px;
  }

  .yc-brand-v2 .ecosystem-products a {
    padding: 10px;
  }

  .yc-brand-v2 .nexus-steps,
  .yc-brand-v2 .identity-pill-row {
    grid-template-columns: 1fr;
  }

  .yc-brand-v2 .about-brand-visual img,
  .yc-brand-v2 .yc-method-visual img {
    min-height: 0;
    max-height: 360px;
    object-fit: contain;
  }
}

/* Navbar polish lock: clean YC Systems mark, active state and compact language control */
.yc-brand-v2 {
  --yc-dark: #0f172a;
  --yc-blue: #2563eb;
  --yc-cyan: #00d8ff;
}

.yc-brand-v2 :is(.section-pad, section, [id]) {
  scroll-margin-top: 96px;
}

.yc-brand-v2 .site-header {
  min-height: 76px !important;
  padding: 12px max(28px, calc((100vw - 1180px) / 2)) !important;
  border-bottom: 1px solid rgba(0, 216, 255, 0.15) !important;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(3, 10, 23, 0.94)) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.yc-brand-v2 .brand {
  min-width: 178px;
  color: #f8fbff;
  text-decoration: none;
}

.yc-brand-v2 .brand-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  width: auto !important;
  max-width: none !important;
  height: 46px !important;
  line-height: 1;
}

.yc-brand-v2 .brand-logo img.brand-logo-mark {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 14px rgba(0, 216, 255, 0.18));
}

.yc-brand-v2 .brand-logo-text {
  color: #f8fbff;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.yc-brand-v2 .main-nav {
  gap: clamp(18px, 2.4vw, 30px);
}

.yc-brand-v2 .main-nav a {
  position: relative;
  padding: 10px 0;
  color: #d8e5f4;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.yc-brand-v2 .main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yc-blue), var(--yc-cyan));
  box-shadow: 0 0 16px rgba(0, 216, 255, 0.42);
  opacity: 0;
  transition: left 180ms ease, right 180ms ease, opacity 180ms ease;
}

.yc-brand-v2 .main-nav a:hover,
.yc-brand-v2 .main-nav a:focus-visible,
.yc-brand-v2 .main-nav a[aria-current="page"] {
  color: var(--yc-cyan);
  text-shadow: 0 0 18px rgba(0, 216, 255, 0.22);
}

.yc-brand-v2 .main-nav a:hover::after,
.yc-brand-v2 .main-nav a:focus-visible::after,
.yc-brand-v2 .main-nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.yc-brand-v2 .language-chip {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 216, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 216, 255, 0.06);
  color: #f8fbff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.yc-brand-v2 .language-chip:hover,
.yc-brand-v2 .language-chip:focus-visible {
  border-color: rgba(0, 216, 255, 0.58);
  background: rgba(37, 99, 235, 0.16);
  color: var(--yc-cyan);
}

@media (max-width: 760px) {
  .yc-brand-v2 :is(.section-pad, section, [id]) {
    scroll-margin-top: 84px;
  }

  .yc-brand-v2 .site-header {
    display: flex !important;
    min-height: 68px !important;
    padding: 9px 14px !important;
  }

  .yc-brand-v2 .site-header::after {
    content: none !important;
  }

  .yc-brand-v2 .brand {
    min-width: 0;
  }

  .yc-brand-v2 .brand-logo {
    width: 48px !important;
    height: 48px !important;
    gap: 0;
  }

  .yc-brand-v2 .brand-logo img.brand-logo-mark {
    width: 48px !important;
    max-width: 48px !important;
    height: 48px !important;
  }

  .yc-brand-v2 .brand-logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .yc-brand-v2 .nav-toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 60;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    border-color: rgba(0, 216, 255, 0.34) !important;
    background: rgba(8, 20, 38, 0.82) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .yc-brand-v2 .nav-toggle::before {
    width: 21px !important;
    background: #f8fbff !important;
    box-shadow: 0 9px 0 #f8fbff !important;
  }

  .yc-brand-v2 .nav-toggle span {
    display: none !important;
  }

  .yc-brand-v2 .main-nav {
    top: 76px !important;
    left: 14px !important;
    right: 14px !important;
    gap: 6px !important;
    border: 1px solid rgba(0, 216, 255, 0.22) !important;
    border-radius: 18px !important;
    background: rgba(3, 10, 23, 0.96) !important;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5) !important;
  }

  .yc-brand-v2 .main-nav a,
  .yc-brand-v2 .main-nav .language-chip {
    width: 100%;
  }

  .yc-brand-v2 .main-nav a {
    padding: 13px 14px;
  }

  .yc-brand-v2 .main-nav a::after {
    left: 14px;
    right: auto;
    bottom: 7px;
    width: 28px;
  }

  .yc-brand-v2 .main-nav a[aria-current="page"] {
    color: #f8fbff;
    background: rgba(0, 216, 255, 0.08);
    border-radius: 12px;
  }

  .yc-brand-v2 .language-chip {
    justify-content: center;
    margin-top: 4px;
  }
}

/* YC Systems final cascade lock
   Keep this block last so old visual experiments above cannot override the official UI. */
.yc-brand-v2 :is(
  .compact-showcase,
  .yc-identity-system,
  .about-snapshot,
  .technology-hero,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .contact
) :is(h1, h2, h3) {
  color: #f8fbff !important;
}

.yc-brand-v2 :is(
  .compact-showcase,
  .yc-identity-system,
  .about-snapshot,
  .technology-hero,
  .method-section,
  .business-outcomes,
  .nexus-method-strip,
  .company-core,
  .values-band,
  .founder-section,
  .nexus-identity,
  .contact
) :is(p, li, dd, small, em) {
  color: #c7d7ea;
}

.yc-brand-v2 :is(
  .yc-os-product-card,
  .live-client-card,
  .package-grid article,
  .company-core-grid article,
  .trust-grid article,
  .values-mini-grid article,
  .method-grid article,
  .outcome-grid article
) {
  border: 1px solid rgba(0, 216, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(10, 27, 50, 0.84), rgba(4, 13, 27, 0.82)),
    radial-gradient(circle at 90% 110%, rgba(0, 216, 255, 0.12), transparent 12rem);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.yc-brand-v2 :is(.yc-os-product-card, .live-client-card, .package-grid article, .method-grid article, .outcome-grid article):hover {
  transform: translateY(-3px);
  border-color: rgba(92, 255, 92, 0.34);
}

.yc-brand-v2 .yc-os-product-card {
  min-height: 0;
  padding: 16px;
  gap: 12px;
}

.yc-brand-v2 .yc-os-product-card > img,
.yc-brand-v2 .live-client-card img {
  border-radius: 14px;
}

.yc-brand-v2 .yc-os-product-card > img {
  display: block;
  width: 100%;
  height: clamp(178px, 16vw, 236px);
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.yc-brand-v2 .yc-os-product-card h3,
.yc-brand-v2 .live-client-card h3 {
  color: #ffffff !important;
  overflow-wrap: normal;
  word-break: normal;
}

.yc-brand-v2 .yc-os-product-card .product-summary {
  margin: 0;
  color: #c7d7ea;
  font-size: 0.92rem;
  line-height: 1.5;
}

.yc-brand-v2 .yc-os-product-card > strong {
  margin-top: auto;
  color: var(--yc-os-action);
}

.yc-brand-v2 .live-client-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 16px !important;
}

.yc-brand-v2 .live-client-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto !important;
  object-fit: cover;
}

.yc-brand-v2 .live-client-card h3 {
  margin: 2px 0 0;
  font-size: 1.28rem;
  line-height: 1.08;
}

.yc-brand-v2 .live-client-card em {
  display: block;
  max-width: 100%;
  margin: -4px 0 2px;
  font-style: normal;
  color: #90a9c5;
  font-size: 0.78rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.yc-brand-v2 .live-client-card > span {
  border-color: rgba(0, 216, 255, 0.28);
  background: rgba(0, 216, 255, 0.1);
  color: #bfeeff;
}

.yc-brand-v2 .live-client-card p,
.yc-brand-v2 .live-client-card p:nth-of-type(n + 2) {
  display: block;
  margin: 0;
  color: #c7d7ea;
  font-size: 0.86rem;
  line-height: 1.45;
}

.yc-brand-v2 .live-client-card p strong {
  color: #f8fbff;
}

.yc-brand-v2 .live-client-card small {
  width: fit-content;
  margin-top: auto;
  border: 0;
  color: #06111f !important;
  background: linear-gradient(135deg, var(--yc-os-action), var(--yc-os-cyan));
  font-size: 0.72rem;
}

.yc-brand-v2 .method-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yc-brand-v2 .method-grid article {
  min-height: 230px;
}

@media (max-width: 1100px) {
  .yc-brand-v2 .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .yc-brand-v2 .yc-os-product-grid,
  .yc-brand-v2 .client-card-grid,
  .yc-brand-v2 .method-grid {
    grid-template-columns: 1fr !important;
  }

  .yc-brand-v2 .concept-chat {
    right: 14px;
    bottom: 14px;
  }

  .yc-brand-v2 .concept-chat-launcher {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 6px !important;
    border-radius: 999px !important;
  }

  .yc-brand-v2 .concept-chat-launcher span {
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
  }

  .yc-brand-v2 .concept-chat-launcher strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
  }
}

/* Final responsive lock: keep client projects from becoming a long single column on tablet/narrow desktop. */
@media (min-width: 680px) and (max-width: 900px) {
  .yc-brand-v2 .home-clients-section .client-card-grid,
  .yc-brand-v2 .projects-page .client-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .yc-brand-v2 .home-clients-section .client-card-grid .live-client-card,
  .yc-brand-v2 .home-clients-section .client-card-grid .live-client-card:nth-child(4),
  .yc-brand-v2 .home-clients-section .client-card-grid .live-client-card:nth-child(5),
  .yc-brand-v2 .projects-page .client-card-grid .live-client-card,
  .yc-brand-v2 .projects-page .client-card-grid .live-client-card:nth-child(4),
  .yc-brand-v2 .projects-page .client-card-grid .live-client-card:nth-child(5) {
    grid-column: auto !important;
  }
}

/* Final product-card lock: tablet and small laptop should feel curated, not cramped. */
@media (min-width: 680px) and (max-width: 1120px) {
  .yc-brand-v2 .home-products-section .yc-os-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .yc-brand-v2 .home-products-section .yc-os-product-card > img {
    height: clamp(210px, 25vw, 270px);
  }
}
