:root {
	--cream: #fbf2df;
	--cream-2: #f5e6c6;
	--paper: #fff8e7;
	--ink: #181820;
	--ink-soft: #3a3a44;
	--coral: #ff5a3c;
	--cobalt: #2540ff;
	--butter: #ffd23f;
	--sage: #6db185;
	--rose: #ffb7a3;
	--lilac: #cdb8ff;
	--rule: #1a1a20;
	--r-lg: 28px;
	--r-md: 18px;
	--r-sm: 12px;
	interpolate-size: allow-keywords;
}

*,
*::before,
*::after {
	box-sizing: border-box
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: var(--cream);
	color: var(--ink);
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.serif {
	font-family: "Instrument Serif", Georgia, serif;
	font-style: italic;
	font-weight: 400
}

.display {
	font-family: "DynaPuff", "DM Sans", sans-serif;
	font-weight: 400;
	letter-spacing: -.01em;
	line-height: 1
}

.mono {
	font-family: "JetBrains Mono", ui-monospace, monospace
}

.cap {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 12px;
	font-weight: 600
}

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

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none
}

@keyframes slide {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

/* ========== nav ========== */
nav.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 36px;
	border-bottom: 1.5px solid var(--ink);
	position: sticky;
	top: 0;
	z-index: 10;
	background: var(--cream);
}

.brand {
	display: flex;
	align-items: center;
	gap: 2px;
	font-family: "DynaPuff";
	font-size: 22px
}

.brand > img {
	margin-right: 10px;
} 

.brand .mark {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--ink);
	display: grid;
	place-items: center;
	color: var(--butter);
	position: relative;
}

.brand .mark svg {
	width: 22px;
	height: 22px
}

.brand .mark::before,
.brand .mark::after {
	content: "";
	position: absolute;
	top: -5px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 11px solid var(--ink);
}

.brand .mark::before {
	left: 5px;
	transform: rotate(-15deg)
}

.brand .mark::after {
	right: 5px;
	transform: rotate(15deg)
}

nav.top ul {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 15px
}

nav.top ul a:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 2px
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px
}

.nav-cta {
	background: var(--ink);
	color: var(--cream);
	padding: 11px 20px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid var(--ink);
	cursor: pointer;
	font-family: inherit;
	transition: background 0.3s ease-in-out;
}

.nav-cta:hover {
	background: var(--coral);
	border-color: var(--coral)
}

.nav-cta .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sage);
	box-shadow: 0 0 0 4px rgba(109, 177, 133, .25)
}

.nav-cta--ghost {
	background: transparent;
	color: var(--ink)
}

.nav-cta--ghost:hover {
	background: var(--butter);
	border-color: var(--ink);
	color: var(--ink)
}

.nav-cta--ghost svg {
	color: var(--coral)
}

/* ========== calendar modal ========== */
.cal-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 48px 20px 20px;
	overflow: auto;
}

.cal-modal.open {
	display: flex
}

.cal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 26, .55);
	backdrop-filter: blur(4px)
}

.cal-sheet {
	position: relative;
	z-index: 2;
	width: min(960px, 100%);
	background: var(--cream);
	border: 1.5px solid var(--ink);
	border-radius: 28px;
	box-shadow: 12px 12px 0 var(--ink);
	overflow: hidden;
	animation: cal-in .35s cubic-bezier(.2, .9, .25, 1.1);
}

@keyframes cal-in {
	from {
		opacity: 0;
		transform: translateY(20px) scale(.97)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.cal-close {
	position: absolute;
	right: 18px;
	top: 18px;
	z-index: 3;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--cream);
	display: grid;
	place-items: center;
	cursor: pointer;
	border: 1.5px solid var(--ink);
}

.cal-close:hover {
	background: var(--coral)
}

.cal-head {
	padding: 30px 32px 18px;
	border-bottom: 1.5px solid var(--ink);
	background: var(--paper);
}

.cal-eye {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 500;
	background: var(--cream);
	border: 1.5px solid var(--ink);
	padding: 7px 12px;
	border-radius: 99px;
}

.cal-eye .num {
	background: var(--coral);
	color: var(--cream);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 11px;
	margin-left: -4px
}

.cal-head h3 {
	font-size: 42px;
	margin: 14px 0 6px;
	line-height: 1
}

.cal-sub {
	margin: 0;
	color: var(--ink-soft);
	font-size: 15px;
	max-width: 50ch;
	line-height: 1.5
}

.cal-body {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
}

.cal-pane {
	padding: 26px 28px;
	border-right: 1.5px solid var(--ink)
}

.cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px
}

.cal-month {
	font-family: "DynaPuff";
	font-size: 24px;
	text-transform: capitalize
}

.cal-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--ink);
	background: var(--cream);
	cursor: pointer;
	display: grid;
	place-items: center;
}

.cal-arrow:hover {
	background: var(--butter)
}

.cal-dow {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: .06em;
	color: var(--ink-soft);
	text-transform: uppercase;
	padding: 0 4px 8px;
}

.cal-dow span {
	text-align: center
}

.cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
}

