/* ═══════════════════════════════════════════════════════════════════════
   getfractal.net — public site · bold & playful kids-tech
   ═══════════════════════════════════════════════════════════════════════ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-body);
	color: var(--grey);
	background: #fbfaf6;
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}
.disp {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	height: 54px;
	padding: 0 28px;
	border-radius: 999px;
	transition:
		transform 140ms cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 180ms,
		background 160ms;
}
.btn:active {
	transform: scale(0.97);
}
.btn-primary {
	background: var(--fun-purple);
	color: #fff;
	box-shadow: 0 10px 26px rgba(164, 0, 188, 0.32);
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(164, 0, 188, 0.42);
}
.btn-yellow {
	background: var(--experiences-yellow);
	color: var(--grey);
	box-shadow: 0 10px 26px rgba(255, 193, 1, 0.4);
}
.btn-yellow:hover {
	transform: translateY(-3px) rotate(-1deg);
}
.btn-light {
	background: #fff;
	color: var(--grey);
	border: 2px solid var(--line);
}
.btn-light:hover {
	border-color: var(--fun-purple);
	color: var(--fun-purple);
	transform: translateY(-3px);
}
.btn-ghost-light {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
	background: rgba(255, 255, 255, 0.26);
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(251, 250, 246, 0.82);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}
.nav-in {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 72px;
}
.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-mark {
	width: 40px;
	height: 40px;
}
.nav-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	letter-spacing: 0.14em;
	color: var(--grey);
}
.nav-links {
	display: flex;
	gap: 4px;
	margin-left: 22px;
}
.nav-links a {
	font-weight: 600;
	font-size: 15px;
	color: var(--ink-2);
	padding: 9px 15px;
	border-radius: 10px;
	transition:
		background 140ms,
		color 140ms;
}
.nav-links a:hover {
	background: #fff;
	color: var(--fun-purple);
}
.nav-cta {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 14px;
}
.nav-sandbox-logo {
	height: 24px;
	width: auto;
}
.nav .btn {
	height: 44px;
	font-size: 14.5px;
	padding: 0 20px;
}

/* ── Decorative shapes ───────────────────────────────────────── */
.blob {
	position: absolute;
	border-radius: 50% 50% 48% 52% / 55% 48% 52% 45%;
	filter: blur(2px);
	z-index: 0;
	pointer-events: none;
}
.dot {
	position: absolute;
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
.squig {
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 92px;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 520px at 78% 8%, rgba(213, 77, 232, 0.16), transparent 60%),
		radial-gradient(760px 480px at 10% 90%, rgba(70, 100, 225, 0.12), transparent 60%),
		radial-gradient(620px 420px at 92% 88%, rgba(255, 193, 1, 0.14), transparent 60%);
	z-index: 0;
}
.hero-in {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 16px 8px 10px;
	font-weight: 700;
	font-size: 13px;
	color: var(--dark-purple);
	margin-bottom: 24px;
	box-shadow: 0 4px 16px rgba(42, 47, 53, 0.06);
}
.hero-eyebrow .pip {
	display: inline-flex;
	gap: 4px;
}
.hero-eyebrow .pip i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 76px;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--grey);
	margin-bottom: 24px;
}
.hero-title .spectrum {
	background: linear-gradient(92deg, var(--fun-purple), var(--light-purple) 35%, var(--learning-blue) 70%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-lede {
	font-size: 20px;
	line-height: 1.6;
	color: var(--ink-2);
	max-width: 520px;
	margin-bottom: 34px;
}
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}
.hero-note {
	font-size: 14px;
	color: var(--ink-muted);
	margin-top: 22px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* hero playful art */
.hero-art {
	position: relative;
	height: 460px;
}
.hero-mark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 188px;
	height: 188px;
	z-index: 2;
	filter: drop-shadow(0 18px 36px rgba(164, 0, 188, 0.26));
	animation: bob 6s ease-in-out infinite;
}
.tile {
	position: absolute;
	width: 92px;
	height: 92px;
	border-radius: 24px;
	background: #fff;
	padding: 16px;
	box-shadow: 0 14px 34px rgba(42, 47, 53, 0.14);
	z-index: 2;
	animation: bob 5s ease-in-out infinite;
}
.tile img {
	width: 100%;
	height: 100%;
}
.tile.t1 {
	top: 6%;
	left: 6%;
	animation-delay: -0.4s;
	rotate: -8deg;
}
.tile.t2 {
	top: 0%;
	right: 14%;
	animation-delay: -1.2s;
	rotate: 6deg;
}
.tile.t3 {
	top: 40%;
	right: 0%;
	animation-delay: -2s;
	rotate: -5deg;
}
.tile.t4 {
	bottom: 4%;
	right: 18%;
	animation-delay: -2.7s;
	rotate: 8deg;
}
.tile.t5 {
	bottom: 0%;
	left: 12%;
	animation-delay: -1.7s;
	rotate: -6deg;
}
.tile.t6 {
	top: 44%;
	left: 0%;
	animation-delay: -0.9s;
	rotate: 7deg;
}
@keyframes bob {
	0%,
	100% {
		translate: 0 0;
	}
	50% {
		translate: 0 -14px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.hero-mark,
	.tile {
		animation: none;
	}
}

/* ── Section scaffold ────────────────────────────────────────── */
.sec {
	position: relative;
	padding: 88px 0;
}
.sec-head {
	max-width: 720px;
	margin: 0 auto 52px;
	text-align: center;
}
.eyebrow {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fun-purple);
	margin-bottom: 14px;
}
.sec-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 46px;
	line-height: 1.04;
	letter-spacing: -0.025em;
	color: var(--grey);
}
.sec-lede {
	font-size: 18px;
	color: var(--ink-2);
	margin-top: 16px;
	line-height: 1.6;
}

