/* Translated from prototype-source/globals.css — not React */

:root {
  --ink: #333333;
  --violet: #3d4166;
  --lavender: #a8a6c9;
  --lavender-soft: #d8d6e6;
  --orange: #f28c28;
  /* Text accents on light paper (≥4.5:1). Keep --orange for fills/buttons. */
  --orange-ink: #b35600;
  --paper: #f2f2f2;
  --white: #ffffff;
  --line: rgba(61, 65, 102, 0.16);
  --shadow: 0 24px 70px rgba(61, 65, 102, 0.1);
  --max: 1320px;
  --dw-header-offset: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: #fbfbfa;
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { flex: 0 0 auto; }

.section-shell { width: min(calc(100% - 80px), var(--max)); margin-inline: auto; }
.site-header {
  width: min(calc(100% - 80px), var(--max));
  height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 0;
  position: relative;
  z-index: 20;
}
.wordmark { display: inline-flex; align-items: center; width: fit-content; }
.wordmark img { display: block; width: 200px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.2vw, 34px); font-size: 13px; font-weight: 400; }
.desktop-nav a { position: relative; padding-block: 10px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 1px; height: 1px; background: var(--orange); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav .active::after { right: 0; }
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--violet);
  border: 1px solid var(--violet);
  color: white;
  font-size: 13px;
  font-weight: 400;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); background: #303451; }
.button-small { min-height: 50px; padding-inline: 22px; }
.button-secondary { background: transparent; color: var(--violet); }
.button-secondary:hover { background: rgba(216,214,230,.3); }
.button-orange { background: var(--orange); border-color: var(--orange); color: #231f20; }
.button-orange:hover { background: #ff9c3c; border-color: #ff9c3c; }
.menu-button { display: none; background: transparent; border: 0; color: var(--violet); }

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(520px, 7fr);
  gap: 42px;
  align-items: center;
  position: relative;
  padding-block: 56px 64px;
}
.eyebrow { margin: 0 0 28px; color: var(--violet); font-size: 11px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 { max-width: 680px; margin: 0; color: var(--violet); font-size: clamp(56px, 5.4vw, 84px); line-height: .99; letter-spacing: -.055em; font-weight: 300; }
.hero-lead { max-width: 590px; margin: 32px 0 0; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 48px; font-size: 12px; font-weight: 400; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; padding: 0 22px; border-right: 1px solid var(--lavender-soft); }
.hero-proof span svg { color: var(--orange); flex-shrink: 0; }
.hero-proof span:first-child { padding-left: 0; }
.hero-proof span:last-child { border: 0; }

.hero-system {
  --orbit-one-size: 430px;
  --orbit-two-size: 560px;
  --system-core-size: 160px;
  --system-node-size: 92px;
  --core-ring-one: -58px;
  --core-ring-two: -135px;
  --connector-size: 95px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(168,166,201,.32); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: var(--orbit-one-size); height: var(--orbit-one-size); }
.orbit-two { width: var(--orbit-two-size); height: var(--orbit-two-size); border-style: dashed; opacity: .65; }
.system-core, .system-node { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,.88); color: var(--violet); border: 1px solid var(--lavender); border-radius: 50%; box-shadow: 0 12px 36px rgba(61,65,102,.06); }
.system-core { width: var(--system-core-size); height: var(--system-core-size); left: 50%; top: 50%; transform: translate(-50%,-50%); gap: 12px; }
.system-core::before, .system-core::after { content: ""; position: absolute; inset: var(--core-ring-one); border: 1px dotted var(--lavender); border-radius: 50%; opacity: .7; }
.system-core::after { inset: var(--core-ring-two); opacity: .38; }
.system-core span, .system-node span { font-size: 10px; font-weight: 400; text-transform: uppercase; letter-spacing: .08em; }
.system-node { width: var(--system-node-size); height: var(--system-node-size); gap: 7px; transition: transform .3s ease, background .3s ease; }
.system-node:hover { transform: translateY(-4px); background: var(--paper); }
.node-seo { left: 7%; top: 43%; }
.node-wordpress { right: 10%; top: 13%; }
.node-content { right: 1%; top: 56%; }
.node-support { left: 48%; bottom: 0; }
.node-design { left: 22%; top: 8%; }
.system-node::after { content: ""; position: absolute; width: var(--connector-size); border-top: 1px dotted var(--lavender); transform-origin: left center; z-index: -1; }
.node-seo::after { left: 90%; transform: rotate(-8deg); }
.node-wordpress::after { right: 72%; top: 78%; transform: rotate(139deg); }
.node-content::after { right: 72%; top: 28%; transform: rotate(205deg); }
.node-support::after { left: 45%; bottom: 92%; transform: rotate(-86deg); }
.node-design::after { left: 69%; top: 80%; transform: rotate(36deg); }
.signal-card { position: absolute; z-index: 3; width: 210px; padding: 14px 16px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.signal-card span, .signal-card strong { display: block; }
.signal-card span { margin-bottom: 6px; color: #595959; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.signal-card strong { color: var(--violet); font-size: 12px; font-weight: 400; }
.signal-rotator { position: absolute; min-height: 68px; overflow: hidden; }
.signal-rotator .signal-slide {
	position: absolute;
	inset: 14px 16px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .45s ease, transform .45s ease;
	pointer-events: none;
}
.signal-rotator .signal-slide.is-active {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}
.signal-preview strong { transition: opacity .35s ease; }
.signal-top { right: 4%; top: 3%; }
.signal-bottom { left: 1%; bottom: 4%; }
.scroll-cue { position: absolute; left: 50%; bottom: 34px; color: var(--violet); transform: translateX(-50%); animation: bounce 2.4s ease-in-out infinite; }

.capability-strip,
.principle-band {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--violet);
	color: #fff;
	overflow: hidden;
}
.principle-band::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
	z-index: 2;
}
.principle-band::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 25%;
	background: var(--orange);
	transform: translateX(calc(var(--principle-i, 0) * 100%));
	transition: transform 0.55s cubic-bezier(0.22, 0.8, 0.22, 1);
	pointer-events: none;
	z-index: 3;
}
.capability-strip > div,
.principle-band__item {
	position: relative;
	min-height: 128px;
	padding: 28px 26px 34px;
	display: flex;
	align-items: center;
	gap: 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 13px;
	font-weight: 400;
	opacity: 0.58;
	transition: opacity 0.35s ease, background 0.35s ease;
	cursor: default;
}
.principle-band__item:last-child { border-right: 0; }
.principle-band__item.is-active {
	opacity: 1;
	background: rgba(255, 255, 255, 0.07);
}
.principle-band__index {
	position: absolute;
	top: 16px;
	left: 26px;
	font-size: 10px;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.72);
}
.principle-band__icon {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(242, 140, 40, 0.45);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
	background: rgba(242, 140, 40, 0.08);
	transition: transform 0.4s ease, border-color 0.35s ease, background 0.35s ease;
}
.principle-band__item.is-active .principle-band__icon {
	transform: none;
	border-color: var(--orange);
	background: rgba(242, 140, 40, 0.18);
}
.principle-band__title {
	margin: 0;
	padding-top: 8px;
	font-size: clamp(14px, 1.15vw, 17px);
	line-height: 1.3;
	font-weight: 300;
	letter-spacing: -0.02em;
	color: #fff;
}
.principle-band__title strong {
	display: block;
	color: #fff;
	font-weight: 400;
	letter-spacing: -0.03em;
}
.principle-band__item.is-active .principle-band__title strong {
	color: #fff;
}
.principle-band__title span {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.92em;
}
.capability-strip svg,
.principle-band svg { color: var(--orange); stroke-width: 1.3; }