.cal-day-btn {
	aspect-ratio: 1;
	border-radius: 12px;
	border: 1.5px solid transparent;
	background: transparent;
	cursor: pointer;
	font-family: "DM Sans";
	font-size: 15px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	color: var(--ink);
	position: relative;
	transition: background .15s, transform .3s;
}

.cal-day-btn .dotline {
	display: flex;
	gap: 3px
}

.cal-day-btn .dotline i {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	opacity: .55
}

.cal-day-btn.muted {
	color: rgba(0, 0, 0, .22);
	pointer-events: none
}

.cal-day-btn.past {
	color: rgba(0, 0, 0, .3);
	pointer-events: none;
	text-decoration: line-through;
	text-decoration-thickness: 1px
}

.cal-day-btn.free {
	background: rgba(109, 177, 133, .18);
	border-color: var(--sage);
	color: var(--ink)
}

.cal-day-btn.free .dotline i {
	background: var(--sage);
	opacity: 1
}

.cal-day-btn.some {
	background: rgba(255, 210, 63, .35);
	border-color: #c79a1a;
	color: var(--ink)
}

.cal-day-btn.some .dotline i {
	background: #c79a1a;
	opacity: 1
}

.cal-day-btn.none {
	background: rgba(0, 0, 0, .05);
	border-color: rgba(0, 0, 0, .15);
	color: rgba(0, 0, 0, .4);
	pointer-events: none
}

.cal-day-btn.none .dotline i {
	background: currentColor;
	opacity: .5
}

.cal-day-btn:not(.muted):not(.none):not(.past):hover {
	transform: translateY(-2px)
}

.cal-day-btn.is-selected {
	background: var(--ink);
	color: var(--cream);
	border-color: var(--ink);
}

.cal-day-btn.is-selected .dotline i {
	background: var(--butter);
	opacity: 1
}

.cal-day-btn.today::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 6px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--coral);
}

.cal-legend {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 18px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: .06em;
}

.cal-legend span {
	display: inline-flex;
	align-items: center;
	gap: 7px
}

.cal-legend .sw {
	width: 10px;
	height: 10px;
	border-radius: 3px;
	border: 1.5px solid var(--ink);
	display: inline-block
}

.sw-free {
	background: rgba(109, 177, 133, .5)
}

.sw-some {
	background: rgba(255, 210, 63, .7)
}

.sw-none {
	background: rgba(0, 0, 0, .1)
}

.cal-side {
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: var(--cream)
}

.cal-day {
	background: var(--paper);
	border: 1.5px solid var(--ink);
	border-radius: 18px;
	padding: 16px 18px;
}

.cal-slots-label {
	margin-bottom: -4px
}

.cal-slots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	min-height: 60px;
}

.cal-slot {
	border: 1.5px solid var(--ink);
	background: var(--cream);
	padding: 11px 12px;
	border-radius: 12px;
	cursor: pointer;
	font-family: "JetBrains Mono", monospace;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	transition: transform .15s, background .15s;
}

.cal-slot:hover {
	background: var(--butter);
	transform: translateY(-1px)
}

.cal-slot.is-selected {
	background: var(--ink);
	color: var(--cream)
}

.cal-slot.is-selected::after {
	content: "✓";
	color: var(--butter)
}

.cal-slot.full {
	opacity: .4;
	pointer-events: none;
	text-decoration: line-through
}

.cal-empty {
	grid-column: 1/-1;
	padding: 16px;
	text-align: center;
	color: var(--ink-soft);
	font-size: 18px;
}

.cal-form {
	display: grid;
	gap: 10px;
	margin-top: 6px
}

.cal-form label {
	display: grid;
	gap: 5px
}

.cal-form .cap {
	color: var(--ink-soft)
}

.cal-form input {
	border: 1.5px solid var(--ink);
	background: var(--cream);
	padding: 11px 14px;
	border-radius: 12px;
	font-family: inherit;
	font-size: 14px;
	color: var(--ink);
	outline: none;
}

.cal-form input:focus {
	border-color: var(--coral);
	box-shadow: 0 0 0 3px rgba(255, 90, 60, .18)
}

.cal-submit {
	margin-top: 4px;
	width: 100%;
	justify-content: center;
}

.cal-submit:disabled {
	opacity: .4;
	cursor: not-allowed;
	background: var(--ink-soft)
}

.cal-submit:disabled:hover {
	background: var(--ink-soft)
}

.cal-submit:disabled:hover .arr {
	transform: none
}

.cal-note {
	font-size: 11px;
	color: var(--ink-soft);
	text-align: center;
	margin-top: 4px
}

.cal-success {
	display: none;
	padding: 60px 32px 48px;
	text-align: center
}

.cal-success.show {
	display: block
}

.cal-success.show~* {
	display: none
}

.cal-modal.success-mode .cal-body,
.cal-modal.success-mode .cal-head {
	display: none
}

.cal-modal.success-mode .cal-success {
	display: block
}

.cal-check {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--sage);
	color: var(--cream);
	display: grid;
	place-items: center;
	margin: 0 auto;
	border: 1.5px solid var(--ink);
	box-shadow: 6px 6px 0 var(--ink);
}