/* ── What is Fractal ─────────────────────────────────────────── */
.what {
	background: #fff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.what-statement {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 38px;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--grey);
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.what-statement b {
	background: linear-gradient(transparent 62%, rgba(255, 193, 1, 0.5) 62%);
	padding: 0 2px;
}
.what-statement .gp {
	color: var(--fun-purple);
}
.stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 56px;
}
.stat {
	text-align: center;
}
.stat .n {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 48px;
	line-height: 1;
	letter-spacing: -0.03em;
}
.stat .l {
	font-size: 14px;
	color: var(--ink-muted);
	margin-top: 8px;
	font-weight: 600;
}
.stat.c1 .n {
	color: var(--fun-purple);
}
.stat.c2 .n {
	color: var(--learning-blue);
}
.stat.c3 .n {
	color: var(--digital-green);
}
.stat.c4 .n {
	color: var(--dark-yellow);
}

/* ── Capabilities ────────────────────────────────────────────── */
.caps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.cap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 24px;
	position: relative;
	overflow: hidden;
	transition:
		transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 200ms,
		border-color 160ms;
}
.cap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--ac);
}
.cap.spectrum-bar::before {
	background: linear-gradient(90deg, #a400bc, #d54de8, #ffc101, #00d17f, #4664e1);
}
.cap:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(42, 47, 53, 0.13);
	border-color: color-mix(in oklab, var(--ac) 40%, var(--line));
}
.cap-ic {
	width: 60px;
	height: 60px;
	border-radius: 17px;
	margin-bottom: 16px;
	display: grid;
	place-items: center;
	background: color-mix(in oklab, var(--ac) 10%, #fff);
}
.cap-ic img {
	width: 42px;
	height: 42px;
}
.cap-ic .g {
	font-size: 26px;
	color: var(--ac);
}
.cap-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	color: var(--grey);
}
.cap-role {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ac);
	margin: 2px 0 10px;
}
.cap-desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-2);
}

/* ── Audiences ───────────────────────────────────────────────── */
.who {
	background: linear-gradient(180deg, #fff, #fbf2fc);
	border-top: 1px solid var(--line);
}
.who-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.who-card {
	background: #fff;
	border-radius: 26px;
	padding: 34px 30px;
	border: 1px solid var(--line);
	box-shadow: 0 10px 30px rgba(42, 47, 53, 0.05);
	position: relative;
	overflow: hidden;
}
.who-card .emoji {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	display: grid;
	place-items: center;
	font-size: 30px;
	margin-bottom: 20px;
}
.who-card h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 24px;
	color: var(--grey);
	margin-bottom: 10px;
}
.who-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink-2);
}
.who-card .tagline {
	margin-top: 16px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
}
.who-card.a1 .emoji {
	background: rgba(164, 0, 188, 0.12);
}
.who-card.a1 .tagline {
	color: var(--fun-purple);
}
.who-card.a2 .emoji {
	background: rgba(0, 209, 127, 0.14);
}
.who-card.a2 .tagline {
	color: var(--dark-green);
}
.who-card.a3 .emoji {
	background: rgba(70, 100, 225, 0.12);
}
.who-card.a3 .tagline {
	color: var(--learning-blue);
}

