/* ============================================================
   myhostelcity — landing theme · main.css
   Brand tokens lifted from mobile-app/src/theme/colors.ts and
   logo.html. Single-page landing, motion-first, mobile-first.
   ============================================================ */

/* ----- 1. Tokens ----- */
:root {
	--paper:        #F2E8D0;
	--paper-2:      #EADFC2;
	--card:         #FCF6E3;
	--ink:          #1A1410;
	--ink-2:        #5A4E3F;
	--muted:        #988D78;
	--line:         #E5D8BA;
	--line-2:       #D2C29D;
	--brand:        #D4452B;
	--brand-dark:   #8E2A14;
	--brand-soft:   #FAE2D8;
	--midnight:     #14110F;
	--midnight-2:   #221A14;
	--mint:         #2E8F6E;
	--saffron:      #D4A017;
	--paper-on-dark:#FFFEF8;

	--maxw: 1240px;
	--gutter: clamp(20px, 4vw, 56px);
	--radius: 18px;
	--radius-lg: 28px;

	--ease-out: cubic-bezier(.2,.7,.1,1);
	--ease-back: cubic-bezier(.4,1.4,.3,1);

	--shadow-sm: 0 6px 16px -10px rgba(40,20,5,.20);
	--shadow:    0 20px 40px -25px rgba(40,20,5,.25);
	--shadow-lg: 0 40px 80px -35px rgba(40,20,5,.35);
}

/* ----- 2. Reset / base ----- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: 'Inter Tight', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-feature-settings: "ss01";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--brand); color: var(--paper-on-dark); }

/* Accessibility — skip link */
.hc-skip {
	position: absolute; left: -9999px; top: 12px;
	background: var(--ink); color: var(--paper-on-dark);
	padding: 10px 16px; border-radius: 999px;
	font-weight: 600; z-index: 9999;
}
.hc-skip:focus { left: 12px; }

/* ----- 3. Layout primitives ----- */
.hc-container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
}

.hc-kicker {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--muted);
}
.hc-kicker--brand { color: var(--brand); }
.hc-kicker--paper { color: rgba(255,254,248,0.7); }

.hc-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: "tnum"; }

.hc-dot {
	width: 8px; height: 8px; border-radius: 999px;
	background: var(--brand);
	box-shadow: 0 0 0 0 rgba(212,69,43,.55);
	animation: hc-dot-pulse 1.8s var(--ease-out) infinite;
}
@keyframes hc-dot-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(212,69,43,.55); }
	70%  { box-shadow: 0 0 0 12px rgba(212,69,43,0); }
	100% { box-shadow: 0 0 0 0 rgba(212,69,43,0); }
}

/* Headings */
.hc-h1 {
	font-size: clamp(48px, 7.4vw, 104px);
	line-height: 0.94;
	font-weight: 800;
	letter-spacing: -0.032em;
	margin: 20px 0 0;
}
.hc-h1 .hc-line { display: block; overflow: hidden; }
.hc-h1 .hc-line > span { display: inline-block; }
.hc-h2 {
	font-size: clamp(34px, 4.2vw, 62px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -0.024em;
	margin: 8px 0 0;
}
.hc-h2--paper { color: var(--paper-on-dark); }
.hc-accent { font-style: normal; color: var(--brand); }
.hc-accent--paper { font-style: normal; color: var(--paper-on-dark); }

.hc-lede {
	font-size: clamp(15.5px, 1.4vw, 18px);
	line-height: 1.6;
	color: var(--ink-2);
	max-width: 56ch;
	margin: 22px 0 0;
}
.hc-lede--paper { color: rgba(255,254,248,0.78); }

/* Section headers */
.hc-sec-head {
	max-width: 760px;
	margin: 0 0 56px;
}
.hc-sec-head__sub {
	margin-top: 16px;
	font-size: 16px; line-height: 1.55;
	color: var(--ink-2);
	max-width: 56ch;
}

/* ----- 4. Nav ----- */
.hc-nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 90;
	padding: 18px 0;
	transition: backdrop-filter .3s, background .3s, border-color .3s;
	border-bottom: 1px solid transparent;
}
.hc-nav.is-stuck {
	background: rgba(242,232,208,.78);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom-color: var(--line);
}
.hc-nav__inner {
	max-width: var(--maxw); margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
}
.hc-nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.hc-nav__wordmark {
	font-weight: 800;
	letter-spacing: -0.03em;
	font-size: 19px;
	color: var(--ink);
}
.hc-nav__links { display: flex; gap: 28px; }
.hc-nav__links a {
	font-size: 14px; font-weight: 600;
	color: var(--ink-2);
	position: relative;
	transition: color .2s;
}
.hc-nav__links a::after {
	content: ''; position: absolute; left: 0; right: 100%; bottom: -6px;
	height: 1.5px; background: var(--brand);
	transition: right .25s var(--ease-out);
}
.hc-nav__links a:hover { color: var(--ink); }
.hc-nav__links a:hover::after { right: 0; }
.hc-nav__cta {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 18px;
	background: var(--ink); color: var(--paper-on-dark);
	border-radius: 999px;
	font-weight: 600; font-size: 14px;
	transition: transform .2s var(--ease-out), background .2s;
}
.hc-nav__cta:hover { transform: translateY(-1px); background: var(--brand); }