@media (max-width:780px) {
	.cal-body {
		grid-template-columns: 1fr
	}

	.cal-pane {
		border-right: none;
		border-bottom: 1.5px solid var(--ink)
	}

	.cal-sheet {
		box-shadow: 6px 6px 0 var(--ink)
	}

	.nav-cta--ghost {
		display: none
	}
}

/* ========== hero ========== */
.hero {
	position: relative;
	padding: 60px 36px 80px;
	border-bottom: 1.5px solid var(--ink);
	overflow: hidden;
}

.hero .grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.hero .grid>div {
	min-width: 0
}

.hero h1 {
	font-family: "DynaPuff";
	font-size: 75px;
	line-height: .92;
	letter-spacing: -.02em;
	margin: 0;
}

.hero h1 .it {
	font-family: "Instrument Serif";
	font-style: italic;
	font-weight: 400;
	color: var(--coral)
}

.hero h1 .u {
	background: var(--butter);
	padding: 0 .12em;
	display: inline-block;
	transform: rotate(-1.5deg);
	border-radius: 6px;
}

.hero h1 .meow {
	position: relative;
	display: inline-block
}

.paw-inline {
	display: none;
	width: .62em;
	height: .62em;
	vertical-align: .04em;
	margin-left: .18em;
	transform: rotate(-12deg)
}

.hero h1 .meow::after {
	content: "";
	position: absolute;
	left: 6%;
	right: 6%;
	bottom: -.06em;
	height: .08em;
	background: var(--cobalt);
	border-radius: 99px;
	transform: rotate(-1deg);
}

.hero p.lede {
	font-size: 19px;
	max-width: 54ch;
	margin: 30px 0 0;
	color: var(--ink-soft);
	line-height: 1.5;
}

.hero .ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
	justify-content: center
}

.btn-pri {
	background: var(--ink);
	color: var(--cream);
	padding: 18px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: background-color 0.3s ease-in-out;
}

.btn-pri:hover {
	background: var(--coral)
}

.btn-pri .arr {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--butter);
	display: grid;
	place-items: center;
	color: var(--ink);
	transition: transform .25s;
}

.btn-pri:hover .arr {
	transform: rotate(-45deg)
}

.btn-sec {
	border: 1.5px solid var(--ink);
	padding: 16px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: background-color 0.3s ease-in-out;
}

.btn-sec:hover {
	background: var(--paper)
}

.btn-sec .ph {
	font-family: "JetBrains Mono", monospace;
	font-weight: 500;
}

.hero .meta-row {
	display: flex;
	column-gap: 30px;
	row-gap: 10px;
	margin-top: 46px;
	flex-wrap: wrap;
	align-items: center;
	font-size: 13px;
}

.hero .meta-row .ck {
	display: flex;
	align-items: center;
	gap: 8px
}

.hero .meta-row .ck svg {
	width: 14px;
	height: 14px
}

/* hero side art */
.hero .side {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding: 15px;
}

/* .photo {
	width: 100%;
	max-width: 440px;
	aspect-ratio: 4/5;
	border-radius: var(--r-lg);
	border: 1.5px solid var(--ink);
	background: linear-gradient(160deg, var(--rose), var(--butter) 70%);
	position: relative;
	overflow: hidden;
	box-shadow: 10px 10px 0 var(--ink);
} */

/* .photo img.portrait {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	filter: saturate(1.12) contrast(1.07) brightness(.99);
	image-rendering: -webkit-optimize-contrast;
} */

.slider {
	width: 100%;
	max-width: 1920px;
	aspect-ratio: 4/3;
	border-radius: var(--r-lg);
	border: 1.5px solid var(--ink);
	background: linear-gradient(160deg, var(--rose), var(--butter) 70%);
	position: relative;
	overflow: hidden;
	box-shadow: 10px 10px 0 var(--ink);
}

.slider__arrow {
	position: absolute;
	font-size: 120px;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff77;
	transition: color 0.2s ease-in-out;
	text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
}

.slider__arrow:hover {
	color: #ffffff;
}

.slider__arrow--left {
	left: 0;
}

.slider__arrow--right {
	right: 0;
}

.slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: left cubic-bezier(0.58, 0.18, 0.46, 0.9) 1s;
}

.slider__photo1 {
	left: -100%;
}

.slider__photo2 {
	left: 0;
}

.slider__photo3 {
	left: 100%;
}

.slider--changing img {
	transition: none;
}

.slider--slidingNext .slider__photo1 {
	left: -200%;
}

.slider--slidingNext .slider__photo2 {
	left: -100%;
}

.slider--slidingNext .slider__photo3 {
	left: 0%;
}

.slider--slidingPrev .slider__photo1 {
	left: 0%;
}

.slider--slidingPrev .slider__photo2 {
	left: 100%;
}

.slider--slidingPrev .slider__photo3 {
	left: 200%;
}

