/* ============================================================
   Airwing Landing — main.css
   ============================================================ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
	/* Brand palette */
	--aw-navy-900: #061229;
	--aw-navy-800: #0a1f44;
	--aw-navy-700: #102e63;
	--aw-blue-600: #1e7fef;
	--aw-blue-500: #3c8eef;
	--aw-blue-400: #5db1ff;
	--aw-cyan-300: #8fd1ff;
	--aw-mint-500: #2dd4a5;
	--aw-mint-400: #5be0bd;

	/* Neutrals */
	--aw-bg: #ffffff;
	--aw-bg-soft: #f5f8ff;
	--aw-bg-tint: #eef3fc;
	--aw-line: #e3eaf5;
	--aw-line-strong: #cbd6ea;
	--aw-text: #0f1729;
	--aw-text-muted: #4b5b78;
	--aw-text-soft: #6b7b97;
	--aw-text-invert: #ffffff;

	/* Effects */
	--aw-shadow-sm: 0 4px 12px rgba(15, 23, 41, 0.06);
	--aw-shadow-md: 0 12px 30px rgba(15, 23, 41, 0.08);
	--aw-shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.12);
	--aw-shadow-glow: 0 18px 40px rgba(30, 127, 239, 0.25);

	/* Radii */
	--aw-r-sm: 10px;
	--aw-r-md: 16px;
	--aw-r-lg: 24px;
	--aw-r-xl: 32px;
	--aw-r-pill: 999px;

	/* Layout */
	--aw-container: 1240px;
	--aw-nav-h: 76px;
	--aw-section-py: clamp(80px, 10vw, 140px);

	/* Typography */
	--aw-font-sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
	--aw-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ─── Body & Typography ─────────────────────────────────────── */
body {
	font-family: var(--aw-font-sans);
	color: var(--aw-text);
	background: var(--aw-bg);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.01em;
}

::selection { background: rgba(30, 127, 239, 0.2); }

.aw-container {
	width: 100%;
	max-width: var(--aw-container);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

/* ─── Reusable: Buttons ─────────────────────────────────────── */
.aw-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: var(--aw-r-pill);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.01em;
	border: 1px solid transparent;
	transition: transform .25s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.aw-btn--primary {
	background: linear-gradient(135deg, var(--aw-blue-600) 0%, var(--aw-navy-700) 100%);
	color: var(--aw-text-invert);
	box-shadow: var(--aw-shadow-glow);
}
.aw-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 50px rgba(30, 127, 239, 0.32);
}
.aw-btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--aw-text-invert);
	border-color: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.aw-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.45);
	transform: translateY(-2px);
}
.aw-btn--outline {
	background: transparent;
	color: var(--aw-navy-800);
	border-color: var(--aw-line-strong);
}
.aw-btn--outline:hover {
	background: var(--aw-bg-soft);
	border-color: var(--aw-blue-500);
	color: var(--aw-blue-600);
	transform: translateY(-2px);
}
.aw-btn__arrow { transition: transform .25s ease; }
.aw-btn:hover .aw-btn__arrow { transform: translateX(4px); }

/* ─── Reusable: Eyebrow / Section Heading ───────────────────── */
.aw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: var(--aw-r-pill);
	background: rgba(30, 127, 239, 0.10);
	color: var(--aw-blue-600);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.aw-eyebrow--invert {
	background: rgba(93, 177, 255, 0.18);
	color: var(--aw-cyan-300);
}
.aw-eyebrow--mint {
	background: rgba(45, 212, 165, 0.14);
	color: #14a07a;
}
.aw-eyebrow__dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 3px rgba(30, 127, 239, 0.18);
}
.aw-eyebrow--invert .aw-eyebrow__dot { box-shadow: 0 0 0 3px rgba(93, 177, 255, 0.3); }
.aw-eyebrow--mint .aw-eyebrow__dot { box-shadow: 0 0 0 3px rgba(45, 212, 165, 0.25); }

.aw-section-head { max-width: 760px; margin: 0 0 64px; }
.aw-section-head--center { margin: 0 auto 64px; text-align: center; }
.aw-section-title {
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
	margin-top: 18px;
	color: var(--aw-navy-900);
}
.aw-section-title--invert { color: var(--aw-text-invert); }
.aw-section-lead {
	margin-top: 18px;
	color: var(--aw-text-muted);
	font-size: clamp(15px, 1.4vw, 17px);
	line-height: 1.7;
}
.aw-section-lead--invert { color: rgba(255, 255, 255, 0.78); }