@media (max-width: 720px) {
	.hc-nav__links { display: none; }
}

/* ----- 5. Hero ----- */
.hc-hero {
	position: relative;
	min-height: 100vh;
	padding: 140px 0 80px;
	display: flex; align-items: center;
	overflow: hidden;
}
.hc-hero__bg {
	position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hc-hero__grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgba(26,20,16,0.045) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(26,20,16,0.045) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
.hc-hero__glow {
	position: absolute; top: 50%; left: 50%;
	width: 80vw; height: 80vw; max-width: 1100px; max-height: 1100px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(212,69,43,0.10), transparent 65%);
	filter: blur(20px);
}
.hc-hero__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.hc-hero__left { max-width: 620px; }

.hc-cta-row {
	display: flex; flex-wrap: wrap; gap: 14px;
	margin-top: 32px;
}
.hc-cta-row--center { justify-content: center; }

.hc-btn {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 14px 22px;
	border-radius: 14px;
	font-weight: 600;
	transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, color .25s;
	will-change: transform;
}
.hc-btn--lg { padding: 18px 28px; }
.hc-btn__body { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.hc-btn__top { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; font-weight: 600; }
.hc-btn__bot { font-size: 17px; font-weight: 700; margin-top: 4px; letter-spacing: -0.01em; }

.hc-btn--play {
	background: var(--ink); color: var(--paper-on-dark);
	box-shadow: var(--shadow-sm);
}
.hc-btn--play:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: var(--brand); }

.hc-btn--ghost {
	background: transparent; color: var(--ink);
	border: 1.5px solid var(--line-2);
}
.hc-btn--ghost:hover { background: var(--card); border-color: var(--ink); transform: translateY(-2px); }
.hc-btn--ghost-paper {
	color: var(--paper-on-dark);
	border-color: rgba(255,254,248,0.35);
}
.hc-btn--ghost-paper:hover { background: rgba(255,254,248,0.08); border-color: var(--paper-on-dark); }

.hc-btn--soon {
	background: transparent; color: var(--muted);
	border: 1.5px dashed var(--line-2);
	cursor: not-allowed;
}

.hc-hero__meta {
	margin-top: 48px;
	display: flex; gap: clamp(28px, 5vw, 56px);
	padding-top: 28px;
	border-top: 1px solid var(--line);
}
.hc-hero__meta-item { display: flex; flex-direction: column; gap: 6px; }
.hc-hero__meta-n {
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	color: var(--ink);
	line-height: 1;
	letter-spacing: -0.02em;
}
.hc-hero__meta-l {
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--muted);
}

@media (max-width: 980px) {
	.hc-hero__inner { grid-template-columns: 1fr; gap: 60px; }
	.hc-hero__right { order: -1; }
	.hc-hero { padding-top: 120px; }
}