/* .photo::after {
	content: none;
}

.photo .ph-label {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: var(--ink);
	background: var(--cream);
	padding: 8px 12px;
	border-radius: 99px;
	border: 1.5px solid var(--ink);
	white-space: nowrap;
}

.photo .tag {
	position: absolute;
	left: -14px;
	top: 24px;
	background: var(--cobalt);
	color: var(--paper);
	padding: 7px 14px;
	border-radius: 99px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	transform: rotate(-6deg);
	border: 1.5px solid var(--ink);
}

.photo .name {
	position: absolute;
	right: 18px;
	bottom: 18px;
	background: var(--ink);
	color: var(--cream);
	padding: 10px 14px;
	border-radius: 14px;
	font-family: "DynaPuff";
	font-size: 15px;
	line-height: 1.1;
}

.photo .name small {
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 30px;
	font-weight: 400;
	color: var(--butter);
	display: block;
	margin-bottom: 1px;
	letter-spacing: 0
}

.photo .tag,
.photo .name {
	z-index: 2
}

/* sticker badge */
.photo-wrap {
	position: relative;
	width: 100%;
}

.sticker {
	position: absolute;
	left: -44px;
	bottom: -44px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: var(--coral);
	color: var(--cream);
	display: grid;
	place-items: center;
	border: 1.5px solid var(--ink);
	transform: rotate(-10deg);
	z-index: 4;
	box-shadow: 6px 6px 0 var(--ink);
}

.sticker .inner {
	text-align: center;
	font-family: "DynaPuff";
	font-size: 22px;
	line-height: 1;
	padding: 8px
}

.sticker .inner sup {
	font-family: "Instrument Serif";
}

.sticker .inner small {
	display: block;
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 14px;
	font-weight: 400;
	margin-top: 6px
}

.sticker svg.ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	animation: spin 22s linear infinite
}

@keyframes spin {
	to {
		transform: rotate(360deg)
	}
}

/* paw scatter */
.paw {
	position: absolute;
	pointer-events: none;
	opacity: .65;
	z-index: -1;
}

/* ========== ticker stats ========== */
.ticker {
	background: var(--ink);
	color: var(--cream);
	border-bottom: 1.5px solid var(--ink);
	padding: 24px 0;
	overflow: hidden;
}

.ticker .track2 {
	display: flex;
	gap: 60px;
	white-space: nowrap;
	animation: slide 28s linear infinite;
	font-family: "DynaPuff";
	font-size: 38px;
	align-items: center;
}

.ticker .track2 .it {
	font-family: "Instrument Serif";
	font-style: italic;
	color: var(--butter);
	font-weight: 400
}

.ticker .track2 .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--coral);
	display: inline-block
}

/* ========== section base ========== */
section {
	padding: 96px 36px;
	border-bottom: 1.5px solid var(--ink)
}

.wrap {
	max-width: 1300px;
	margin: 0 auto
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 500;
	background: var(--paper);
	border: 1.5px solid var(--ink);
	padding: 8px 14px;
	border-radius: 999px;
}

.eyebrow .num {
	background: var(--ink);
	color: var(--butter);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 11px;
	margin-left: -6px;
}

h2.kicker {
	font-family: "DynaPuff";
	font-size: 70px;
	line-height: .96;
	letter-spacing: -.01em;
	margin: 18px 0 0;
	max-width: 18ch;
}

h2.kicker .it {
	font-family: "Instrument Serif";
	font-style: italic;
	color: var(--coral);
	font-weight: 400
}

/* ========== about ========== */
.about {
	background: var(--paper)
}

.about .layout {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	margin-top: 54px;
	align-items: start;
}

.about .copy p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--ink-soft);
	margin: 0 0 18px
}

.about .copy .pull {
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 28px;
	line-height: 1.25;
	color: var(--ink);
	border-left: 3px solid var(--coral);
	padding: 6px 0 6px 20px;
	margin: 30px 0;
}

.creds {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px
}

.creds span {
	border: 1.5px solid var(--ink);
	background: var(--cream);
	padding: 9px 14px;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.creds span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cobalt)
}

.creds span:nth-child(2n)::before {
	background: var(--coral)
}

.creds span:nth-child(3n)::before {
	background: var(--sage)
}

.creds span:nth-child(4n)::before {
	background: var(--butter)
}

.about .stack {
	display: grid;
	gap: 18px;
	position: relative
}

.about .stack .card {
	border: 1.5px solid var(--ink);
	border-radius: var(--r-lg);
	padding: 24px;
	background: var(--cream);
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	align-items: center;
}

.about .stack .card .big {
	font-family: "DynaPuff";
	font-size: 54px;
	line-height: .9
}

.about .stack .card .lbl {
	font-size: 14px;
	color: var(--ink-soft);
	max-width: 24ch
}

.about .stack .card .badge {
	background: var(--coral);
	color: var(--cream);
	padding: 5px 10px;
	border-radius: 99px;
	font-size: 11px;
	font-family: "JetBrains Mono", monospace;
	letter-spacing: .06em;
}

.about .stack .card:nth-child(2) {
	background: var(--cobalt);
	color: var(--cream)
}

.about .stack .card:nth-child(2) .lbl {
	color: #dfe5ff
}

.about .stack .card:nth-child(2) .badge {
	background: var(--butter);
	color: var(--ink)
}