.authority { padding-block: 88px 72px; display: grid; grid-template-columns: 5fr 7fr; column-gap: 90px; background: linear-gradient(135deg, rgba(242,242,242,.34), rgba(216,214,230,.08) 65%, transparent); }
.section-intro h2, .section-heading h2, .difference h2, .case-proof h2, .about h2, .faq h2, .final-cta h2 { margin: 0; color: var(--violet); font-size: clamp(38px, 4.1vw, 62px); line-height: 1.08; letter-spacing: -.045em; font-weight: 300; }
.authority-copy { max-width: 700px; margin: 28px 0 0; font-size: 17px; line-height: 1.8; }
.stat-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-block: 1px solid var(--line); }
.dw-page .stat-grid { margin-top: 28px; }
.stat-grid article { padding: 42px 28px; border-right: 1px solid var(--line); }
.stat-grid article:last-child { border: 0; }
.stat-grid strong, .stat-grid span { display: block; }
.stat-grid strong { color: var(--violet); font-size: clamp(42px, 5vw, 68px); font-weight: 300; letter-spacing: -.06em; font-variant-numeric: tabular-nums; }
.stat-grid span { margin-top: 7px; font-size: 12px; font-weight: 400; color: var(--gray, #333); }
.stat-grid article { opacity: 0; transform: translateY(14px); transition: opacity .55s cubic-bezier(.22,.8,.22,1), transform .55s cubic-bezier(.22,.8,.22,1); }
.stat-grid.is-visible article { opacity: 1; transform: none; }
.stat-grid.is-visible article:nth-child(1) { transition-delay: .05s; }
.stat-grid.is-visible article:nth-child(2) { transition-delay: .12s; }
.stat-grid.is-visible article:nth-child(3) { transition-delay: .19s; }
.stat-grid.is-visible article:nth-child(4) { transition-delay: .26s; }
/* If JS never marks visible, still show numbers after paint. */
@keyframes dw-stats-fallback {
	to { opacity: 1; transform: none; }
}
.stat-grid article { animation: dw-stats-fallback .01s 5s forwards; }
.stat-grid.is-visible article { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .stat-grid article { opacity: 1; transform: none; transition: none; }
}

.core-services { padding-block: 72px 48px; }
.core-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.core-service {
	display: grid;
	gap: 16px;
	align-content: start;
	padding: 32px 28px;
	border: 1px solid var(--line);
	background: rgba(255,255,255,.78);
}
.core-service__icon { color: var(--orange); }
.core-service__icon svg { display: block; }
.core-service h3 {
	margin: 0;
	color: var(--violet);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 400;
	letter-spacing: -.03em;
	line-height: 1.2;
}
.core-service > p {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #555;
}
.core-service__points {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 16px;
}
.core-service__points li {
	position: relative;
	padding-left: 14px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--violet);
}
.core-service__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange);
}
.core-services__note {
	margin: 28px 0 0;
	font-size: 14px;
	line-height: 1.7;
}
.core-services__note a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
	.core-services__grid { grid-template-columns: 1fr; }
	.core-service__points { grid-template-columns: 1fr; }
}