/* ─── Navigation ────────────────────────────────────────────── */
.aw-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--aw-nav-h);
	z-index: 100;
	transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
	border-bottom: 1px solid transparent;
}
.aw-nav__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.aw-nav.is-scrolled,
.aw-nav.is-open {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom-color: var(--aw-line);
	box-shadow: 0 4px 16px rgba(15, 23, 41, 0.04);
}

.aw-logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	transition: opacity .2s ease;
}
.aw-logo:hover { opacity: 0.85; }
.aw-logo__img {
	display: block;
	height: 42px;
	width: auto;
	-webkit-user-select: none;
	user-select: none;
}
/* Default state: hero (transparent dark nav) → show white logo */
.aw-logo__img--dark { display: none; }
/* Scrolled / mobile-open / fallback (light bg) → swap to dark logo */
.aw-nav.is-scrolled .aw-logo__img--white,
.aw-nav.is-open .aw-logo__img--white,
.aw-fallback-header .aw-logo__img--white { display: none; }
.aw-nav.is-scrolled .aw-logo__img--dark,
.aw-nav.is-open .aw-logo__img--dark,
.aw-fallback-header .aw-logo__img--dark { display: block; }

/* Nav logo sizing */
.aw-nav .aw-logo__img { height: 40px; }
/* Footer logo sizing (dark bg, white only) */
.aw-footer .aw-logo__img { height: 56px; }
/* Fallback header */
.aw-fallback-header .aw-logo__img { height: 38px; }
@media (max-width: 720px) {
	.aw-nav .aw-logo__img { height: 34px; }
	.aw-footer .aw-logo__img { height: 48px; }
}

.aw-nav__menu {
	display: flex;
	align-items: center;
	gap: 6px;
}
.aw-nav__link {
	padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	border-radius: var(--aw-r-pill);
	transition: color .2s ease, background .2s ease;
}
.aw-nav__link:hover { color: var(--aw-text-invert); background: rgba(255, 255, 255, 0.1); }
.aw-nav.is-scrolled .aw-nav__link,
.aw-nav.is-open .aw-nav__link { color: var(--aw-text-muted); }
.aw-nav.is-scrolled .aw-nav__link:hover,
.aw-nav.is-open .aw-nav__link:hover { color: var(--aw-blue-600); background: var(--aw-bg-soft); }

.aw-nav__cta { display: flex; align-items: center; gap: 12px; }
.aw-nav__cta .aw-btn {
	padding: 10px 20px;
	font-size: 14px;
}
.aw-nav.is-scrolled .aw-btn--ghost,
.aw-nav.is-open .aw-btn--ghost {
	color: var(--aw-navy-800);
	background: var(--aw-bg-soft);
	border-color: var(--aw-line);
}
.aw-nav.is-scrolled .aw-btn--ghost:hover,
.aw-nav.is-open .aw-btn--ghost:hover {
	background: var(--aw-bg-tint);
	border-color: var(--aw-blue-500);
}

.aw-nav__toggle {
	display: none;
	width: 44px; height: 44px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 0;
	color: var(--aw-text-invert);
}
.aw-nav.is-scrolled .aw-nav__toggle,
.aw-nav.is-open .aw-nav__toggle {
	color: var(--aw-navy-900);
	border-color: var(--aw-line);
}
.aw-nav__toggle span {
	display: block;
	width: 18px; height: 1.5px;
	background: currentColor;
	margin: 4px auto;
	transition: transform .3s ease, opacity .3s ease;
}
.aw-nav.is-open .aw-nav__toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.aw-nav.is-open .aw-nav__toggle span:nth-child(2) { opacity: 0; }
.aw-nav.is-open .aw-nav__toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ─── Section: Hero ─────────────────────────────────────────── */
.aw-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	color: var(--aw-text-invert);
	background:
		radial-gradient(circle at 80% 10%, rgba(45, 212, 165, 0.18) 0%, transparent 40%),
		radial-gradient(circle at 15% 85%, rgba(30, 127, 239, 0.32) 0%, transparent 45%),
		linear-gradient(135deg, #061229 0%, #0a1f44 35%, #0e2a6e 75%, #1e3a8a 100%);
	overflow: hidden;
	padding: calc(var(--aw-nav-h) + 40px) 0 80px;
}
.aw-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}
.aw-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.aw-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.6;
	animation: aw-float 14s ease-in-out infinite;
}
.aw-hero__orb--1 { width: 480px; height: 480px; top: -120px; right: -100px; background: radial-gradient(circle, var(--aw-mint-500) 0%, transparent 70%); }
.aw-hero__orb--2 { width: 520px; height: 520px; bottom: -180px; left: -120px; background: radial-gradient(circle, var(--aw-blue-500) 0%, transparent 70%); animation-delay: -7s; }
@keyframes aw-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(30px, -40px) scale(1.08); }
}

