@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
	font-family: Inter;
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/inter-400-italic.woff2") format("woff2");
}
@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/inter-700.woff2") format("woff2");
}

:root {
	--yellow: #feaa00;
	--green: #32312e;
	--green-dark: #32312e;
	--brand: var(--yellow);
	--brand-hover: #e69500;
	--ink: #181d27;
	--ink-2: #414651;
	--paper: #fafafa;
	--cream: #f3eee7;
	--canvas: #e7e8e6;
	--white: #fff;
	--black: #0c0c0c;
	--charcoal: #32312e;
	--radius-card: 28px;
	--radius-pill: 999px;
	--header-h: 80px;
	--header-top: 16px;
	--header-clear: calc(var(--header-top) + var(--header-h) + 20px);
	--header-inset: 20px;
	--header-cta-h: 40px;
	--cta-radius: 999px;
	--header-radius: 999px;
	--font: Inter, system-ui, sans-serif;
	--display: Inter, system-ui, sans-serif;
	--heading-weight: 700;
	--heading-tracking: -0.03em;
	--heading-leading: 1.12;
	--text-h1: clamp(2.25rem, 4.8vw, 3.6rem);
	--text-h2: clamp(1.9rem, 3.4vw, 2.85rem);
	--text-h3: 1.2rem;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--shadow-bar: 0 8px 28px rgb(12 12 12 / 0.12);
	--max: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0;
	-webkit-text-size-adjust: 100%;
}

@media (pointer: fine) {
	html,
	body {
		cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Ccircle cx='5' cy='5' r='4.5' fill='%23181d27'/%3E%3C/svg%3E") 5 5, auto;
	}
	a,
	button,
	[role="button"],
	label,
	summary {
		cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Ccircle cx='6' cy='6' r='5.5' fill='%23181d27'/%3E%3C/svg%3E") 6 6, pointer;
	}
}

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

button {
	font: inherit;
	border: 0;
	background: none;
	color: inherit;
}

::selection {
	background: var(--green);
	color: var(--yellow);
}

:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -48px;
	z-index: 100;
	background: var(--ink);
	color: var(--white);
	padding: 8px 14px;
	border-radius: 8px;
}
.skip-link:focus {
	top: 12px;
}

/* Header */
.site-header {
	position: fixed;
	top: var(--header-top);
	left: 0;
	right: 0;
	z-index: 40;
	display: flex;
	justify-content: center;
	pointer-events: none;
	padding: 0 16px;
}

.admin-bar .site-header {
	top: calc(var(--header-top) + 32px);
}

.site-header__bar {
	pointer-events: auto;
	width: min(760px, calc(100% - 8px));
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
	min-height: var(--header-h);
	height: var(--header-h);
	padding: var(--header-inset);
	background: var(--white);
	border-radius: var(--header-radius);
	box-shadow: var(--shadow-bar);
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	margin-left: 12px;
}

.logo__mark {
	display: block;
	flex: none;
	width: auto;
	height: 48px;
	margin-block: -4px;
	line-height: 0;
}

.logo__mark img {
	display: block;
	height: 48px;
	width: auto;
}

.logo__word {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: 17px;
	line-height: 0.95;
	letter-spacing: -0.03em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	white-space: normal;
}

.logo__line {
	display: block;
}

.site-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 22px;
}

.site-nav a {
	font-family: var(--font);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.site-nav a:hover {
	color: var(--green);
}

.site-nav .btn--nav-mobile {
	display: none;
}

.nav-toggle {
	display: none;
	width: var(--header-cta-h);
	height: var(--header-cta-h);
	border-radius: var(--radius-pill);
	background: var(--black);
	place-items: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 3.5px;
	padding: 0;
	flex: none;
}
.nav-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) {
	transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
	transform: translateY(-5.5px) rotate(-45deg);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-pill);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.15s var(--ease);
}
.btn:active {
	transform: scale(0.98);
}