.about .stack .card:nth-child(3) {
	background: var(--butter)
}

.about .stack .card:nth-child(3) .badge {
	background: var(--ink);
	color: var(--butter)
}

.about .stack .card:nth-child(4) {
	background: var(--sage);
	color: var(--cream)
}

.about .stack .card:nth-child(4) .lbl {
	color: #e8f1eb
}

/* ========== how it works (bento) ========== */
.how .bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 140px;
	gap: 18px;
	margin-top: 54px;
}

.b {
	border: 1.5px solid var(--ink);
	border-radius: var(--r-lg);
	padding: 26px;
	background: var(--cream);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.b h3 {
	font-family: "DynaPuff";
	font-size: 30px;
	margin: 0 0 8px;
	line-height: 1
}

.b p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.5
}

.b .num {
	position: absolute;
	right: 18px;
	top: 18px;
	font-family: "DynaPuff";
	font-size: 14px;
	background: var(--ink);
	color: var(--butter);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.b1 {
	grid-column: span 5;
	grid-row: span 2;
	background: var(--coral);
	color: var(--cream)
}

.b1 p {
	color: #ffe7e1
}

.b1 .num {
	background: var(--cream);
	color: var(--coral)
}

.b1 h3 {
	font-size: 48px
}

.b2 {
	grid-column: span 4;
	grid-row: span 2;
	background: var(--butter)
}

.b3 {
	grid-column: span 3;
	grid-row: span 2;
	background: var(--paper)
}

.b4 {
	grid-column: span 4;
	grid-row: span 2;
	background: #0a448e;
	color: var(--cream)
}

.b4 p {
	color: #dfe5ff
}

.b4 .num {
	background: var(--butter);
	color: var(--ink)
}

.b5 {
	grid-column: span 5;
	grid-row: span 2;
	background: var(--paper)
}

.b6 {
	grid-column: span 3;
	grid-row: span 2;
	background: var(--sage);
	color: var(--cream)
}

.b6 p {
	color: #eaf3ee
}

.b6 .num {
	background: var(--cream);
	color: var(--sage)
}

.b .deco {
	position: absolute;
	right: -20px;
	bottom: -30px;
	font-family: "DynaPuff";
	font-size: 160px;
	opacity: .18;
	line-height: 1;
	letter-spacing: -.04em
}

/* ========== levels ========== */
.levels {
	background: #03A9F4;
	color: var(--cream);
	border-color: var(--ink)
}

.levels .eyebrow {
	background: transparent;
	color: var(--cream);
	border-color: var(--cream)
}

.levels h2.kicker .it {
	color: var(--butter)
}

.levels .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 54px;
}

.lvl {
	background: var(--cream);
	color: var(--ink);
	border: 1.5px solid var(--ink);
	border-radius: var(--r-lg);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	overflow: hidden;
	box-shadow: 6px 6px 0 rgba(0, 0, 0, .6);
}

.lvl .code {
	font-family: "DynaPuff";
	font-size: 78px;
	line-height: .9;
	letter-spacing: -.02em;
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.lvl .code small {
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 22px;
	color: var(--coral);
}

.lvl .desc {
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.5;
	min-height: 5.5em
}

.lvl ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px
}

.lvl ul li {
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px
}

.lvl ul li::before {
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 4px;
	background: var(--butter);
	margin-top: 2px;
	flex-shrink: 0;
	border: 1.5px solid var(--ink);
}

.lvl:nth-child(2) ul li::before {
	background: var(--coral)
}

.lvl:nth-child(3) ul li::before {
	background: var(--sage)
}

.lvl .pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 600;
	background: var(--ink);
	color: var(--cream);
	align-self: flex-start;
	font-family: "JetBrains Mono", monospace;
	letter-spacing: .04em;
}

.lvl .age {
	position: absolute;
	right: 20px;
	top: 20px;
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 16px;
	color: var(--ink-soft);
}

/* ========== pricing / first lesson ========== */
.pricing {
	padding: 120px 36px
}

.pricing .free {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	grid-template-rows: auto auto;
	column-gap: 64px;
	row-gap: 20px;
	align-items: center;
	background: var(--ink);
	color: var(--cream);
	border-radius: 36px;
	padding: 72px;
	position: relative;
	overflow: hidden;
}

.pricing h2.kicker {
	color: var(--cream);
	max-width: 14ch
}

.pricing h2.kicker .it {
	color: var(--butter)
}

.pricing .right {
	position: relative
}

.price-card {
	background: var(--coral);
	border-radius: 24px;
	padding: 36px;
	border: 1.5px solid var(--ink);
	box-shadow: 8px 8px 0 var(--butter);
	position: relative;
	transform: rotate(2deg);
}

.price-card .row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 10px
}

.price-card .row del {
	font-family: "DynaPuff";
	font-size: 42px;
	opacity: .5;
	text-decoration: line-through;
	text-decoration-thickness: 3px
}

.price-card .row strong {
	font-family: "DynaPuff";
	font-size: 82px;
	line-height: .9;
	letter-spacing: -.02em
}

.price-card .row small {
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 20px
}