.aw-hero__inner { position: relative; z-index: 2; }
.aw-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}
.aw-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: var(--aw-r-pill);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 12.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: 0.01em;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.aw-chip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aw-mint-400); box-shadow: 0 0 8px rgba(91, 224, 189, 0.8); }

.aw-hero__title {
	font-size: clamp(40px, 6.4vw, 80px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
	max-width: 16ch;
}
.aw-hero__title em {
	font-style: normal;
	background: linear-gradient(120deg, var(--aw-blue-400) 0%, var(--aw-mint-400) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.aw-hero__sub {
	margin-top: 28px;
	font-size: clamp(16px, 1.6vw, 19px);
	color: rgba(255, 255, 255, 0.78);
	max-width: 56ch;
	line-height: 1.7;
}
.aw-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 44px;
}

.aw-hero__meta {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
	max-width: 760px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.aw-hero__meta-item .label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 600;
}
.aw-hero__meta-item .value {
	display: block;
	margin-top: 6px;
	font-size: 18px;
	font-weight: 600;
	color: var(--aw-text-invert);
}

.aw-hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.6);
	z-index: 2;
}
.aw-hero__scroll-line {
	width: 1px; height: 40px;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
	position: relative;
	overflow: hidden;
}
.aw-hero__scroll-line::after {
	content: '';
	position: absolute;
	left: 0; right: 0; top: -20px; height: 20px;
	background: linear-gradient(to bottom, transparent, var(--aw-mint-400));
	animation: aw-scroll-cue 2.2s ease-in-out infinite;
}
@keyframes aw-scroll-cue {
	0%   { transform: translateY(0); }
	100% { transform: translateY(60px); }
}

/* ─── Section: Generic Layout ───────────────────────────────── */
.aw-section { padding: var(--aw-section-py) 0; position: relative; }
.aw-section--soft  { background: var(--aw-bg-soft); }
.aw-section--dark  {
	background: linear-gradient(180deg, var(--aw-navy-900) 0%, var(--aw-navy-800) 100%);
	color: var(--aw-text-invert);
}

/* ─── Section: Problem / Why now ────────────────────────────── */
.aw-problem__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.aw-problem-card {
	position: relative;
	padding: 32px 28px;
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-r-lg);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
	overflow: hidden;
}
.aw-problem-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(30, 127, 239, 0.05), transparent 50%);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.aw-problem-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--aw-shadow-md);
	border-color: rgba(30, 127, 239, 0.4);
}
.aw-problem-card:hover::before { opacity: 1; }
.aw-problem-card__num {
	font-family: var(--aw-font-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--aw-blue-600);
	letter-spacing: 0.05em;
}
.aw-problem-card__title {
	margin-top: 16px;
	font-size: 19px;
	font-weight: 700;
	color: var(--aw-navy-900);
}
.aw-problem-card__desc {
	margin-top: 10px;
	color: var(--aw-text-muted);
	font-size: 14.5px;
	line-height: 1.65;
}

.aw-problem__quote {
	margin-top: 64px;
	padding: 40px clamp(28px, 4vw, 56px);
	border-radius: var(--aw-r-lg);
	background: linear-gradient(135deg, var(--aw-navy-800) 0%, var(--aw-navy-700) 100%);
	color: var(--aw-text-invert);
	box-shadow: var(--aw-shadow-lg);
	position: relative;
	overflow: hidden;
}
.aw-problem__quote::before {
	content: '';
	position: absolute;
	top: -60px; right: -60px;
	width: 240px; height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45, 212, 165, 0.25) 0%, transparent 70%);
	pointer-events: none;
}
.aw-problem__quote-lead {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--aw-cyan-300);
	font-weight: 600;
}
.aw-problem__quote-text {
	margin-top: 14px;
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.02em;
}
.aw-problem__quote-text strong { color: var(--aw-mint-400); font-weight: 700; }