/* Scroll cue */
.hc-scroll-cue {
	position: absolute; bottom: 28px; left: 50%;
	transform: translateX(-50%);
	display: inline-flex; align-items: center; gap: 10px;
	color: var(--muted);
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase;
	z-index: 2;
	transition: color .2s;
}
.hc-scroll-cue:hover { color: var(--brand); }
.hc-scroll-cue__dot { animation: hc-scroll-dot 1.8s var(--ease-out) infinite; }
@keyframes hc-scroll-dot {
	0%   { transform: translateY(0); opacity: 1; }
	50%  { transform: translateY(8px); opacity: 0.4; }
	100% { transform: translateY(0); opacity: 1; }
}

/* ----- 5b. Hero stage (animated logo + orbit chips) ----- */
.hc-stage {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
}
.hc-stage__grid {
	position: absolute; inset: 6%;
	border-radius: 50%;
	background:
		repeating-radial-gradient(circle at 50% 50%, rgba(26,20,16,0.04) 0 1px, transparent 1px 38px);
	mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 70%, transparent 100%);
	-webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 70%, transparent 100%);
}
.hc-stage__halo {
	position: absolute; inset: 12%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212,69,43,0.18), transparent 65%);
	filter: blur(8px);
}
.hc-stage__rings {
	position: absolute; inset: 0; width: 100%; height: 100%;
	fill: none;
	stroke: rgba(26,20,16,0.08);
	stroke-width: 0.6;
	stroke-dasharray: 1 3;
	animation: hc-rings-spin 90s linear infinite;
}
@keyframes hc-rings-spin { to { transform: rotate(360deg); } }

.hc-stage__center {
	position: absolute; left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 220px; height: 220px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 35%, var(--paper-on-dark) 0%, var(--card) 60%, var(--paper-2) 100%);
	border: 1px solid var(--line);
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow);
}
.hc-stage__mark {
	will-change: transform, filter;
}
.hc-mark__arch {
	transform-box: fill-box;
	transform-origin: 50% 100%;
}
.hc-mark__lantern {
	transform-box: fill-box;
	transform-origin: 50% 50%;
	filter: drop-shadow(0 0 6px rgba(212,69,43,.55));
}