.price-card .lbl {
	font-family: "DynaPuff";
	font-size: 24px;
	margin-bottom: 6px
}

.price-card ul {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: grid;
	gap: 8px;
	font-size: 14px
}

.price-card ul li {
	display: flex;
	gap: 10px;
	align-items: center
}

.price-card ul li::before {
	content: "✓";
	font-weight: 700
}

.price-card .pin {
	position: absolute;
	left: -18px;
	top: -18px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--butter);
	border: 1.5px solid var(--ink);
	display: grid;
	place-items: center;
	font-family: "DynaPuff";
	font-size: 22px;
	transform: rotate(-12deg);
}

.pricing .copy p {
	color: #dde0e8;
	font-size: 18px;
	line-height: 1.6;
	max-width: 46ch
}

.pricing .copy-buttons .ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap
}

.copy-buttons, .right-buttons {
	display: flex;
	justify-content: center;
}

.pricing .copy-buttons .btn-pri, .pricing .right-buttons .btn-pri {
	background: var(--butter);
	color: var(--ink);
}

.pricing .copy-buttons .btn-pri:hover, .pricing .right-buttons .btn-pri:hover {
	background: var(--coral);
	color: var(--cream)
}

.pricing .copy-buttons .btn-pri .arr, .pricing .right-buttons .btn-pri .arr {
	background: var(--ink);
	color: var(--butter)
}

.pricing .copy-buttons .btn-sec {
	border-color: var(--cream);
	color: var(--cream)
}

.pricing .copy-buttons .btn-sec:hover {
	background: rgba(255, 255, 255, .08)
}

.price-button {
	background-color: var(--butter);
	margin-top: 30px;
}

.right-buttons .btn-pri {
	cursor: pointer;
}

#pricingModal table {
	border-collapse: collapse;
	font-size: 30px;
	text-align: center;
	border-radius: 10px;
	border-style: hidden;
	box-shadow: 0 0 0 2px var(--ink);
}

#pricingModal th, #pricingModal td {
	border: 2px solid var(--ink);
}

#pricingModal h1 {
	margin-top: 30px;
	font-size: 50px;
}

#pricingModal .rev-sheet {
	display: flex;
	justify-content: center;
	flex-direction: column;
}


/* ========== testimonials carousel ========== */
.quotes {
	background: var(--paper);
	overflow: hidden;
	padding-bottom: 64px
}

.quotes .head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap
}

.quotes .src {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.quotes .src b {
	color: var(--coral);
	font-weight: 600
}

.q-marquee {
	margin-top: 54px;
	position: relative;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	overflow: hidden;
}

.q-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: qmove 60s linear infinite;
}

.q-marquee:hover .q-track {
	animation-play-state: paused
}

@keyframes qmove {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

.q {
	width: 380px;
	flex-shrink: 0;
	border: 1.5px solid var(--ink);
	border-radius: var(--r-lg);
	padding: 28px;
	background: var(--cream);
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-shadow: 5px 5px 0 var(--ink);
}

.q .stars {
	color: var(--coral);
	font-family: "DynaPuff";
	letter-spacing: 2px;
	font-size: 18px
}

.q blockquote {
	margin: 0;
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 20px;
	line-height: 1.35;
	color: var(--ink);
	display: -webkit-box;
	-webkit-line-clamp: 7;
	line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.q-more {
	align-self: flex-start;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	background: transparent;
	border: 1.5px solid var(--ink);
	padding: 8px 14px;
	border-radius: 99px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background .3s;
}

.q-more:hover {
	background: var(--ink);
	color: var(--cream)
}

.q-more svg {
	width: 12px;
	height: 12px
}

.q.c-2 .q-more:hover {
	background: var(--coral);
	color: var(--cream);
	border-color: var(--coral)
}

.q.c-3 .q-more:hover {
	background: var(--cobalt);
	color: var(--cream);
	border-color: var(--cobalt)
}

.q.c-4 .q-more:hover {
	background: var(--sage);
	color: var(--cream);
	border-color: var(--sage)
}

.q .who {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto
}

.q .who .av {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--butter), var(--coral));
	border: 1.5px solid var(--ink);
	display: grid;
	place-items: center;
	font-family: "DynaPuff";
	font-size: 18px;
}

.q .who .info {
	display: flex;
	flex-direction: column
}

.q .who .info b {
	font-weight: 600;
	font-size: 14px
}

.q .who .info small {
	font-size: 12px;
	color: var(--ink-soft)
}

.q.c-1 {
	background: var(--cream)
}

.q.c-2 {
	background: var(--butter)
}

.q.c-3 {
	background: var(--lilac)
}

.q.c-4 {
	background: var(--rose)
}

.q.c-5 {
	background: #bce5d6
}

/* ===== review modal ===== */
.rev-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 48px 20px;
	overflow: auto;
}

.rev-modal.open {
	display: flex
}

.rev-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 26, .55);
	backdrop-filter: blur(4px)
}

.rev-sheet {
	position: relative;
	z-index: 2;
	width: min(640px, 100%);
	background: var(--cream);
	border: 1.5px solid var(--ink);
	border-radius: 24px;
	box-shadow: 10px 10px 0 var(--ink);
	padding: 42px 40px 36px;
	animation: cal-in .35s cubic-bezier(.2, .9, .25, 1.1);
}