.btn--header {
	background: var(--black);
	color: var(--white);
	height: var(--header-cta-h);
	padding: 0 20px;
	font-size: 15px;
	letter-spacing: -0.01em;
	font-weight: 600;
	text-transform: none;
	align-self: center;
	border-radius: var(--cta-radius);
}
.btn--header:hover {
	background: #2a2a2a;
}

.btn--dark {
	background: var(--ink);
	color: var(--white);
	padding: 14px 20px;
	font-size: 12px;
}
.btn--dark:hover {
	background: var(--green);
}

.btn--contact {
	background: var(--yellow);
	color: var(--ink);
	padding: 18px 28px;
	font-size: 13px;
	margin-top: 28px;
}
.btn--contact:hover {
	background: var(--white);
	color: var(--green);
}

.btn--card {
	width: 100%;
	margin-top: auto;
	background: var(--ink);
	color: var(--white);
	padding: 16px 18px;
	font-size: 12px;
	border-radius: 16px;
}

/* Hero */
.hero {
	background: var(--brand);
	min-height: 100svh;
	padding: 176px 24px 48px;
	color: var(--ink);
	overflow: visible;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.hero__inner {
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 0 auto;
}

.hero__title {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: var(--text-h1);
	line-height: var(--heading-leading);
	letter-spacing: var(--heading-tracking);
	display: flex;
	flex-direction: column;
	padding-bottom: 0.08em;
	flex: none;
	text-wrap: balance;
}

.hero__line {
	display: block;
}

.hero__sub {
	margin-top: 18px;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ink);
	flex: none;
	line-height: 1.25;
}

.hero__sub-a,
.hero__sub-b {
	display: inline;
}

.hero__sub-a::after {
	content: "\00a0";
}

.phone {
	flex: none;
	margin-top: 80px;
	width: min(252px, 52vw);
	align-self: center;
}

.phone__shell {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 9 / 17.6;
	background: #1a1a1a;
	border-radius: 44px;
	padding: 12px;
	box-shadow:
		0 28px 50px rgb(12 12 12 / 0.22),
		inset 0 0 0 1px rgb(255 255 255 / 0.14);
}

.phone__island {
	position: absolute;
	top: 18px;
	left: 50%;
	z-index: 2;
	width: 86px;
	height: 26px;
	border-radius: 20px;
	background: #000;
	transform: translateX(-50%);
}

.phone__screen {
	height: 100%;
	border-radius: 32px;
	overflow: hidden;
	background: #f3eee7;
}

.phone-ui {
	height: 100%;
	padding: 40px 14px 12px;
	display: flex;
	flex-direction: column;
	color: #1c1916;
	text-align: left;
	background: #f6f1ea;
}

.phone-ui__home {
	width: 86px;
	height: 4px;
	border-radius: 99px;
	background: #1c1916;
	opacity: 0.18;
	margin: 10px auto 0;
	flex: none;
}

.phone-ui__status {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 12px;
	opacity: 0.55;
}

.phone-ui__status-icons {
	display: flex;
	gap: 3px;
	align-items: center;
}
.phone-ui__status-icons i {
	display: block;
	height: 6px;
	border-radius: 1px;
	background: #171717;
}
.phone-ui__status-icons i:nth-child(1) { width: 8px; }
.phone-ui__status-icons i:nth-child(2) { width: 6px; height: 6px; border-radius: 50%; }
.phone-ui__status-icons i:nth-child(3) { width: 12px; }

.phone-ui__nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
}

.phone-ui__mark {
	width: 16px;
	height: 16px;
	border-radius: 5px;
	background: #171717;
	flex: none;
}

.phone-ui__brand {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: 11px;
	letter-spacing: -0.03em;
	line-height: 1;
}