/* Orbit chips */
.hc-orbit__chip {
	position: absolute;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 12px 14px;
	min-width: 180px;
	box-shadow: var(--shadow);
	will-change: transform;
}
.hc-orbit__kind {
	font-size: 9.5px; font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--brand);
	margin-bottom: 5px;
}
.hc-orbit--out  .hc-orbit__kind { color: #8E2A14; }
.hc-orbit--ride .hc-orbit__kind { color: #0C5A52; }
.hc-orbit--room .hc-orbit__kind { color: #4B1A8C; }
.hc-orbit--food .hc-orbit__kind { color: #7A560A; }
.hc-orbit__txt {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.25;
}
.hc-orbit__meta {
	font-size: 10.5px;
	margin-top: 5px;
	color: var(--muted);
}

.hc-orbit__chip--1 { top:  6%; left:  -4%; }
.hc-orbit__chip--2 { top: 12%; right: -6%; }
.hc-orbit__chip--3 { bottom: 18%; left: -10%; }
.hc-orbit__chip--4 { bottom:  6%; right: -2%; }

@media (max-width: 540px) {
	.hc-orbit__chip { min-width: 150px; padding: 10px 12px; }
	.hc-orbit__chip--1 { left: 0; }
	.hc-orbit__chip--2 { right: 0; }
	.hc-orbit__chip--3 { left: -4%; }
	.hc-orbit__chip--4 { right: 0; }
	.hc-stage__center { width: 170px; height: 170px; }
	.hc-stage__mark { width: 130px; height: 130px; }
}

/* ----- 6. Marquee strip ----- */
.hc-marquee {
	background: var(--ink);
	color: var(--paper-on-dark);
	padding: 22px 0;
	overflow: hidden;
	border-top: 1px solid var(--midnight-2);
	border-bottom: 1px solid var(--midnight-2);
}
.hc-marquee__track {
	display: inline-flex; gap: 36px;
	white-space: nowrap;
	animation: hc-marquee 38s linear infinite;
	will-change: transform;
}
.hc-marquee__item {
	font-size: 15px; font-weight: 700;
	letter-spacing: -0.01em;
}
.hc-marquee__sep {
	display: inline-flex; align-items: center;
	color: var(--brand);
	opacity: 0.7;
}
@keyframes hc-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ----- 7. Lanes grid ----- */
.hc-lanes { padding: 120px 0 100px; position: relative; }
.hc-lanes__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}
.hc-lane {
	background: var(--lane-bg, var(--card));
	color: var(--lane-fg, var(--ink));
	border-radius: var(--radius);
	padding: 28px 26px;
	display: flex; flex-direction: column;
	gap: 14px;
	min-height: 240px;
	position: relative;
	overflow: hidden;
	transition: transform .35s var(--ease-out), box-shadow .35s;
	will-change: transform;
	opacity: 0;
	transform: translateY(28px);
}
.hc-lane::before {
	content: '';
	position: absolute; inset: -1px;
	border-radius: var(--radius);
	border: 1px solid currentColor;
	opacity: 0.08;
	pointer-events: none;
}
.hc-lane:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.hc-lane.is-in { opacity: 1; transform: translateY(0); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }

.hc-lane--out  { grid-column: span 6; }
.hc-lane--ride { grid-column: span 6; }
.hc-lane--room { grid-column: span 4; }
.hc-lane--food { grid-column: span 4; }
.hc-lane--carpool { grid-column: span 4; }
.hc-lane--lost { grid-column: span 7; }
.hc-lane--guide { grid-column: span 5; }

@media (max-width: 980px) {
	.hc-lanes__grid { grid-template-columns: repeat(6, 1fr); }
	.hc-lane--out, .hc-lane--ride { grid-column: span 6; }
	.hc-lane--room, .hc-lane--food, .hc-lane--carpool { grid-column: span 6; }
	.hc-lane--lost, .hc-lane--guide { grid-column: span 6; }
}
@media (max-width: 620px) {
	.hc-lanes { padding: 80px 0 60px; }
	.hc-lanes__grid { grid-template-columns: 1fr; }
	.hc-lane { grid-column: span 1 !important; min-height: 200px; }
}

.hc-lane__head { display: flex; align-items: center; justify-content: space-between; }
.hc-lane__kind {
	font-size: 10.5px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	opacity: 0.75;
}
.hc-lane__icon {
	width: 38px; height: 38px;
	border-radius: 10px;
	background: rgba(255,255,255,0.45);
	display: inline-flex; align-items: center; justify-content: center;
}
.hc-lane__title {
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.018em;
	margin: 0;
}
.hc-lane__desc {
	font-size: 14.5px; line-height: 1.55;
	margin: 0;
	opacity: 0.85;
}
.hc-lane__foot {
	margin-top: auto;
	display: flex; align-items: center; justify-content: space-between;
	font-size: 11.5px;
	opacity: 0.7;
}

/* ----- 8. Outage spotlight (dark hero) ----- */
.hc-spot {
	background:
		radial-gradient(circle at 80% 20%, rgba(212,69,43,.20), transparent 60%),
		var(--midnight);
	color: var(--paper-on-dark);
	padding: 120px 0;
	overflow: hidden;
	position: relative;
}
.hc-spot__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.hc-spot__bullets {
	margin-top: 26px;
	display: flex; flex-direction: column; gap: 14px;
}
.hc-spot__bullets li {
	display: flex; align-items: center; gap: 14px;
	font-size: 15.5px;
	color: rgba(255,254,248,0.85);
}
.hc-pulse {
	position: relative;
	display: inline-block;
	width: 10px; height: 10px; border-radius: 999px;
	background: var(--brand);
}
.hc-pulse::after {
	content: '';
	position: absolute; inset: -3px;
	border-radius: 999px;
	border: 1.5px solid var(--brand);
	animation: hc-pulse-ring 1.8s var(--ease-out) infinite;
}
.hc-pulse--lg { width: 14px; height: 14px; }
@keyframes hc-pulse-ring {
	0%   { transform: scale(0.6); opacity: 1; }
	100% { transform: scale(2.4); opacity: 0; }
}

@media (max-width: 980px) {
	.hc-spot__grid { grid-template-columns: 1fr; }
	.hc-spot { padding: 80px 0; }
}

/* Radar visual */
.hc-radar {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%; max-width: 460px;
	margin: 0 auto;
}
.hc-radar__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(212,69,43,0.45);
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	animation: hc-radar 3s var(--ease-out) infinite;
}
.hc-radar__ring--1 { width: 30%; height: 30%; animation-delay: 0s; }
.hc-radar__ring--2 { width: 60%; height: 60%; animation-delay: .3s; }
.hc-radar__ring--3 { width: 90%; height: 90%; animation-delay: .6s; }
@keyframes hc-radar {
	0%   { opacity: 0.7; }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); }
}
.hc-radar__core {
	position: absolute; left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 92px; height: 92px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand), var(--brand-dark));
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 0 60px rgba(212,69,43,.45);
}
.hc-radar__ping {
	position: absolute;
	width: 8px; height: 8px; border-radius: 999px;
	background: var(--saffron);
	box-shadow: 0 0 12px rgba(212,160,23,.7);
	left: 50%; top: 50%;
}
.hc-radar__ping--1 { transform: translate(60px, -40px);  }
.hc-radar__ping--2 { transform: translate(-90px, -60px); }
.hc-radar__ping--3 { transform: translate(110px, 30px); }
.hc-radar__ping--4 { transform: translate(-50px, 90px); background: var(--mint); }
.hc-radar__ping--5 { transform: translate(70px, 120px); }
.hc-radar__ping--6 { transform: translate(-130px, 20px); background: var(--mint); }
.hc-radar__ping--7 { transform: translate(20px, -130px); }
.hc-radar__ping--8 { transform: translate(140px, -80px); background: var(--mint); }
.hc-radar__ping {
	animation: hc-ping-pop 2.4s var(--ease-out) infinite;
}
.hc-radar__ping--2 { animation-delay: 0.3s; }
.hc-radar__ping--3 { animation-delay: 0.6s; }
.hc-radar__ping--4 { animation-delay: 0.9s; }
.hc-radar__ping--5 { animation-delay: 1.2s; }
.hc-radar__ping--6 { animation-delay: 1.5s; }
.hc-radar__ping--7 { animation-delay: 1.8s; }
.hc-radar__ping--8 { animation-delay: 2.1s; }
@keyframes hc-ping-pop {
	0%   { opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { opacity: 0; }
}

/* ----- 9. Phone preview ----- */
.hc-preview { padding: 120px 0; }
.hc-preview__grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.hc-preview__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 40px;
}
.hc-feat {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 20px;
}
.hc-feat__num {
	font-size: 11px; font-weight: 600;
	color: var(--brand);
	letter-spacing: 0.18em;
}
.hc-feat h4 {
	margin: 14px 0 6px;
	font-size: 16px; font-weight: 700;
	letter-spacing: -0.012em;
}
.hc-feat p {
	margin: 0;
	font-size: 13.5px; line-height: 1.5;
	color: var(--ink-2);
}
@media (max-width: 720px) {
	.hc-preview { padding: 80px 0; }
	.hc-preview__features { grid-template-columns: 1fr; gap: 12px; }
	.hc-preview__grid { grid-template-columns: 1fr; }
}