.rev-sheet .rev-close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--cream);
	display: grid;
	place-items: center;
	cursor: pointer;
	border: 1.5px solid var(--ink);
}

.rev-sheet .rev-close:hover {
	background: var(--coral)
}

.rev-sheet .stars {
	color: var(--coral);
	font-family: "DynaPuff";
	letter-spacing: 3px;
	font-size: 22px;
	margin-bottom: 14px
}

.rev-sheet blockquote {
	margin: 0;
	font-family: "Instrument Serif";
	font-style: italic;
	font-size: 22px;
	line-height: 1.45;
	color: var(--ink);
	white-space: pre-line;
}

.rev-sheet .rev-who {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1.5px solid rgba(0, 0, 0, .15);
}

.rev-sheet .rev-who .av {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--butter), var(--coral));
	border: 1.5px solid var(--ink);
	display: grid;
	place-items: center;
	font-family: "DynaPuff";
	font-size: 22px;
}

.rev-sheet .rev-who b {
	font-size: 16px;
	font-weight: 600;
	display: block
}

.rev-sheet .rev-who small {
	font-size: 13px;
	color: var(--ink-soft);
	font-family: "JetBrains Mono", monospace
}

.rev-sheet .src-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: 18px;
}

.rev-sheet .src-tag b {
	color: var(--coral)
}

/* ========== faq ========== */
.faq .layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 64px;
	margin-top: 54px;
	align-items: start
}

.faq details {
	border-bottom: 1.5px solid var(--ink);
	padding: 1rem 1rem;
	cursor: pointer;
	overflow: hidden;
}

.faq details:first-of-type {
	border-top: 1.5px solid var(--ink)
}
details * {
	margin: 0;
}
.faq details::details-content {
	block-size: 0;
	transition: block-size 0.7s, content-visibility 0.7s;
	transition-behavior: allow-discrete;
}
.faq details[open]::details-content {
	block-size: auto;
}

.faq details > p {
	padding-block: 14px;
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.55;
	max-width: 60ch;
}

.faq summary {
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	font-family: "DynaPuff";
	font-size: 24px;
	line-height: 1.2;
}

.faq summary::-webkit-details-marker {
	display: none
}

.faq summary::after {
	content: "+";
	font-family: "DynaPuff";
	font-size: 32px;
	background: var(--butter);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	border: 1.5px solid var(--ink);
	transition: transform .25s, background 0.25s;
}

.faq details[open] summary::after {
	content: "–";
	background: var(--coral);
	color: var(--cream);
	transform: rotate(180deg)
}

.faq .left .helper {
	background: var(--cobalt);
	color: var(--cream);
	border: 1.5px solid var(--ink);
	border-radius: var(--r-lg);
	padding: 30px;
	margin-top: 24px;
}

.faq .left .helper h4 {
	font-family: "DynaPuff";
	font-size: 28px;
	margin: 0 0 8px;
	line-height: 1.05
}

.faq .left .helper p {
	margin: 0;
	color: #dfe5ff;
	font-size: 15px;
	line-height: 1.5
}

.faq .left .helper a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	background: var(--butter);
	color: var(--ink);
	padding: 12px 18px;
	border-radius: 99px;
	font-weight: 600;
	font-size: 14px;
	border: 1.5px solid var(--ink);
	transition: background-color 0.2s ease-in-out;
}

.faq .left .helper a:hover {
	background-color: var(--coral);
}

/* ========== big CTA ========== */
.bigcta {
	padding: 0;
	border: none;
}

.bigcta-inner {
	background: var(--coral);
	border-bottom: 1.5px solid var(--ink);
	padding: 90px 36px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.bigcta-inner h2 {
	font-family: "DynaPuff";
	font-size: 150px;
	line-height: .9;
	margin: 0;
	color: var(--cream);
	letter-spacing: -.02em;
}

.bigcta-inner h2 .it {
	font-family: "Instrument Serif";
	font-style: italic;
	color: var(--butter);
	font-weight: 400
}

.bigcta-inner .phone {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 40px;
	background: var(--ink);
	color: var(--cream);
	padding: 22px 32px;
	border-radius: 999px;
	font-family: "JetBrains Mono", monospace;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .04em;
	cursor: pointer;
	transition: background 0.5s ease-in-out;
}

.bigcta-inner .phone:hover {
	background: var(--ink-soft);
}

.bigcta-inner .phone .ring {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--sage);
	display: grid;
	place-items: center;
	animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {

	0%,
	100% {
		transform: rotate(0)
	}

	25% {
		transform: rotate(-15deg)
	}

	75% {
		transform: rotate(15deg)
	}
}

.bigcta-inner .sub {
	font-family: "Instrument Serif";
	font-style: italic;
	color: var(--paper);
	font-size: 24px;
	margin-top: 24px;
}

/* ========== footer ========== */
footer {
	background: var(--ink);
	color: var(--cream);
	padding: 64px 36px 36px;
}

footer .grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	max-width: 1300px;
	margin: 0 auto;
}