.phone-ui__menu {
	margin-left: auto;
	width: 14px;
	height: 8px;
	background:
		linear-gradient(#171717, #171717) 0 0 / 100% 1.5px no-repeat,
		linear-gradient(#171717, #171717) 0 100% / 70% 1.5px no-repeat;
}

.phone-ui__kicker {
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.45;
	margin-bottom: 6px;
}

.phone-ui__title {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: 17px;
	line-height: 1.05;
	letter-spacing: -0.04em;
	margin-bottom: 12px;
}

.phone-ui__shot {
	flex: 1;
	min-height: 0;
	border-radius: 18px;
	overflow: hidden;
	background: #ece4d8;
	box-shadow: inset 0 0 0 1px rgb(28 25 22 / 0.06);
	margin-bottom: 12px;
}

.phone-ui__shot svg {
	display: block;
	width: 100%;
	height: 100%;
}

.phone-ui__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 12px;
}

.phone-ui__meta span {
	display: block;
	height: 6px;
	border-radius: 99px;
	background: rgb(23 23 23 / 0.12);
}
.phone-ui__meta span:first-child { width: 78%; }
.phone-ui__meta span:last-child { width: 52%; }

.phone-ui__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	border-radius: 999px;
	background: #171717;
	color: #fff;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

/* Info */
.info {
	background: var(--paper);
	padding: var(--header-clear) 24px 132px;
}

.info__inner {
	max-width: var(--max);
	margin: 0 auto;
}

.info__intro {
	text-align: center;
	max-width: 44rem;
	margin: 0 auto;
}

.info__group--lead {
	margin-bottom: 0;
}

.info__title {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: var(--text-h2);
	line-height: var(--heading-leading);
	letter-spacing: var(--heading-tracking);
	padding-bottom: 0.08em;
	margin: 0 auto 0.35em;
	max-width: 22ch;
	text-wrap: pretty;
}

.info__lead-text {
	font-family: var(--font);
	font-weight: 500;
	font-size: clamp(1.28rem, 2.2vw, 1.7rem);
	line-height: 1.28;
	letter-spacing: -0.03em;
	max-width: 28ch;
	margin: 0 auto;
	text-wrap: pretty;
}

.info__keep {
	white-space: nowrap;
}

.info__points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 0;
	margin-top: 64px;
	padding: 40px 44px 44px;
	text-align: left;
	background: var(--canvas);
	border-radius: var(--radius-card);
}

.info__point + .info__point {
	border-left: 1px solid rgb(24 29 39 / 0.12);
	padding-left: 40px;
}

.info__point .info__group {
	margin-bottom: 0;
}

.info__point p {
	font-size: clamp(1.08rem, 1.35vw, 1.25rem);
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: -0.02em;
	max-width: none;
	text-wrap: pretty;
}

.info__u {
	text-decoration: none;
	border-bottom: 2px solid var(--green);
	padding-bottom: 0.1em;
	white-space: nowrap;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

/* Process */
.process {
	background: var(--paper);
	padding: var(--header-clear) 24px 108px;
}

.section-title {
	max-width: var(--max);
	margin: 0 auto 28px;
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: var(--text-h2);
	letter-spacing: var(--heading-tracking);
	line-height: var(--heading-leading);
	padding-bottom: 0.08em;
	text-wrap: balance;
}

.process .section-title {
	margin-bottom: 20px;
}

.section-title--light {
	color: var(--white);
	text-align: center;
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 48px;
}

.process__row {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	align-items: start;
}

.step {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 16px;
}

.step__visual {
	aspect-ratio: 3 / 4;
	background: #f3eee7;
	overflow: hidden;
	border-radius: var(--radius-card);
}

.step__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.step__body {
	padding: 0 6px 4px;
}

.step__num {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: 0.88rem;
	color: var(--green);
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 6px;
}

.step__body h3 {
	font-family: var(--font);
	font-size: var(--text-h3);
	font-weight: var(--heading-weight);
	letter-spacing: var(--heading-tracking);
	line-height: var(--heading-leading);
	margin-bottom: 8px;
}

.step__body p:not(.step__num) {
	color: var(--ink-2);
	font-size: 1rem;
	line-height: 1.45;
}

/* Work */
.work {
	background: var(--green);
	color: var(--white);
}

.pricing {
	background: var(--yellow);
	color: var(--ink);
}

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

.work {
	padding: 128px 24px 108px;
}

.work__grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px 28px;
}