/* Phones */
.hc-phones {
	position: relative;
	height: clamp(520px, 56vw, 640px);
	perspective: 1200px;
}
.hc-phone {
	position: absolute;
	width: clamp(220px, 26vw, 280px);
	aspect-ratio: 9 / 19;
	transition: transform .6s var(--ease-out);
	will-change: transform;
}
.hc-phone--back {
	top: 0; left: 6%;
	transform: rotate(-7deg) translateZ(-40px);
	z-index: 1;
}
.hc-phone--front {
	bottom: 0; right: 4%;
	transform: rotate(5deg) translateZ(40px);
	z-index: 2;
}
.hc-phone__frame {
	background: var(--midnight);
	border-radius: 36px;
	padding: 8px;
	height: 100%;
	box-shadow: var(--shadow-lg);
	border: 1px solid #2c241c;
}
.hc-phone__screen {
	background: var(--paper);
	border-radius: 28px;
	height: 100%;
	padding: 30px 14px 14px;
	position: relative;
	overflow: hidden;
	display: flex; flex-direction: column; gap: 12px;
}
.hc-phone__screen--dark {
	background: var(--midnight-2);
	color: var(--paper-on-dark);
}
.hc-phone__notch {
	position: absolute; top: 14px; left: 50%;
	transform: translateX(-50%);
	width: 70px; height: 18px;
	border-radius: 999px;
	background: var(--midnight);
}
.hc-phone__topbar {
	display: flex; justify-content: space-between; align-items: center;
	font-size: 11px; color: var(--muted);
}
.hc-phone__theme {
	font-size: 10px; padding: 3px 7px;
	border-radius: 99px;
	background: rgba(255,254,248,0.12);
	color: var(--paper-on-dark);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
}
.hc-phone__theme--light {
	background: var(--ink);
	color: var(--paper-on-dark);
}
.hc-phone__tabs {
	display: flex; gap: 14px;
	font-size: 11.5px; font-weight: 700;
	color: rgba(255,254,248,0.55);
	border-bottom: 1px solid rgba(255,254,248,0.10);
	padding-bottom: 8px;
}
.hc-phone__tabs .is-active {
	color: var(--brand);
	position: relative;
}
.hc-phone__tabs .is-active::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -9px;
	height: 1.5px; background: var(--brand);
}