.services { padding-block: 48px 88px; background: linear-gradient(180deg, transparent, rgba(242,242,242,.42), transparent); }
.services--compact { padding-block: 24px 72px; }
.services-grid--compact { grid-template-columns: repeat(4, 1fr); }
.services-grid--compact .service-card { min-height: 220px; padding: 22px; }
.services-grid--compact .service-card h3 { margin-top: 20px; font-size: 15px; }
.services-grid--compact .service-card p { font-size: 12px; }
.section-heading { display: grid; grid-template-columns: 7fr 4fr; gap: 8.33%; align-items: end; margin-bottom: 40px; }
.section-heading > p { margin: 0 0 7px; font-size: 15px; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 295px; padding: 28px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.58); transition: background .3s ease, transform .3s ease; }
.service-card:hover { background: white; transform: translateY(-4px); box-shadow: var(--shadow); z-index: 2; }
.service-number { position: absolute; right: 20px; top: 20px; color: var(--lavender); font-size: 10px; font-weight: 400; }
.service-card > svg:not(.service-arrow) { color: var(--violet); }
.service-card h3 { margin: 28px 0 12px; color: var(--violet); font-size: 17px; font-weight: 400; }
.service-card p { margin: 0; font-size: 12.5px; line-height: 1.7; }
.service-arrow { position: absolute; right: 24px; bottom: 24px; color: var(--orange); }

.difference { background: var(--violet); color: white; }
.difference-inner {
	padding-block: 72px 80px;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(36px, 5.5vw, 64px);
	align-items: start;
}
.difference-copy {
	display: grid;
	align-content: start;
	gap: 16px;
	padding-top: 4px;
}
.difference-copy .eyebrow { margin: 0; }
.difference-copy__note {
	margin: 0;
	max-width: 42ch;
	color: rgba(226, 225, 235, 0.88);
	font-size: 14px;
	line-height: 1.7;
	font-weight: 300;
}
.eyebrow-light { color: var(--lavender-soft); }
.difference h2 {
	color: white;
	max-width: 14ch;
	margin: 0;
}
.difference-list {
	display: grid;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.difference-list article {
	display: grid;
	grid-template-columns: 36px 40px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 22px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.difference-list__index {
	padding-top: 10px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 1;
}
.difference-list__icon {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: var(--orange);
}
.difference-list__icon svg,
.difference-list svg {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--orange);
	stroke-width: 1.3;
}
.difference-list__text {
	min-width: 0;
	padding-top: 2px;
}
.difference-list h3 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.25;
}
.difference-list p {
	margin: 0;
	max-width: 38ch;
	color: rgba(226, 225, 235, 0.84);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 300;
}