/* ── Trust & safety ──────────────────────────────────────────── */
.trust {
	background: var(--dark-purple);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.trust .eyebrow {
	color: var(--light-yellow);
}
.trust .sec-title {
	color: #fff;
}
.trust-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}
.trust-points {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.trust-point {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.trust-point .ic {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 22px;
}
.trust-point h4 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	margin-bottom: 3px;
}
.trust-point p {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.55;
}
.trust-shield {
	display: grid;
	place-items: center;
}
.trust-shield .badge {
	width: 280px;
	height: 280px;
	border-radius: 40px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.18);
	display: grid;
	place-items: center;
	position: relative;
}
.trust-shield .badge img {
	width: 150px;
	height: 150px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}
.trust-shield .coppa {
	position: absolute;
	bottom: 22px;
	background: var(--digital-green);
	color: #06231a;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.05em;
	padding: 7px 16px;
	border-radius: 999px;
}

/* ── About ───────────────────────────────────────────────────── */
.about-in {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.about-copy .eyebrow {
	text-align: left;
}
.about-copy h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--grey);
	margin-bottom: 20px;
}
.about-copy p {
	font-size: 16.5px;
	line-height: 1.68;
	color: var(--ink-2);
	margin-bottom: 16px;
}
.about-copy p b {
	color: var(--grey);
}
.about-art {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 360px;
}
.about-art .ring {
	position: absolute;
	border-radius: 50%;
	border: 2px dashed var(--line);
}
.about-art .sbx {
	position: relative;
	z-index: 2;
	width: 86%;
	max-width: 380px;
}

/* ── Contact CTA ─────────────────────────────────────────────── */
.contact {
	background: linear-gradient(135deg, var(--fun-purple), #7d0a92);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.contact-in {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.contact-copy .eyebrow {
	color: var(--light-yellow);
}
.contact-copy h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 50px;
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin-bottom: 18px;
}
.contact-copy p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.6;
	max-width: 440px;
}
.contact-copy .reach {
	margin-top: 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.contact-copy .reach a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 16px;
}
.contact-copy .reach .ic {
	width: 36px;
	height: 36px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.16);
	display: grid;
	place-items: center;
}
.form-card {
	background: #fff;
	border-radius: 28px;
	padding: 30px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}
.form-card .fr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.field {
	margin-bottom: 16px;
}
.field label {
	display: block;
	font-weight: 700;
	font-size: 13px;
	color: var(--grey);
	margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 13px;
	padding: 13px 15px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--grey);
	background: #fbfaf6;
	outline: none;
	transition:
		border-color 140ms,
		box-shadow 140ms;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
	border-color: var(--fun-purple);
	box-shadow: 0 0 0 4px rgba(164, 0, 188, 0.12);
	background: #fff;
}
.field textarea {
	resize: vertical;
	min-height: 96px;
	line-height: 1.5;
}
.form-card .submit {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
}
.form-note {
	font-size: 12.5px;
	color: var(--ink-muted);
	text-align: center;
	margin-top: 14px;
}
.form-ok {
	text-align: center;
	padding: 30px 10px;
}
.form-ok .check {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--digital-green);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 32px;
	margin: 0 auto 18px;
}
.form-ok h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 24px;
	color: var(--grey);
	margin-bottom: 8px;
}
.form-ok p {
	color: var(--ink-2);
	font-size: 15px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.foot {
	background: var(--grey);
	color: rgba(255, 255, 255, 0.7);
	padding: 52px 0 34px;
}
.foot-top {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.foot-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.foot-brand .nm {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: 0.14em;
	color: #fff;
}
.foot-brand .bl {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 2px;
}
.foot-cols {
	display: flex;
	gap: 56px;
}
.foot-col h5 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 12px;
}
.foot-col a {
	display: block;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.8);
	padding: 5px 0;
}
.foot-col a:hover {
	color: #fff;
}
.foot-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 24px;
	flex-wrap: wrap;
	font-size: 13px;
}
.foot-bottom .dom {
	font-family: var(--font-display);
	font-weight: 700;
	color: #fff;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 940px) {
	.hero-in {
		grid-template-columns: 1fr;
	}
	.hero-art {
		order: -1;
		height: 340px;
	}
	.hero-title {
		font-size: 56px;
	}
	.caps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.stat-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	.who-grid {
		grid-template-columns: 1fr;
	}
	.trust-grid,
	.about-in,
	.contact-in {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.trust-shield {
		order: -1;
	}
	.nav-links {
		display: none;
	}
}
@media (max-width: 560px) {
	.hero-title {
		font-size: 44px;
	}
	.sec-title {
		font-size: 34px;
	}
	.what-statement {
		font-size: 28px;
	}
	.caps-grid {
		grid-template-columns: 1fr;
	}
	.contact-copy h2 {
		font-size: 38px;
	}
	.form-card .fr {
		grid-template-columns: 1fr;
	}
	.nav-sandbox-logo {
		display: none;
	}
}