.work-card {
	display: block;
	min-width: 0;
}

.work-card:hover .mac {
	transform: translateY(-4px);
}

.mac {
	background: #1a1a1a;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 0.08);
	transition: transform 0.35s var(--ease);
}

.mac__bar {
	display: flex;
	gap: 6px;
	padding: 10px 12px;
	background: #161616;
}

.mac__bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3a3a3a;
}
.mac__bar span:nth-child(1) { background: #ff5f57; }
.mac__bar span:nth-child(2) { background: #febc2e; }
.mac__bar span:nth-child(3) { background: #28c840; }

.mac__screen {
	aspect-ratio: 16 / 9;
	background: #111;
	overflow: hidden;
	line-height: 0;
}

.mac__screen img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: top left;
	display: block;
}

.work-card__title {
	margin-top: 18px;
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: var(--text-h3);
	letter-spacing: var(--heading-tracking);
	line-height: var(--heading-leading);
	text-align: center;
}

.work-card__cat {
	margin-top: 4px;
	font-size: 1.02rem;
	font-style: italic;
	color: rgb(255 255 255 / 0.72);
	text-align: center;
}

/* Pricing */
.pricing {
	padding: var(--header-clear) 24px 108px;
}

.pricing .section-title--light {
	color: var(--ink);
	max-width: 22ch;
	margin-bottom: 52px;
}

.pricing__grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
	justify-content: center;
}

.price-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-card);
	overflow: hidden;
	background: var(--white);
	color: var(--ink);
	min-height: 100%;
}

.price-card__visual {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #2a2a2a;
	overflow: hidden;
}

.price-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.price-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: var(--brand);
	opacity: 0;
	transition: opacity 0.35s var(--ease);
	pointer-events: none;
}

.price-card:hover .price-card__visual::after,
.price-card:focus-within .price-card__visual::after {
	opacity: 0.42;
}

.price-card.is-featured .price-card__visual::after {
	opacity: 0.12;
}

.price-card.is-featured:hover .price-card__visual::after,
.price-card.is-featured:focus-within .price-card__visual::after {
	opacity: 0.42;
}

.price-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px 22px 22px;
	flex: 1;
}

.price-card__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.price-card__head h3 {
	font-family: var(--font);
	font-size: var(--text-h3);
	font-weight: var(--heading-weight);
	letter-spacing: var(--heading-tracking);
	line-height: var(--heading-leading);
}

.price-card__amount {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.price-card.is-featured .price-card__amount {
	color: var(--green);
}

.price-card__text {
	color: var(--ink-2);
	font-size: 0.92rem;
	line-height: 1.45;
	text-wrap: pretty;
}

.price-keep {
	white-space: nowrap;
}

.price-card__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 4px 0 8px;
}

.price-card__list li {
	position: relative;
	padding-left: 18px;
	font-size: 0.92rem;
	text-wrap: pretty;
}

.price-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 1.5px;
	background: var(--ink);
}

.price-card:hover .btn--card,
.price-card:focus-within .btn--card,
.price-card.is-featured .btn--card {
	background: var(--green);
	color: var(--white);
}

.price-card.is-featured:hover .btn--card,
.price-card.is-featured:focus-within .btn--card {
	background: var(--green-dark);
}

/* Contact */
.contact {
	padding: var(--header-clear) 24px 120px;
	text-align: center;
}

.contact__inner {
	max-width: 820px;
	margin: 0 auto;
}

.contact__title {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: clamp(2.25rem, 5.5vw, 4.2rem);
	line-height: 1.08;
	letter-spacing: var(--heading-tracking);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 0.12em;
}