/* ─── Section: Solution (3 features) ────────────────────────── */
.aw-solution__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.aw-feature {
	position: relative;
	padding: 40px 32px;
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-r-lg);
	transition: transform .35s ease, box-shadow .35s ease;
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow: hidden;
}
.aw-feature::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--aw-blue-500), var(--aw-mint-400));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
}
.aw-feature:hover { transform: translateY(-8px); box-shadow: var(--aw-shadow-md); }
.aw-feature:hover::after { transform: scaleX(1); }
.aw-feature__icon {
	width: 56px; height: 56px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(30, 127, 239, 0.12), rgba(45, 212, 165, 0.12));
	color: var(--aw-blue-600);
}
.aw-feature__tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: var(--aw-r-pill);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: rgba(45, 212, 165, 0.12);
	color: #14a07a;
	text-transform: uppercase;
}
.aw-feature__title {
	font-size: 22px;
	font-weight: 800;
	color: var(--aw-navy-900);
	letter-spacing: -0.02em;
}
.aw-feature__desc {
	color: var(--aw-text-muted);
	font-size: 15px;
	line-height: 1.7;
}
.aw-feature__list {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.aw-feature__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--aw-text-muted);
}
.aw-feature__list li::before {
	content: '';
	flex-shrink: 0;
	width: 16px; height: 16px;
	margin-top: 4px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><circle cx='8' cy='8' r='8' fill='%232dd4a5'/><path d='M4.5 8.2l2.4 2.3 4.6-4.8' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
}

/* ─── Section: Stats / Numbers ──────────────────────────────── */
.aw-stats {
	background:
		radial-gradient(circle at 90% 10%, rgba(45, 212, 165, 0.12) 0%, transparent 35%),
		radial-gradient(circle at 0% 100%, rgba(30, 127, 239, 0.18) 0%, transparent 40%),
		linear-gradient(180deg, var(--aw-navy-900), var(--aw-navy-800));
	color: var(--aw-text-invert);
	overflow: hidden;
}
.aw-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.aw-stat {
	padding: 40px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}
.aw-stat:last-child { border-right: 0; }
.aw-stat__num {
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	background: linear-gradient(120deg, #ffffff 0%, var(--aw-cyan-300) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
.aw-stat__num small {
	font-size: 0.42em;
	font-weight: 700;
	color: var(--aw-cyan-300);
	-webkit-text-fill-color: var(--aw-cyan-300);
}
.aw-stat__label {
	margin-top: 16px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
	line-height: 1.5;
}
.aw-stat__sub {
	margin-top: 6px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

/* ─── Section: Comparison Table ─────────────────────────────── */
.aw-compare {
	margin-top: 24px;
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-r-lg);
	overflow: hidden;
	box-shadow: var(--aw-shadow-sm);
}
.aw-compare__row {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1.2fr;
	align-items: center;
}
.aw-compare__row + .aw-compare__row { border-top: 1px solid var(--aw-line); }
.aw-compare__row > * { padding: 22px 24px; }
.aw-compare__head { background: var(--aw-bg-tint); }
.aw-compare__metric {
	font-weight: 600;
	color: var(--aw-text-muted);
	font-size: 14px;
}
.aw-compare__legacy {
	color: var(--aw-text-soft);
	font-size: 14.5px;
	background: rgba(203, 214, 234, 0.18);
}
.aw-compare__airwing {
	background: linear-gradient(135deg, rgba(30, 127, 239, 0.08), rgba(45, 212, 165, 0.08));
	color: var(--aw-navy-900);
	font-weight: 700;
	font-size: 15.5px;
	border-left: 3px solid var(--aw-blue-500);
}
.aw-compare__head-airwing {
	background: linear-gradient(135deg, var(--aw-blue-600), var(--aw-navy-700));
	color: var(--aw-text-invert);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: -0.01em;
}
.aw-compare__head-legacy {
	color: var(--aw-text-soft);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.aw-compare__head-metric {
	color: var(--aw-navy-900);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* ─── Section: Technology / Algorithm Steps ─────────────────── */
.aw-tech__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 56px;
	position: relative;
}
.aw-tech__steps::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: repeating-linear-gradient(to right, var(--aw-blue-500) 0 8px, transparent 8px 16px);
	z-index: 0;
	opacity: 0.4;
}
.aw-step {
	position: relative;
	z-index: 1;
	padding: 32px 24px;
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-r-md);
	text-align: center;
	transition: transform .35s ease, box-shadow .35s ease;
}
.aw-step:hover { transform: translateY(-6px); box-shadow: var(--aw-shadow-md); }
.aw-step__index {
	display: inline-flex;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	margin: 0 auto 20px;
	border-radius: 14px;
	font-family: var(--aw-font-mono);
	font-weight: 700;
	font-size: 15px;
	background: linear-gradient(135deg, var(--aw-blue-600), var(--aw-navy-700));
	color: var(--aw-text-invert);
	box-shadow: var(--aw-shadow-glow);
}
.aw-step__title {
	font-size: 18px;
	font-weight: 800;
	color: var(--aw-navy-900);
	letter-spacing: -0.01em;
}
.aw-step__title small {
	display: block;
	margin-top: 4px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--aw-blue-600);
	text-transform: uppercase;
}
.aw-step__desc {
	margin-top: 12px;
	color: var(--aw-text-muted);
	font-size: 14px;
	line-height: 1.65;
}