footer h5 {
	font-family: "DynaPuff";
	font-size: 20px;
	margin: 0 0 18px;
	color: var(--butter)
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
	font-size: 14px;
	color: #c8cad2
}

footer ul a:hover {
	color: var(--butter)
}

footer .brand-foot {
	font-family: "DynaPuff";
	font-size: 42px;
	color: var(--cream);
	line-height: 1
}

footer .brand-foot .it {
	font-family: "Instrument Serif";
	font-style: italic;
	color: var(--butter);
	font-weight: 400
}

footer .blurb {
	margin-top: 16px;
	color: #c8cad2;
	font-size: 14px;
	max-width: 36ch;
	line-height: 1.55
}

footer .bottom {
	border-top: 1px solid #2c2c36;
	margin-top: 48px;
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: #8c8e98;
}

footer .bottom .heart {
	color: var(--coral)
}

/* ===== responsiveness ===== */
@media (max-width:1080px) {

	.hero .grid,
	.about .layout,
	.pricing .free,
	.faq .layout {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.levels .grid,
	.quotes .row {
		grid-template-columns: 1fr 1fr
	}

	.how .bento {
		grid-template-columns: repeat(6, 1fr)
	}

	.b1,
	.b4,
	.b5 {
		grid-column: span 6
	}

	.b2,
	.b3,
	.b6 {
		grid-column: span 3
	}

	footer .grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px
	}

	.pricing .free {
		padding: 48px
	}

	.pricing .free .copy-buttons {
		grid-row: 2;
	}

	.slider__arrow {
		font-size: 90px;
	}
}

@media (max-width:680px) {
	nav.top {
		padding: 14px 18px
	}

	nav.top ul {
		display: none
	}

	.brand {
		font-size: 18px;
		gap: 8px
	}

	.brand .mark {
		width: 30px;
		height: 30px
	}

	.brand .mark svg {
		width: 18px;
		height: 18px
	}

	.nav-actions {
		gap: 6px
	}

	.nav-cta {
		padding: 9px 14px;
		font-size: 13px;
		white-space: nowrap
	}

	.brand {
		white-space: nowrap
	}

	section {
		padding: 64px 22px
	}

	.hero {
		padding: 36px 22px 56px
	}

	.hero h1 {
		font-size: 52px;
		margin-bottom: 20px;
	}

	.hero h1>span {
		white-space: normal !important
	}

	.paw-hero1 {
		display: none
	}

	.paw-inline {
		display: inline-block
	}

	.hero p.lede {
		font-size: 16px;
		margin-top: 22px
	}

	.hero .ctas {
		gap: 10px;
		margin-top: 26px
	}

	.btn-pri,
	.btn-sec {
		padding: 14px 18px;
		font-size: 14px
	}

	.hero .meta-row {
		gap: 12px 16px;
		margin-top: 30px
	}

	.photo,
	.photo-wrap {
		max-width: 100%
	}

	.sticker {
		width: 104px;
		height: 104px;
		left: -10px;
		bottom: -10px
	}

	.sticker .inner {
		font-size: 15px
	}

	h2.kicker {
		font-size: 52px;
		line-height: 1.1;
	}

	.levels .grid,
	.how .bento {
		grid-template-columns: 1fr
	}

	.b1,
	.b2,
	.b3,
	.b4,
	.b5,
	.b6 {
		grid-column: span 1
	}

	.b1 h3 {
		font-size: 36px
	}

	.q {
		width: 80vw;
		max-width: 320px;
		padding: 22px
	}

	.q blockquote {
		font-size: 17px
	}

	footer .grid {
		grid-template-columns: 1fr
	}

	.price-card .row strong {
		font-size: 56px
	}

	.price-card .row del {
		font-size: 30px
	}

	.pricing {
		padding: 80px 22px
	}

	.pricing .free {
		padding: 30px 24px;
		border-radius: 24px
	}

	.lvl .code {
		font-size: 60px
	}

	.ticker .track2 {
		font-size: 30px;
		animation-duration: 18s
	}

	.bigcta-inner {
		padding: 60px 22px
	}

	.bigcta-inner h2 {
		font-size: 88px
	}

	.bigcta-inner .phone {
		font-size: 18px;
		padding: 18px 24px;
		gap: 12px
	}

	.bigcta-inner .phone .ring {
		width: 36px;
		height: 36px
	}

	.quotes .head-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px
	}

	.slider__arrow {
		font-size: 80px;
	}

	#pricingModal .rev-sheet {
		padding: 20px;
	}

	#pricingModal table, #pricingModal th, #pricingModal td {
		font-size: 17px;
	}

	#pricingModal h1 {
		font-size: 30px;
	}
}

@media (max-width:430px) {
	.brand .serif {
		display: inline
	}

	.nav-cta {
		padding: 9px 13px
	}

	.hero h1 {
		font-size: 52px
	}

	.bigcta-inner .phone {
		font-size: 16px;
		letter-spacing: 0
	}

	.lvl {
		padding: 24px
	}

	.lvl .code {
		font-size: 52px
	}
}