.contact__sub {
	margin-top: 12px;
	font-size: 1.05rem;
	font-weight: 400;
	color: rgb(255 255 255 / 0.82);
}

/* Footer */
.site-footer {
	position: relative;
	background: var(--paper);
	padding: 64px 24px 168px;
	overflow: hidden;
	min-height: 680px;
}

.footer__email-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 36px;
	display: flex;
	justify-content: center;
	pointer-events: none;
	z-index: 5;
}

.footer__email {
	pointer-events: auto;
	position: relative;
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: clamp(1.35rem, 7vw, 5.6rem);
	letter-spacing: -0.045em;
	line-height: 1;
	color: var(--ink);
	opacity: 0.1;
	white-space: nowrap;
	padding: 0.15em 0.2em;
	border-radius: 12px;
	cursor: pointer;
	transition: opacity 0.25s var(--ease);
}

.footer__email:hover,
.footer__email:focus-visible {
	opacity: 0.16;
}

.footer__copy-tip {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: var(--ink);
	color: var(--white);
	font-family: var(--font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 10px 16px;
	border-radius: var(--radius-pill);
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
	transition: opacity 0.2s var(--ease);
}

.footer__email:hover .footer__copy-tip,
.footer__email:focus-visible .footer__copy-tip,
.footer__email.is-copied .footer__copy-tip {
	opacity: 1;
}

.footer__modules {
	position: relative;
	z-index: 6;
	max-width: var(--max);
	margin: 0 auto 8px;
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) 1.7fr;
	gap: 18px;
}

.footer__brand {
	background: var(--green);
	color: var(--yellow);
	border-radius: var(--radius-card);
	min-height: 280px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer__brand-mark {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer__brand .logo__mark {
	height: 56px;
}

.footer__brand .logo__mark img {
	height: 56px;
}

.footer__brand .logo__word {
	color: var(--yellow);
	font-size: 17px;
}

.footer__brand-tag {
	font-size: 0.95rem;
	max-width: 18ch;
	line-height: 1.4;
}

.footer__panel {
	background: var(--white);
	border-radius: var(--radius-card);
	padding: 28px 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 280px;
	box-shadow: 0 12px 32px rgb(12 12 12 / 0.05);
}

.footer__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.footer__heading {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.footer__cols ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__cols a,
.footer__inline-copy {
	font-size: 0.95rem;
	color: var(--ink-2);
	text-align: left;
}

.footer__cols a:hover,
.footer__inline-copy:hover {
	color: var(--green);
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
}

.footer__bottom p {
	font-size: 0.78rem;
	color: var(--ink-2);
}

#como,
#trabajos,
#precios,
#contacto,
#info {
	scroll-margin-top: 0;
}

.admin-bar #como,
.admin-bar #trabajos,
.admin-bar #precios,
.admin-bar #contacto,
.admin-bar #info {
	scroll-margin-top: 32px;
}
.page-shell {
	background: var(--paper);
	padding: 48px 24px 96px;
}

.page-article {
	max-width: 720px;
	margin: 0 auto;
}

.page-article h1 {
	font-family: var(--font);
	font-weight: var(--heading-weight);
	font-size: var(--text-h1);
	letter-spacing: var(--heading-tracking);
	line-height: var(--heading-leading);
	margin-bottom: 16px;
}

/* Reveals */
.has-reveal .reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
	transition-delay: var(--stagger, 0ms);
}

.has-reveal .reveal.is-in {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 1020px) {
	.footer__modules {
		grid-template-columns: 1fr;
	}

	.footer__brand {
		min-height: 180px;
	}

	.process__row {
		grid-template-columns: repeat(2, 1fr);
		max-width: 720px;
		gap: 28px;
	}
}