.aw-tech__detail {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 32px;
	align-items: stretch;
	margin-top: 64px;
}
.aw-tech__panel {
	padding: 40px;
	border-radius: var(--aw-r-lg);
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	box-shadow: var(--aw-shadow-sm);
}
.aw-tech__panel--accent {
	background: linear-gradient(135deg, var(--aw-navy-800), var(--aw-navy-700));
	color: var(--aw-text-invert);
	border-color: transparent;
	box-shadow: var(--aw-shadow-lg);
	position: relative;
	overflow: hidden;
}
.aw-tech__panel--accent::after {
	content: '';
	position: absolute;
	bottom: -80px; right: -80px;
	width: 240px; height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45, 212, 165, 0.3) 0%, transparent 70%);
	pointer-events: none;
}
.aw-tech__panel-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--aw-navy-900);
	letter-spacing: -0.02em;
}
.aw-tech__panel--accent .aw-tech__panel-title { color: var(--aw-text-invert); }
.aw-tech__filters {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.aw-tech__filter {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	background: var(--aw-bg-soft);
	border-radius: var(--aw-r-md);
	border: 1px solid var(--aw-line);
}
.aw-tech__filter-num {
	flex-shrink: 0;
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 10px;
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	font-family: var(--aw-font-mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--aw-blue-600);
}
.aw-tech__filter-name {
	flex: 1;
	font-weight: 700;
	color: var(--aw-navy-900);
	font-size: 15px;
}
.aw-tech__filter-fn {
	font-size: 13px;
	color: var(--aw-text-soft);
}

.aw-tech__formula {
	margin-top: 24px;
	padding: 24px;
	border-radius: var(--aw-r-md);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}
.aw-tech__formula-title {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--aw-cyan-300);
	font-weight: 700;
	margin-bottom: 12px;
}
.aw-tech__formula-eq {
	font-family: var(--aw-font-mono);
	font-size: 22px;
	color: var(--aw-text-invert);
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}
.aw-tech__formula-eq sub { font-size: 0.6em; }
.aw-tech__formula-note {
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
}
.aw-tech__panel--accent p {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.7;
	font-size: 15px;
}
.aw-tech__panel--accent p strong {
	color: var(--aw-mint-400);
	font-weight: 700;
}

/* ─── Section: Vision / Platform ────────────────────────────── */
.aw-vision__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.aw-vision-card {
	padding: 36px 32px;
	border-radius: var(--aw-r-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.aw-vision-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(93, 177, 255, 0.4);
}
.aw-vision-card__step {
	font-family: var(--aw-font-mono);
	font-size: 12px;
	color: var(--aw-cyan-300);
	letter-spacing: 0.1em;
	font-weight: 700;
}
.aw-vision-card__title {
	margin-top: 12px;
	font-size: 22px;
	font-weight: 800;
	color: var(--aw-text-invert);
	letter-spacing: -0.02em;
}
.aw-vision-card__list {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.aw-vision-card__list li {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
	padding-left: 18px;
	position: relative;
}
.aw-vision-card__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 9px;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--aw-mint-400);
}
.aw-vision-card__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 24px;
	padding: 6px 14px;
	border-radius: var(--aw-r-pill);
	background: rgba(45, 212, 165, 0.14);
	color: var(--aw-mint-400);
	font-size: 13px;
	font-weight: 700;
}

