:root {
  color-scheme: light;
  --navy: #080b1a;
  --navy-2: #10172f;
  --blue: #18d7ff;
  --blue-2: #82f72f;
  --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;
}

* {
  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: #f8fbf7;
  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-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;
}

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-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
  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(--blue-2));
  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: #ffffff;
}

.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(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: 0 18px 50px rgba(8, 11, 26, 0.08);
}

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

.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 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
}

.client-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(24, 215, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(24, 215, 255, 0.08);
  font-size: 18px;
  line-height: 1;
}

.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(24, 215, 255, 0.22);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--navy);
  background: rgba(24, 215, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.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;
}

.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(--blue-2));
}

.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(--blue-2));
}

.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:
    linear-gradient(180deg, #f8fbf7, #ffffff);
}

.solution-overview-grid,
.project-match-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-overview-grid article {
  min-height: 220px;
  border: 1px solid rgba(24, 215, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(24, 215, 255, 0.12), 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: var(--blue);
  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(--blue-2));
  font-weight: 950;
}

.project-match {
  background:
    linear-gradient(180deg, #ffffff, #eef4f7);
}

.project-match-grid a {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid rgba(24, 215, 255, 0.24);
  border-radius: var(--radius);
  padding: 16px;
  color: #071018;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 42px rgba(24, 215, 255, 0.22);
  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(--blue-2));
  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(--blue-2));
}

.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-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-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 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;
}

.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(--blue-2));
  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(--blue-2));
  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(--blue-2);
  --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(--blue-2));
  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(--blue-2));
  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(--blue-2));
  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:
    linear-gradient(115deg, rgba(130, 247, 47, 0.2), transparent 34%),
    linear-gradient(245deg, rgba(24, 215, 255, 0.2), transparent 38%),
    linear-gradient(180deg, #080b1a 0%, #10172f 72%, #eef4f7 100%);
}

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

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-2);
  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;
}

.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(--blue-2));
  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));
  }

  .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;
  }

  .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;
  }
}

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