@media (max-width: 900px) {
	.info__points {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-top: 48px;
		max-width: 34em;
		margin-left: auto;
		margin-right: auto;
		padding: 28px 24px 32px;
	}

	.info__point + .info__point {
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid rgb(24 29 39 / 0.12);
		padding-top: 28px;
	}

	.pricing__grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		gap: 22px;
	}

	.process__row {
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 420px;
	}

	.step__visual {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 860px) {
	.site-header__bar {
		width: min(100%, calc(100vw - 28px));
		display: flex;
		justify-content: space-between;
		align-items: center;
		min-height: var(--header-h);
		height: var(--header-h);
		padding: var(--header-inset);
		position: relative;
		grid-template-columns: unset;
		gap: 10px;
	}

	.logo {
		margin-right: auto;
		position: relative;
		z-index: 1;
		gap: 10px;
	}

	.logo__word {
		font-size: 16px;
	}

	.btn--header {
		display: none;
	}

	.nav-toggle {
		display: flex;
		margin-left: auto;
		flex: none;
		position: relative;
		z-index: 1;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 12px;
		background: var(--white);
		border-radius: 20px;
		box-shadow: var(--shadow-bar);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav a {
		padding: 12px 10px;
		border-radius: 12px;
	}

	.site-nav .btn--nav-mobile {
		display: inline-flex;
		margin-top: 6px;
		background: var(--black);
		color: var(--white);
		justify-content: center;
		height: var(--header-cta-h);
		padding: 0 20px;
		font-size: 15px;
		font-weight: 600;
		letter-spacing: -0.01em;
		border-radius: var(--radius-pill);
	}

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

	.info__title,
	.info__lead-text,
	.info__point p {
		max-width: none;
	}

	.info__lead-text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

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

	.site-footer {
		min-height: 0;
		display: flex;
		flex-direction: column;
		padding-bottom: 28px;
	}

	.footer__modules {
		order: 1;
	}

	.footer__email-wrap {
		position: static;
		order: 2;
		margin-top: 36px;
		z-index: 1;
		pointer-events: auto;
		width: 100%;
		padding: 0 2px;
	}

	.footer__email {
		white-space: nowrap;
		word-break: keep-all;
		overflow-wrap: normal;
		text-align: center;
		font-size: min(2.1rem, calc((100vw - 1.5rem) / 13.6));
		line-height: 1;
		max-width: 100%;
	}
}

@media (max-width: 720px) {
	.hero__sub {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero__sub-a::after {
		content: none;
	}
}

@media (min-width: 900px) {
	.hero__line {
		white-space: nowrap;
	}
}

@media (max-width: 640px) {
	.hero {
		padding: 172px 20px 40px;
		min-height: 100svh;
		height: auto;
		overflow: visible;
	}

	.phone {
		display: block;
		width: min(226px, 64vw);
		margin-top: 56px;
	}

	.hero__line:first-child {
		white-space: nowrap;
	}

	.hero__line:last-child {
		max-width: 8.4em;
	}

	.hero__sub {
		font-size: 1.12rem;
		font-weight: 600;
		max-width: 16em;
	}

	.footer__email {
		white-space: nowrap;
		word-break: keep-all;
		overflow-wrap: normal;
		text-align: center;
		font-size: min(2.2rem, calc((100vw - 1.25rem) / 13.6));
		line-height: 1;
	}

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

body.is-phone-capture .phone,
body.is-phone-capture .info,
body.is-phone-capture .process,
body.is-phone-capture .work,
body.is-phone-capture .pricing,
body.is-phone-capture .contact,
body.is-phone-capture .site-footer,
body.is-phone-capture #wpadminbar {
	display: none !important;
}

body.is-phone-capture .hero {
	min-height: 100dvh;
	padding: 108px 22px 48px;
}

body.is-phone-capture .site-header {
	top: 16px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.has-reveal .reveal,
	.work-card:hover .mac,
	.btn,
	.price-card__visual::after {
		transition: none;
	}

	.has-reveal .reveal {
		opacity: 1;
		transform: none;
	}
}