.aw-vision__digital-twin {
	margin-top: 64px;
	padding: 40px clamp(28px, 4vw, 56px);
	border-radius: var(--aw-r-lg);
	background: linear-gradient(135deg, rgba(30, 127, 239, 0.18), rgba(45, 212, 165, 0.12));
	border: 1px solid rgba(93, 177, 255, 0.25);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.aw-vision__digital-twin h3 {
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 800;
	color: var(--aw-text-invert);
	letter-spacing: -0.02em;
}
.aw-vision__digital-twin p {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
}

/* ─── Section: Team ─────────────────────────────────────────── */
.aw-team {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 32px;
	align-items: stretch;
}
.aw-team__leader {
	padding: 48px 40px;
	border-radius: var(--aw-r-lg);
	background: linear-gradient(160deg, var(--aw-navy-800), var(--aw-navy-700));
	color: var(--aw-text-invert);
	position: relative;
	overflow: hidden;
	box-shadow: var(--aw-shadow-lg);
}
.aw-team__leader::before {
	content: '';
	position: absolute;
	top: -100px; left: -60px;
	width: 280px; height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45, 212, 165, 0.25) 0%, transparent 70%);
}
.aw-team__leader > * { position: relative; z-index: 1; }
.aw-team__role {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--aw-cyan-300);
	font-weight: 700;
}
.aw-team__name {
	margin-top: 8px;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.aw-team__title {
	margin-top: 6px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.72);
}
.aw-team__bio {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.aw-team__bio li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
}
.aw-team__bio li::before {
	content: '';
	flex-shrink: 0;
	width: 14px; height: 14px;
	margin-top: 4px;
	border-radius: 50%;
	background: var(--aw-mint-400);
	box-shadow: 0 0 0 4px rgba(45, 212, 165, 0.18);
}