.work { padding-block: 88px; background: linear-gradient(145deg, rgba(216,214,230,.09), transparent 55%); }
.work-heading { align-items: end; }
.work-heading .text-link { justify-self: end; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--violet); font-size: 12px; font-weight: 400; border-bottom: 1px solid var(--lavender); padding-bottom: 6px; }
.text-link svg { color: var(--orange); transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(4px); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; }
.project-card { overflow: hidden; min-width: 0; }
.project-visual {
	display: block;
	aspect-ratio: 1 / 1;
	min-height: 0;
	height: auto;
	padding: 28px;
	position: relative;
	overflow: hidden;
	background: #eceaf2;
	transition: transform .5s ease;
}
.project-visual img { object-fit: cover; width: 100%; height: 100%; display: block; position: absolute; inset: 0; }
.project-visual.project-has-thumb { padding: 0; }
.project-visual.project-has-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(61,65,102,.55)); pointer-events: none; z-index: 1; }
.article-visual { position: relative; }
.article-visual img { object-fit: cover; width: 100%; height: 100%; display: block; position: absolute; inset: 0; }
.article-visual.article-has-thumb { display: block; padding: 0; overflow: hidden; position: relative; min-height: 220px; background: #eceaf2; }
.client-cloud a { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 18px; border: 1px solid var(--line); color: var(--violet); text-decoration: none; font-size: 11px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, border-color .25s ease; }
.client-cloud a:hover { background: #fff; border-color: var(--lavender); }
.case-proof-links { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 22px; }
.project-card:hover .project-visual { transform: scale(.99); }
.browser-bar { position: absolute; left: 0; right: 0; top: 0; height: 24px; display: flex; gap: 5px; align-items: center; padding-left: 12px; background: rgba(255,255,255,.78); }
.browser-bar i { width: 5px; height: 5px; border-radius: 50%; background: var(--lavender); }
.silcar-visual { background: linear-gradient(125deg,#23283d 0 46%,#dadce0 46% 100%); color: white; }
.silcar-visual::after { content: ""; position: absolute; width: 54%; height: 44%; right: -2%; bottom: 13%; border: 1px solid rgba(61,65,102,.3); transform: skewX(-12deg); background: repeating-linear-gradient(90deg,transparent 0 38px,rgba(61,65,102,.1) 39px 40px); }
.visual-kicker { margin: 85px 0 24px; color: var(--lavender-soft); font-size: 10px; letter-spacing: .18em; }
.silcar-visual strong { display: block; max-width: 390px; font-size: 54px; line-height: 1.03; font-weight: 300; letter-spacing: -.05em; }
.visual-lines { display: flex; gap: 7px; margin-top: 48px; }
.visual-lines span { width: 48px; height: 2px; background: var(--orange); }
.ira-visual { background: #e8e6ed; color: var(--violet); }
.ira-visual strong { display: block; max-width: 310px; margin-top: 70px; font-size: 36px; line-height: 1.08; font-weight: 300; }
.moto-line { position: absolute; width: 250px; height: 140px; right: 8%; top: 31%; border: 1px solid var(--violet); border-radius: 65% 40% 50% 35%; transform: rotate(-8deg); }
.moto-line::before, .moto-line::after { content: ""; position: absolute; bottom: -28px; width: 60px; height: 60px; border: 2px solid var(--violet); border-radius: 50%; }
.moto-line::before { left: 14px; }.moto-line::after { right: 14px; }
.product-pills { position: absolute; bottom: 40px; left: 40px; display: flex; gap: 8px; }
.product-pills span { width: 54px; height: 4px; background: var(--orange); }
.supa-visual { background: #e4e8f0; color: var(--violet); }
.supa-visual strong { display: block; margin-top: 26px; font-size: 36px; line-height: 1.08; font-weight: 300; max-width: 320px; }
.project-meta { min-height: 110px; padding: 24px 8px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.project-meta span { color: #595959; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.project-meta__index {
	display: inline-block;
	margin-right: 10px;
	color: var(--orange);
	letter-spacing: .16em;
}
.project-meta h3 {
	margin: 7px 0 0;
	color: var(--violet);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.project-meta > svg { color: var(--orange); stroke-width: 1.3; }
.project-card--enriched {
	display: grid;
	grid-template-rows: auto 1fr;
	border: 1px solid var(--line);
	background: rgba(255,255,255,.7);
}
.project-card--enriched .project-visual { border-bottom: 1px solid var(--line); }
.project-body { padding: 22px 20px 24px; display: grid; gap: 12px; align-content: start; }
.project-body__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0;
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #595959;
}
.project-body h3 {
	margin: 0;
	color: var(--violet);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
}
.project-facts { margin: 0; display: grid; gap: 10px; }
.project-facts > div { margin: 0; }
.project-facts dt {
	margin: 0 0 2px;
	color: var(--orange-ink);
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.project-facts dd {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.55;
	color: #555;
}
.project-services {
	margin: 0;
	color: var(--violet);
	font-size: 11px;
	letter-spacing: .04em;
}
.home-testimonials { padding-block: 72px 40px; }
.home-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.home-testimonial {
	display: grid;
	gap: 18px;
	padding: 28px 24px;
	border: 1px solid var(--line);
	background: rgba(255,255,255,.76);
}
.home-testimonial blockquote { margin: 0; }
.home-testimonial blockquote p {
	margin: 0;
	color: var(--violet);
	font-size: 15px;
	line-height: 1.65;
	font-weight: 300;
}
.home-testimonial__meta { display: grid; gap: 4px; }
.home-testimonial__meta strong { color: var(--violet); font-size: 14px; font-weight: 500; }
.home-testimonial__meta span { font-size: 12px; color: #666; }
.home-testimonial__svc { letter-spacing: .04em; }
.home-testimonial .text-link { margin-top: 8px; justify-self: start; }
@media (max-width: 900px) {
	.home-testimonials__grid { grid-template-columns: 1fr; }
	.services-grid--compact { grid-template-columns: repeat(2, 1fr); }
}
.project-visual__cue {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--violet);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .3s ease, transform .3s ease;
}
.project-visual__cue svg { color: var(--orange); }
.project-card:hover .project-visual__cue,
.project-visual:focus-visible .project-visual__cue {
	opacity: 1;
	transform: none;
}

.process { padding-block: 24px 88px; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 230px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid span { color: var(--orange-ink); font-size: 11px; font-weight: 500; }
.process-grid h3 { margin: 24px 0 12px; color: var(--violet); font-size: 18px; font-weight: 400; }
.process-grid p { margin: 0; max-width: 330px; font-size: 13px; line-height: 1.75; }

.cases { background: var(--paper); }
.cases > .section-shell { padding-block: 80px; display: grid; grid-template-columns: 6fr 5fr; gap: 8.33%; align-items: center; }
.case-quote { padding: 48px; background: white; border: 1px solid var(--line); }
.case-quote > svg { color: var(--orange); stroke-width: 1.25; }
.case-quote blockquote { margin: 35px 0 30px; color: var(--violet); font-size: clamp(27px,3vw,42px); line-height: 1.25; letter-spacing: -.035em; }
.case-quote p { margin: 0; font-size: 11px; font-weight: 400; }
.case-proof > p:not(.eyebrow) { font-size: 14px; line-height: 1.8; }
.client-cloud { display: grid; grid-template-columns: repeat(2,1fr); margin: 38px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-cloud span { min-height: 60px; padding: 20px 16px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--violet); font-size: 10px; font-weight: 400; letter-spacing: .08em; }

.about { padding-block: 88px; display: grid; grid-template-columns: 5fr 6fr; gap: 8.33%; align-items: center; background: linear-gradient(135deg, rgba(242,242,242,.4), rgba(216,214,230,.08)); }
.portrait-placeholder { min-height: 610px; position: relative; background: var(--paper); overflow: hidden; }
.portrait-placeholder img { width: 100%; height: 100%; min-height: 610px; display: block; object-fit: contain; object-position: center; filter: grayscale(1); }
.about-copy > p:not(.eyebrow) { margin: 28px 0 0; max-width: 650px; font-size: 15px; line-height: 1.85; }
.about-copy .text-link { margin-top: 36px; }

.resources { padding-block: 24px 88px; }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.article-visual { height: 240px; margin-bottom: 24px; display: grid; place-items: center; background: var(--paper); color: var(--violet); }
.article-visual svg { width: 70px; height: 70px; stroke-width: .7; }
.article-2 { background: var(--violet); color: var(--lavender-soft); }
.article-3 { background: #eee7de; color: #7e6247; }
.article-card > span { color: var(--orange-ink); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; }
.article-card h3 { margin: 12px 0; color: var(--violet); font-size: 18px; line-height: 1.45; font-weight: 400; }
.article-card > p { margin: 0 0 22px; font-size: 13px; line-height: 1.7; }

.faq { padding-block: 24px 72px; display: grid; grid-template-columns: 4fr 7fr; gap: 8.33%; }
.faq-heading > p:not(.eyebrow) { max-width: 420px; margin-top: 25px; font-size: 14px; line-height: 1.8; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; cursor: pointer; color: var(--violet); font-size: 15px; font-weight: 400; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { transition: transform .25s ease; }
.faq-list details[open] summary svg { transform: rotate(90deg); }
.faq-list details p { margin: -8px 50px 27px 0; font-size: 13px; line-height: 1.75; }

.final-cta { margin-bottom: 48px; padding: 56px; display: grid; grid-template-columns: 7fr 4fr; gap: 8.33%; background: var(--violet); color: white; }
.final-cta h2 { color: white; }
.cta-actions > p { margin: 0 0 28px; font-size: 14px; line-height: 1.8; }
.cta-actions .button { width: 100%; }
.whatsapp-link { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; color: var(--lavender-soft); font-size: 12px; }
.whatsapp-link svg { width: 18px; }

.footer { background: #292d49; color: white; }
.footer-grid { padding-block: 56px; display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 48px; }
.wordmark-light { padding: 0; background: transparent; }
.wordmark-light img { width: 168px; height: auto; }
.footer-brand p { max-width: 320px; color: #d4d3df; font-size: 12px; line-height: 1.7; }
.footer-grid h3 { margin: 0 0 16px; color: var(--lavender-soft); font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #e3e2eb;
	font-size: 14px;
	line-height: 1.45;
}
.footer-bottom {
	min-height: 64px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 25px;
	padding-block: 16px;
	padding-inline: 0;
	border-top: 1px solid rgba(255,255,255,.12);
	color: #bbb9cb;
	font-size: 12px;
	position: relative;
	z-index: 95;
}
.footer-bottom span { margin-right: auto; }
.footer-bottom a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 8px;
	color: #d4d3df;
	text-decoration: underline;
	text-underline-offset: 3px;
	position: relative;
	z-index: 96;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
	color: #fff;
}

.reveal { animation: fadeUp .8s cubic-bezier(.22,.8,.22,1) both; }
.delay-1 { animation-delay: .16s; }

/* Motion system */
@keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes nodePulse { 0%, 100% { box-shadow: 0 12px 36px rgba(61,65,102,.06); } 50% { box-shadow: 0 14px 40px rgba(61,65,102,.12); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes underlineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes cardLift { from { transform: translateY(0); } to { transform: translateY(-4px); } }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

.dw-reveal { opacity: 1; transform: none; }
html.dw-motion-on .dw-reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s cubic-bezier(.22,.8,.22,1), transform .65s cubic-bezier(.22,.8,.22,1); }
html.dw-motion-on .dw-reveal.is-inview { opacity: 1; transform: none; }
.dw-reveal-stagger { transition-delay: calc(var(--i, 0) * 0.07s + 0.04s); }

.hero-system.is-motion-ready .orbit-one { animation: orbitSpin 48s linear infinite; }
.hero-system.is-motion-ready .orbit-two { animation: orbitSpin 72s linear infinite reverse; }
.hero-system.is-motion-ready .system-node { animation: nodePulse 4.5s ease-in-out infinite; }
.hero-system.is-motion-ready .node-seo { animation-delay: 0s; }
.hero-system.is-motion-ready .node-wordpress { animation-delay: .6s; }
.hero-system.is-motion-ready .node-content { animation-delay: 1.2s; }
.hero-system.is-motion-ready .node-support { animation-delay: 1.8s; }
.hero-system.is-motion-ready .node-design { animation-delay: 2.4s; }

.site-header .button,
.site-header .dw-header__cta .wp-block-button__link { transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header .button:hover,
.site-header .dw-header__cta .wp-block-button__link:hover { box-shadow: 0 8px 24px rgba(61,65,102,.12); }

.project-card { transition: transform .3s ease, box-shadow .3s ease; }
.project-card:hover { transform: translateY(-4px); }
.project-has-thumb img { transition: transform 8s ease; }
.project-card:hover .project-has-thumb img { transform: none; }

.article-card { transition: transform .3s ease; }
.article-card:hover { transform: translateY(-4px); }

.client-cloud a { transition: color .25s ease, transform .25s ease; }
.client-cloud a:hover { transform: translateY(-2px); color: var(--orange); }

.socials a { transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.socials a:hover { transform: translateY(-2px); border-color: rgba(242,140,40,.5); }

.dw-motion-reduced .dw-reveal,
.dw-reveal.is-inview { opacity: 1; transform: none; transition: none; }
.dw-motion-reduced .hero-system.is-motion-ready .orbit,
.dw-motion-reduced .hero-system.is-motion-ready .system-node { animation: none; }
.dw-motion-reduced .principle-band__item { opacity: 1; }
.dw-motion-reduced .principle-band::before,
.dw-motion-reduced .principle-band::after { display: none; }
.dw-motion-reduced .signal-rotator .signal-slide { position: static; opacity: 0; transform: none; display: none; }
.dw-motion-reduced .signal-rotator .signal-slide.is-active { display: block; opacity: 1; }

@media (max-width: 1100px) {
  .section-shell, .site-header { width: min(calc(100% - 48px),var(--max)); }
  .site-header { grid-template-columns: 180px 1fr auto; }
  .desktop-nav { gap: 16px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-system { min-height: 520px; transform: scale(.9); transform-origin: center; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .services-grid--compact { grid-template-columns: repeat(3, 1fr); }
  .authority, .difference-inner, .cases > .section-shell, .about { column-gap: 55px; }
}

@media (max-width: 820px) {
  .section-shell, .site-header { width: min(calc(100% - 40px),var(--max)); }
  .site-header { height: 64px; grid-template-columns: minmax(0, 1fr) auto auto; width: min(calc(100% - 40px),var(--max)); }
  .site-header > .button { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 56px 48px; display: flex; flex-direction: column; }
  .hero-copy { order: 1; }
  .hero-system { order: 2; }
  .hero .scroll-cue { order: 3; }
  .hero-copy .hero-actions { margin-top: 28px; }
  .hero-copy .hero-proof { margin-top: 28px; }
  .hero h1 { max-width: 680px; }
  .hero-system { min-height: 420px; width: min(100%,620px); margin: 28px auto 0; transform: none; }
  .scroll-cue { display: none; }
  .capability-strip,
  .principle-band { grid-template-columns: repeat(2, 1fr); }
  .principle-band::before,
  .principle-band::after { display: none; }
  .capability-strip > div,
  .principle-band__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .principle-band__item:nth-of-type(odd) {
	border-right: 1px solid rgba(255, 255, 255, 0.14);
  }
  .principle-band__item:nth-of-type(even) {
	border-right: 0;
  }
  .authority, .difference-inner, .cases > .section-shell, .about, .faq, .final-cta { grid-template-columns: 1fr; }
  .authority { padding-block: 64px; }
  .authority-copy { margin-top: 24px; }
  .stat-grid { grid-template-columns: repeat(2,1fr); margin-top: 36px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { margin-top: 12px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .difference-list { margin-top: 8px; }
  .difference-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }
  .difference-list__index { display: none; }
  .difference h2 { max-width: none; }
  .project-grid { grid-template-columns: 1fr; gap: 28px; }
  .project-visual { aspect-ratio: 1 / 1; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .case-proof, .about-copy, .faq-list, .cta-actions { margin-top: 36px; }
  .portrait-placeholder, .portrait-placeholder img { min-height: 520px; }
  .article-grid { grid-template-columns: 1fr; gap: 36px; }
  .article-card h3, .article-card > p { min-height: auto; }
  .article-visual { height: 360px; }
  .final-cta { padding: 40px; margin-bottom: 32px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 540px) {
  .section-shell, .site-header { width: min(calc(100% - 28px),var(--max)); }
  .hero { padding-top: 60px; }
  .hero h1 { font-size: clamp(34px, 9.2vw, 49px); line-height: 1.05; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button,
  .hero-actions .wp-element-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .hero-actions .button svg,
  .hero-actions .wp-element-button svg,
  .hero-actions .dw-cta-icon {
    flex: 0 0 auto;
  }
  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .hero-proof span {
    width: auto;
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
    padding-inline: 0;
    border: 0;
  }
  .hero-proof span:first-child { padding-left: 0; }
  .hero-system {
    --orbit-one-size: 270px;
    --orbit-two-size: 330px;
    --system-core-size: 112px;
    --system-node-size: 68px;
    --core-ring-one: -38px;
    --core-ring-two: -82px;
    --connector-size: 62px;
    min-height: 320px;
    margin-top: 15px;
    transform: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .system-core span, .system-node span { font-size: 8px; letter-spacing: .04em; }
  .system-core svg { width: 28px; height: 28px; }
  .system-node svg { width: 18px; height: 18px; }
  .signal-card { display: none; }
  .capability-strip,
  .principle-band { grid-template-columns: 1fr; }
  .principle-band::before,
  .principle-band::after { display: none; }
  .capability-strip > div,
  .principle-band__item {
	min-height: 92px;
	padding: 22px 24px 24px;
	opacity: 1;
	border-right: 0;
  }
  .principle-band__item.is-active { background: rgba(255, 255, 255, 0.05); }
  .principle-band__title { font-size: 15px; }
  .section-intro h2, .section-heading h2, .difference h2, .case-proof h2, .about h2, .faq h2, .final-cta h2 { font-size: 38px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid article { padding: 28px 18px; }
  .stat-grid strong { font-size: 43px; }
  .authority, .services, .work, .about, .resources { padding-block: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; padding: 26px 24px 62px; }
  .service-card h3 { margin-top: 38px; font-size: 18px; }
  .service-card p { font-size: 13px; }
  .service-arrow { right: 24px; bottom: 22px; }
  .difference-inner, .cases > .section-shell { padding-block: 56px; }
  .project-visual { aspect-ratio: 1 / 1; }
  .project-visual:not(.project-has-thumb) { padding: 28px; }
  .silcar-visual strong { font-size: 38px; }
  .moto-line { right: -15%; opacity: .7; }
  .process-grid { grid-template-columns: 1fr; }
  .case-quote { padding: 38px 26px; }
  .about { padding-top: 56px; }
  .portrait-placeholder, .portrait-placeholder img { min-height: 430px; }
  .article-visual { height: 250px; }
  .faq { padding-block: 32px 56px; }
  .final-cta { width: 100%; margin-bottom: 0; padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { align-items: flex-start; }
  .footer-bottom span { flex: 0 0 100%; margin-right: 0; }
  .footer-bottom a { display: inline-flex; min-height: 44px; align-items: center; }
}

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


/* WordPress / FSE integrations */
body {
  background: #fbfbfa;
}
.dw-draft-banner { display: none; } /* hide draft strip once visual direction is applied; re-enable if needed */
.wp-site-blocks > header { margin: 0; }
.wp-site-blocks > footer { margin: 0; }
.dw-main, main.dw-main { padding: 0; max-width: none; }
.site-header .wp-block-navigation { justify-content: center; }
.site-header .wp-block-navigation a { font-size: 13px; font-weight: 400; }
.site-header .wp-block-navigation__responsive-container-open {
  color: var(--violet);
  width: 44px;
  height: 44px;
}

/* Desktop: always show inline nav, never the hamburger. */
@media (min-width: 821px) {
  .site-header .wp-block-navigation__responsive-container-open {
    display: none !important;
  }
  .site-header .wp-block-navigation__responsive-container {
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
  }
  .site-header .wp-block-navigation__responsive-container.is-menu-open,
  .site-header .wp-block-navigation__responsive-container.hidden-by-default {
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header .wp-block-navigation__responsive-close,
  .site-header .wp-block-navigation__responsive-dialog {
    display: contents;
  }
  .site-header .wp-block-navigation__responsive-container-close {
    display: none !important;
  }
  .site-header .wp-block-navigation__container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
  }
}
.site-header .dw-header__cta .wp-block-button__link,
.site-header .button {
  border-radius: 0;
}
.wp-block-button__link { border-radius: 0 !important; }
.dw-form--propuesta {
  max-width: none;
  margin-top: 0;
}
.dw-form--propuesta .dw-field__label,
.dw-form--propuesta .dw-field__checkbox span {
  display: block;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--violet);
}
.dw-form--propuesta .dw-field__control,
.dw-form--propuesta select.dw-field__control,
.dw-form--propuesta textarea.dw-field__control {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  color: var(--ink);
  font-weight: 300;
  box-sizing: border-box;
}
.dw-form--propuesta textarea.dw-field__control { min-height: 120px; }
.dw-form--propuesta .dw-field__checkbox input[type="checkbox"],
.dw-form--propuesta .dw-service-card__input {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.dw-form--propuesta .dw-form__nav .button,
.dw-form.dw-form--propuesta .dw-form__nav button,
.dw-form--propuesta .dw-form__btn-next,
.dw-form--propuesta .dw-form__btn-prev,
.dw-form--propuesta .dw-form__btn-submit {
  min-height: 48px;
  padding: 0 20px;
  line-height: 1.25;
  font-size: 13px;
  border-radius: 8px;
  box-sizing: border-box;
  gap: 10px;
}
.dw-form--propuesta button[type=submit],
.dw-form--propuesta .dw-form__btn-submit,
.dw-form--propuesta .dw-form__btn-next {
  background: var(--violet);
  border: 1px solid var(--violet);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.dw-form__success { color: var(--violet); padding: 1rem; border: 1px solid var(--line); background: #fff; }
.dw-form__error { color: #8a2b2b; padding: 1rem; border: 1px solid #e2b6b6; background: #fff; }
.capability-strip svg,
.principle-band svg,
.service-card > svg, .difference-list__icon svg, .case-quote > svg, .article-visual svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card > svg { width: 26px; height: 26px; }
.capability-strip svg,
.principle-band svg { color: var(--orange); width: 22px; height: 22px; }
.system-core svg, .system-node svg { width: 22px; height: 22px; }
.system-core svg { width: 35px; height: 35px; }

@media (max-width: 540px) {
  .system-core svg { width: 28px; height: 28px; }
  .system-node svg { width: 18px; height: 18px; }
}
