/* ==========================================================
   Address Scoop — link-in-bio page
   One narrow column, built for a phone: logo, a one-line bio
   in Baskervville italic, a teal "latest" card, then the links
   as full-width buttons. Teal-ink background, one soft light.
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body.scoop {
	--ink: var(--b-bg);
	--card: var(--b-surface);
	--paper: var(--b-text);
	--soft: var(--b-muted);
	--line: var(--b-line);
	--teal: var(--b-accent);
	--teal-lite: color-mix(in srgb, var(--b-accent) 60%, #fff);
	--r: var(--b-radius);
	--ease: cubic-bezier(.22, .61, .36, 1);
	margin: 0;
	min-height: 100vh;
	min-height: 100svh;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--f-body);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

/* One soft teal light behind the logo. Static. */
.sb__glow {
	position: fixed;
	z-index: 0;
	left: 50%;
	top: -180px;
	width: 720px;
	height: 520px;
	max-width: 160vw;
	transform: translateX(-50%);
	background: radial-gradient(closest-side, color-mix(in srgb, var(--teal) 34%, transparent), transparent);
	pointer-events: none;
}

.sb {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: calc(var(--b-max) + 40px);
	min-height: 100vh;
	min-height: 100svh;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding: max(56px, calc(env(safe-area-inset-top) + 40px)) 20px max(24px, env(safe-area-inset-bottom));
}

/* ---------- Header ---------- */

.sb__head { text-align: center; animation: sb-in .8s var(--ease) both; }
.sb__logo { margin: 0; line-height: 0; display: flex; justify-content: center; }
.sb__logo img { width: min(var(--b-logo), 72vw); height: auto; }
.sb__bio {
	max-width: 30ch;
	margin: 22px auto 0;
	font-family: var(--f-head);
	font-style: italic;
	font-size: 18px;
	line-height: 1.45;
	color: var(--paper);
	opacity: .9;
	text-wrap: balance;
}
.sb__sub { max-width: 34ch; margin: 8px auto 0; color: var(--soft); font-size: 14px; text-wrap: balance; }

/* ---------- Featured card ---------- */

.sb__featured {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 36px;
	padding: 18px 20px;
	border-radius: var(--r);
	background: var(--teal);
	color: var(--ink);
	text-decoration: none;
	box-shadow: 0 10px 30px -12px color-mix(in srgb, var(--teal) 70%, transparent);
	transition: transform .25s var(--ease), background .25s var(--ease);
	animation: sb-in .8s var(--ease) .1s both;
}
.sb__featured-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sb__featured-label { font-size: 12px; font-weight: 500; opacity: .75; }
.sb__featured-title { font-family: var(--f-head); font-size: 20px; line-height: 1.25; }
.sb__featured-arrow { flex: none; transition: transform .25s var(--ease); }
[dir="rtl"] .sb__featured-arrow { transform: scaleX(-1); }
@media (hover: hover) {
	.sb__featured:hover { transform: translateY(-2px); background: var(--teal-lite); }
	.sb__featured:hover .sb__featured-arrow { transform: translateX(3px); }
	[dir="rtl"] .sb__featured:hover .sb__featured-arrow { transform: scaleX(-1) translateX(3px); }
}
.sb__featured:active { transform: scale(.99); }

/* ---------- Links ---------- */

.sb__links { margin-top: 14px; }
.sb__links ul { margin: 0; padding: 0; list-style: none; }
.sb__links a { color: var(--paper); text-decoration: none; -webkit-tap-highlight-color: transparent; }
.sb__links a:focus-visible, .sb__featured:focus-visible { outline: 2px solid var(--teal-lite); outline-offset: 3px; }
.sb__icon { width: 20px; height: 20px; }

/* Full-width buttons */
.sb__links--buttons ul { display: grid; gap: 10px; }
.sb__links--buttons li { animation: sb-in .7s var(--ease) both; animation-delay: calc(.18s + var(--i, 0) * .05s); }
.sb__links--buttons a {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 64px;
	padding: 10px 16px 10px 10px;
	border-radius: var(--r);
	background: var(--card);
	border: 1px solid var(--line);
	transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
[dir="rtl"] .sb__links--buttons a { padding: 10px 10px 10px 16px; }
.sb__icon-wrap {
	flex: none;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: calc(var(--r) - 5px);
	background: color-mix(in srgb, var(--teal) 18%, transparent);
	color: var(--teal-lite);
}
.sb__text { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3; }
.sb__name { font-size: 15px; font-weight: 500; }
.sb__handle { color: var(--soft); font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sb__arrow { flex: none; color: var(--soft); transition: transform .25s var(--ease), color .25s; }
[dir="rtl"] .sb__arrow { transform: scaleX(-1); }
@media (hover: hover) {
	.sb__links--buttons a:hover { border-color: var(--teal); background: color-mix(in srgb, var(--card) 85%, var(--teal)); transform: translateY(-1px); }
	.sb__links--buttons a:hover .sb__arrow { color: var(--teal-lite); transform: translate(2px, -2px); }
	[dir="rtl"] .sb__links--buttons a:hover .sb__arrow { transform: scaleX(-1) translate(2px, -2px); }
}
.sb__links--buttons a:active { transform: scale(.99); }

/* Row of round icons */
.sb__links--circle ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 12px; }
.sb__links--circle a { display: grid; place-items: center; width: var(--b-icon); height: var(--b-icon); border-radius: 50%; background: var(--card); border: 1px solid var(--line); transition: border-color .25s, color .25s; }
.sb__links--circle .sb__icon-wrap { width: auto; height: auto; background: none; }
.sb__links--circle a:hover { border-color: var(--teal); }

/* Icons only */
.sb__links--plain ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 18px; }
.sb__links--plain .sb__icon-wrap { width: auto; height: auto; background: none; color: var(--paper); }
.sb__links--plain a:hover .sb__icon-wrap { color: var(--teal-lite); }

/* ---------- Footer ---------- */

.sb__foot {
	margin-top: auto;
	padding-top: 44px;
	color: var(--soft);
	font-size: 12px;
	text-align: center;
}

@keyframes sb-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