.aw-team__core {
	padding: 48px 40px;
	border-radius: var(--aw-r-lg);
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	box-shadow: var(--aw-shadow-sm);
}
.aw-team__core-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--aw-navy-900);
	letter-spacing: -0.02em;
}
.aw-team__core-sub {
	margin-top: 6px;
	color: var(--aw-text-muted);
	font-size: 14.5px;
}
.aw-team__list {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.aw-team__member {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 18px;
	padding: 18px 20px;
	border-radius: var(--aw-r-md);
	background: var(--aw-bg-soft);
	border: 1px solid var(--aw-line);
	transition: border-color .25s ease, transform .25s ease;
}
.aw-team__member:hover {
	border-color: var(--aw-blue-500);
	transform: translateY(-2px);
}
.aw-team__member-role {
	display: inline-flex;
	align-self: flex-start;
	padding: 5px 12px;
	border-radius: var(--aw-r-pill);
	background: var(--aw-bg);
	color: var(--aw-blue-600);
	font-size: 12.5px;
	font-weight: 700;
	border: 1px solid var(--aw-line);
}
.aw-team__member-detail {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.aw-team__member-spec {
	font-weight: 700;
	color: var(--aw-navy-900);
	font-size: 15px;
}
.aw-team__member-task {
	font-size: 13.5px;
	color: var(--aw-text-muted);
}

/* ─── Section: Roadmap ──────────────────────────────────────── */
.aw-roadmap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 56px;
	position: relative;
}
.aw-roadmap::before {
	content: '';
	position: absolute;
	top: 24px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: linear-gradient(90deg, var(--aw-blue-500), var(--aw-mint-400));
	opacity: 0.3;
}
.aw-phase {
	position: relative;
	padding: 28px 24px;
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-r-md);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.aw-phase:hover {
	transform: translateY(-4px);
	box-shadow: var(--aw-shadow-md);
	border-color: var(--aw-blue-500);
}
.aw-phase__dot {
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--aw-bg);
	border: 3px solid var(--aw-blue-500);
	box-shadow: 0 0 0 6px rgba(30, 127, 239, 0.12);
	margin-bottom: 24px;
}
.aw-phase--active .aw-phase__dot {
	background: var(--aw-mint-400);
	border-color: var(--aw-mint-400);
	box-shadow: 0 0 0 6px rgba(45, 212, 165, 0.18);
}
.aw-phase__when {
	font-family: var(--aw-font-mono);
	font-size: 12px;
	color: var(--aw-blue-600);
	letter-spacing: 0.04em;
	font-weight: 700;
}
.aw-phase__title {
	margin-top: 6px;
	font-size: 17px;
	font-weight: 800;
	color: var(--aw-navy-900);
}
.aw-phase__list {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.aw-phase__list li {
	font-size: 13.5px;
	color: var(--aw-text-muted);
	line-height: 1.6;
}

/* ─── Section: Government Tags ──────────────────────────────── */
.aw-gov {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
}
.aw-gov__item {
	padding: 18px 20px;
	border-radius: var(--aw-r-md);
	background: var(--aw-bg-soft);
	border: 1px solid var(--aw-line);
	transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.aw-gov__item:hover {
	border-color: var(--aw-blue-500);
	background: var(--aw-bg);
	transform: translateY(-2px);
}
.aw-gov__name {
	font-weight: 700;
	font-size: 14.5px;
	color: var(--aw-navy-900);
}
.aw-gov__role {
	margin-top: 4px;
	font-size: 12.5px;
	color: var(--aw-text-muted);
	line-height: 1.5;
}

/* ─── Section: CTA ──────────────────────────────────────────── */
.aw-cta {
	padding: var(--aw-section-py) 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(45, 212, 165, 0.16) 0%, transparent 40%),
		radial-gradient(circle at 10% 80%, rgba(30, 127, 239, 0.22) 0%, transparent 45%),
		linear-gradient(135deg, var(--aw-navy-900), var(--aw-navy-700));
	color: var(--aw-text-invert);
	text-align: center;
	overflow: hidden;
	position: relative;
}
.aw-cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.aw-cta__title {
	font-size: clamp(32px, 4.6vw, 54px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
}
.aw-cta__title em {
	font-style: normal;
	background: linear-gradient(120deg, var(--aw-cyan-300), var(--aw-mint-400));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.aw-cta__sub {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 17px;
	line-height: 1.7;
}
.aw-cta__actions {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.aw-cta__contact {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: left;
}
.aw-cta__contact-item .label {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
}
.aw-cta__contact-item .value {
	display: block;
	margin-top: 8px;
	font-size: 17px;
	font-weight: 600;
	color: var(--aw-text-invert);
}
.aw-cta__contact-item a:hover { color: var(--aw-cyan-300); }

/* ─── Footer ────────────────────────────────────────────────── */
.aw-footer {
	background: var(--aw-navy-900);
	color: rgba(255, 255, 255, 0.6);
	padding: 56px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.aw-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 32px;
}
.aw-footer__brand {
	max-width: 380px;
}
.aw-footer__brand .aw-logo__img--dark { display: none; }
.aw-footer__brand .aw-logo__img--white { display: block; }
.aw-footer__brand p {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
}
.aw-footer__meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	text-align: right;
}
.aw-footer__meta strong {
	color: var(--aw-text-invert);
	font-weight: 600;
}
.aw-footer__bottom {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* ─── Reveal Animations ─────────────────────────────────────── */
.aw-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s ease, transform .8s ease;
}
.aw-reveal.is-in {
	opacity: 1;
	transform: translateY(0);
}
.aw-reveal[data-delay="1"] { transition-delay: 0.08s; }
.aw-reveal[data-delay="2"] { transition-delay: 0.16s; }
.aw-reveal[data-delay="3"] { transition-delay: 0.24s; }
.aw-reveal[data-delay="4"] { transition-delay: 0.32s; }
.aw-reveal[data-delay="5"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
	.aw-reveal { opacity: 1; transform: none; }
	*, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ─── Fallback (non-front-page) styles ──────────────────────── */
.aw-fallback-body { background: var(--aw-bg-soft); }
.aw-fallback-header {
	background: var(--aw-bg);
	border-bottom: 1px solid var(--aw-line);
	padding: 18px 0;
	position: sticky; top: 0; z-index: 50;
}
.aw-fallback-header__inner { display: flex; align-items: center; justify-content: space-between; }
.aw-fallback-header .aw-logo { color: var(--aw-navy-900); }
.aw-fallback-main { padding: 80px 0 120px; }
.aw-fallback-main__inner { max-width: 760px; margin: 0 auto; }
.aw-post {
	background: var(--aw-bg);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-r-lg);
	padding: 48px;
	box-shadow: var(--aw-shadow-sm);
}
.aw-post__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: var(--aw-navy-900);
	letter-spacing: -0.025em;
	line-height: 1.25;
}
.aw-post__content { margin-top: 24px; line-height: 1.8; color: var(--aw-text); }
.aw-post__content p { margin-bottom: 1em; }
.aw-empty {
	text-align: center;
	padding: 80px 24px;
}
.aw-empty__title {
	font-size: 32px;
	font-weight: 800;
	color: var(--aw-navy-900);
}
.aw-empty__desc {
	margin-top: 12px;
	color: var(--aw-text-muted);
}
.aw-empty .aw-btn { margin-top: 32px; }
.aw-fallback-footer {
	padding: 32px 0;
	background: var(--aw-bg);
	border-top: 1px solid var(--aw-line);
	color: var(--aw-text-soft);
	text-align: center;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.aw-solution__grid { grid-template-columns: 1fr 1fr; }
	.aw-solution__grid > .aw-feature:last-child { grid-column: span 2; }
	.aw-stats__grid { grid-template-columns: 1fr 1fr; }
	.aw-stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
	.aw-stat:nth-child(2n) { border-right: 0; }
	.aw-tech__steps { grid-template-columns: 1fr 1fr; }
	.aw-tech__steps::before { display: none; }
	.aw-tech__detail { grid-template-columns: 1fr; }
	.aw-vision__grid { grid-template-columns: 1fr; }
	.aw-team { grid-template-columns: 1fr; }
	.aw-roadmap { grid-template-columns: 1fr 1fr; }
	.aw-roadmap::before { display: none; }
}

@media (max-width: 720px) {
	:root { --aw-section-py: 80px; }
	.aw-nav__menu, .aw-nav__cta .aw-btn--ghost { display: none; }
	.aw-nav__toggle { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
	.aw-nav.is-open .aw-nav__menu {
		display: flex;
		position: absolute;
		top: var(--aw-nav-h);
		left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		background: var(--aw-bg);
		padding: 16px;
		gap: 4px;
		border-top: 1px solid var(--aw-line);
		box-shadow: var(--aw-shadow-md);
	}
	.aw-nav.is-open .aw-nav__link {
		padding: 14px 18px;
		border-radius: var(--aw-r-md);
		color: var(--aw-text-muted);
	}

	.aw-hero { padding-top: calc(var(--aw-nav-h) + 20px); }
	.aw-hero__title { font-size: clamp(34px, 9vw, 50px); }
	.aw-hero__meta { grid-template-columns: 1fr 1fr; gap: 20px; }
	.aw-hero__scroll { display: none; }

	.aw-solution__grid { grid-template-columns: 1fr; }
	.aw-solution__grid > .aw-feature:last-child { grid-column: auto; }
	.aw-stats__grid { grid-template-columns: 1fr; }
	.aw-stat { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

	.aw-compare { font-size: 13px; }
	.aw-compare__row { grid-template-columns: 1fr; }
	.aw-compare__row > * { padding: 14px 18px; }
	.aw-compare__row:not(.aw-compare__head) > .aw-compare__metric { background: var(--aw-bg-tint); font-weight: 700; color: var(--aw-navy-900); }
	.aw-compare__head { display: none; }

	.aw-tech__steps { grid-template-columns: 1fr; }
	.aw-tech__panel { padding: 28px 24px; }
	.aw-team__leader, .aw-team__core { padding: 32px 24px; }
	.aw-team__member { grid-template-columns: 1fr; gap: 8px; }
	.aw-roadmap { grid-template-columns: 1fr; }

	.aw-vision__digital-twin { flex-direction: column; align-items: flex-start; }

	.aw-footer__inner { flex-direction: column; }
	.aw-footer__meta { text-align: left; }
	.aw-footer__bottom { flex-direction: column; align-items: flex-start; }
}