.hc-phone__alert {
	display: flex; align-items: center; gap: 10px;
	background: linear-gradient(135deg, #FAE0DA, #FCEEEA);
	border: 1px solid #f0c1b3;
	border-radius: 14px;
	padding: 12px;
}
.hc-phone__alert-l { display: flex; align-items: center; gap: 10px; flex: 1; }
.hc-phone__alert-t { font-size: 13px; font-weight: 700; margin-top: 4px; color: #8E2A14; line-height: 1.2; }
.hc-phone__alert-m { font-size: 10.5px; color: #8E2A14; margin-top: 3px; opacity: 0.85; }
.hc-phone__alert-btn {
	background: var(--brand); color: var(--paper-on-dark);
	border: 0; border-radius: 999px;
	padding: 7px 12px;
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.04em;
}

.hc-phone__lanes {
	display: flex; flex-wrap: wrap; gap: 6px;
}
.hc-chip {
	display: inline-flex; align-items: center; gap: 4px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px 9px;
	font-size: 10.5px; font-weight: 700;
	color: var(--ink-2);
}
.hc-chip em { font-style: normal; color: var(--brand); font-weight: 800; margin-left: 2px; }
.hc-chip--out  { background: #FAE0DA; color: #8E2A14; border-color: #f0c1b3; }
.hc-chip--ride { background: #DAEAE7; color: #0C5A52; border-color: #b9d4d0; }
.hc-chip--room { background: #E6DBF8; color: #4B1A8C; border-color: #cbb9ec; }
.hc-chip--food { background: #FAEDC9; color: #7A560A; border-color: #ecd58c; }

.hc-fpost {
	background: var(--surface, #fff);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 10px 12px;
	display: flex; flex-direction: column; gap: 6px;
}
.hc-fpost--dark {
	background: #2A2218;
	border-color: rgba(255,254,248,0.08);
	color: var(--paper-on-dark);
}
.hc-fpost p {
	margin: 2px 0 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--ink);
}
.hc-fpost--dark p { color: rgba(255,254,248,0.92); }

.hc-fpost__head { display: flex; align-items: center; gap: 8px; }
.hc-fpost__who {
	font-size: 12px; font-weight: 700;
	flex: 1; line-height: 1.2;
}
.hc-fpost__who > div:first-child { letter-spacing: -0.005em; }
.hc-fpost__time { font-size: 10.5px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.hc-fpost--dark .hc-fpost__time { color: rgba(255,254,248,0.5); }
.hc-fpost__foot {
	display: flex; gap: 10px;
	font-size: 10.5px;
	color: var(--muted);
}
.hc-fpost--dark .hc-fpost__foot { color: rgba(255,254,248,0.55); }

.hc-avatar {
	width: 28px; height: 28px; border-radius: 50%;
	background: linear-gradient(135deg, var(--av-1), var(--av-2));
	color: var(--paper-on-dark);
	display: inline-flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 13px;
}

.hc-flair {
	font-size: 9.5px; font-weight: 800;
	letter-spacing: 0.14em;
	padding: 3px 7px; border-radius: 6px;
}
.hc-flair--out  { background: #FAE0DA; color: #8E2A14; }
.hc-flair--ride { background: #DAEAE7; color: #0C5A52; }
.hc-flair--room { background: #E6DBF8; color: #4B1A8C; }
.hc-flair--food { background: #FAEDC9; color: #7A560A; }
.hc-flair--guide{ background: #DAEDE2; color: #19604A; }

/* ----- 10. How it works ----- */
.hc-how { padding: 120px 0; }
.hc-how__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 24px;
}
.hc-step {
	position: relative;
	padding: 32px 32px 32px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 22px;
	align-items: start;
}
.hc-step__n {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.15em;
	background: var(--brand);
	color: var(--paper-on-dark);
	width: 44px; height: 44px;
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.hc-step__body h3 {
	font-size: 22px; font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0 0 8px;
}
.hc-step__body p {
	font-size: 14.5px; line-height: 1.55;
	color: var(--ink-2);
	margin: 0;
}
.hc-step__rail {
	position: absolute;
	top: 54px; right: 0;
	width: 1px; height: calc(100% - 54px);
	background: linear-gradient(to bottom, var(--brand), transparent);
	opacity: 0.4;
}
@media (max-width: 880px) {
	.hc-how { padding: 80px 0; }
	.hc-how__steps { grid-template-columns: 1fr; }
	.hc-step { padding: 24px 0; border-top: 1px solid var(--line); }
	.hc-step:first-child { border-top: 0; }
	.hc-step__rail { display: none; }
}

/* ----- 11. Trust ----- */
.hc-trust {
	background: var(--card);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 120px 0;
}
.hc-trust__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
.hc-trust__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.hc-tcard {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 22px;
	transition: transform .35s var(--ease-out), box-shadow .35s;
}
.hc-tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hc-tcard__icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 16px;
}
.hc-tcard__icon--brand   { background: var(--brand-soft); color: var(--brand-dark); }
.hc-tcard__icon--mint    { background: #DAEDE2; color: #19604A; }
.hc-tcard__icon--saffron { background: #FAEDC9; color: #7A560A; }
.hc-tcard__icon--ink     { background: var(--ink); color: var(--paper-on-dark); }
.hc-tcard h4 {
	font-size: 17px; font-weight: 800;
	margin: 0 0 6px;
	letter-spacing: -0.015em;
}
.hc-tcard p {
	font-size: 13.5px; line-height: 1.55;
	color: var(--ink-2);
	margin: 0;
}
@media (max-width: 880px) {
	.hc-trust { padding: 80px 0; }
	.hc-trust__grid { grid-template-columns: 1fr; }
	.hc-trust__cards { grid-template-columns: 1fr; }
}

/* ----- 12. Final CTA ----- */
.hc-cta {
	background:
		radial-gradient(circle at 50% 100%, rgba(212,69,43,0.5), transparent 60%),
		linear-gradient(180deg, var(--midnight), #0a0807);
	color: var(--paper-on-dark);
	padding: 140px 0 120px;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.hc-cta::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgba(212,69,43,0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(212,69,43,0.05) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 70%);
	pointer-events: none;
}
.hc-cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hc-cta__mark { display: inline-block; margin-bottom: 26px; opacity: 0.92; }
.hc-cta__h {
	font-size: clamp(40px, 5.5vw, 76px);
	line-height: 0.98;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0;
}
.hc-cta__line { display: block; overflow: hidden; }
.hc-cta__line > span { display: inline-block; }
.hc-cta__sub {
	margin: 18px auto 0;
	font-size: 16px; line-height: 1.6;
	color: rgba(255,254,248,0.7);
	max-width: 44ch;
}
.hc-cta .hc-cta-row { margin-top: 36px; }

.hc-cta__qr {
	margin-top: 50px;
	display: inline-flex; align-items: center; gap: 18px;
	padding: 14px 22px 14px 14px;
	background: rgba(255,254,248,0.06);
	border: 1px solid rgba(255,254,248,0.14);
	border-radius: 16px;
	backdrop-filter: blur(8px);
}
.hc-qr {
	position: relative;
	width: 72px; height: 72px;
	background: var(--paper-on-dark);
	border-radius: 10px;
	padding: 6px;
}
.hc-qr__inner {
	width: 100%; height: 100%;
	background:
		radial-gradient(circle at 25% 25%, var(--ink) 8%, transparent 8%),
		radial-gradient(circle at 75% 25%, var(--ink) 8%, transparent 8%),
		radial-gradient(circle at 25% 75%, var(--ink) 8%, transparent 8%),
		linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%),
		linear-gradient(45deg, var(--ink) 25%, var(--paper-on-dark) 25%, var(--paper-on-dark) 75%, var(--ink) 75%);
	background-size: 100% 100%, 100% 100%, 100% 100%, 8px 8px, 8px 8px;
	background-position: 0 0, 0 0, 0 0, 0 0, 4px 4px;
	opacity: 0.85;
}
.hc-qr__finder {
	position: absolute;
	width: 16px; height: 16px;
	border: 3px solid var(--ink);
	background: var(--paper-on-dark);
}
.hc-qr__finder--tl { top: 6px; left: 6px; }
.hc-qr__finder--tr { top: 6px; right: 6px; }
.hc-qr__finder--bl { bottom: 6px; left: 6px; }
.hc-cta__qr-l {
	font-size: 13px;
	color: rgba(255,254,248,0.8);
	margin-top: 4px;
	text-align: left;
}

/* ----- 13. Footer ----- */
.hc-foot {
	background: var(--ink);
	color: var(--paper-on-dark);
	padding: 72px 0 28px;
}
.hc-foot__inner {
	max-width: var(--maxw); margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255,254,248,0.10);
}
.hc-foot__brand { display: flex; align-items: center; gap: 16px; }
.hc-foot__wordmark { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }
.hc-foot__tag { font-size: 12px; color: rgba(255,254,248,0.55); margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.hc-foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hc-foot__col { display: flex; flex-direction: column; gap: 10px; }
.hc-foot__col .hc-kicker { color: var(--brand); margin-bottom: 4px; }
.hc-foot__col a {
	font-size: 14px;
	color: rgba(255,254,248,0.8);
	transition: color .2s;
}
.hc-foot__col a:hover { color: var(--paper-on-dark); }
.hc-foot__bottom {
	max-width: var(--maxw); margin: 0 auto;
	padding: 28px var(--gutter) 0;
	display: flex; justify-content: space-between;
	font-size: 12px;
	color: rgba(255,254,248,0.5);
}
.hc-foot__loc { letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 720px) {
	.hc-foot__inner { grid-template-columns: 1fr; gap: 40px; }
	.hc-foot__cols { grid-template-columns: repeat(2, 1fr); }
	.hc-foot__bottom { flex-direction: column; gap: 8px; }
}

/* ----- 14. Motion entry states (JS hydrates) ----- */
[data-hc-fade] { opacity: 0; transform: translateY(20px); will-change: opacity, transform; }
[data-hc-headline] .hc-line > span { display: inline-block; transform: translateY(110%); }
[data-hc-step] { opacity: 0; transform: translateY(20px); }
[data-hc-card] { opacity: 0; transform: translateY(20px); }
[data-hc-orbit] { opacity: 0; transform: translateY(10px) scale(0.96); }
.hc-cta__line > span { transform: translateY(110%); }

/* ----- 15. Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	[data-hc-fade], [data-hc-step], [data-hc-card], [data-hc-orbit], .hc-lane {
		opacity: 1 !important; transform: none !important;
	}
	[data-hc-headline] .hc-line > span, .hc-cta__line > span { transform: none !important; }
	.hc-mark__lantern { filter: drop-shadow(0 0 4px rgba(212,69,43,.35)); }
}

/* ----- 16. Print ----- */
@media print {
	.hc-nav, .hc-scroll-cue, .hc-marquee, .hc-cta__qr, .hc-cta-row, .hc-foot__cols { display: none !important; }
	body { background: #fff; color: #000; }
}
