/* ==========================================================================
   InPAT pro - Modern SaaS Stylesheet (Light / Dark, Apple/Google UX, Pure CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Dynamic Theming (Light Default & Dark Mode)
   -------------------------------------------------------------------------- */
:root {
	/* Light Mode Core Colors (Default) */
	--bg-base: #f8fafd;
	--bg-surface: #ffffff;
	--bg-surface-elevated: #ffffff;
	--bg-surface-subtle: #f0f4fc;
	--bg-header: rgba(248, 250, 253, 0.86);
	--bg-header-solid: #f8fafd;
	--bg-card: #ffffff;
	--bg-card-hover: #ffffff;
	--bg-pill: #eaf1fd;
	--bg-dark-section: #0a1b38;

	--text-main: #0b1d3a;
	--text-muted: #536785;
	--text-subtle: #7e91ad;
	--text-inverse: #ffffff;

	--border-subtle: #e1e8f5;
	--border-strong: #c8d6ed;
	--border-card: #e4ecf7;

	--brand-blue: #1557d6;
	--brand-blue-hover: #0e44b0;
	--brand-blue-glow: rgba(21, 87, 214, 0.18);
	--brand-blue-deep: #071938;
	--color-accent: var(--brand-blue);

	--brand-gold: #febd30;
	--brand-gold-bright: #fac42f;
	--brand-gold-glow: rgba(217, 145, 30, 0.22);
	--brand-gold-bg: #fff8eb;
	--brand-gold-text: #965f04;

	--success-green: #10b981;
	--success-green-bg: #ecfdf5;
	--danger-red: #ef4444;

	--card-shadow: 0 16px 40px rgba(11, 29, 58, 0.06), 0 2px 6px rgba(11, 29, 58, 0.03);
	--card-shadow-hover: 0 24px 60px rgba(11, 29, 58, 0.12), 0 6px 16px rgba(11, 29, 58, 0.06);
	--glow-shadow: 0 0 50px rgba(21, 87, 214, 0.12);

	--font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Manrope', 'DM Sans', sans-serif;
	--font-serif: Georgia, 'Times New Roman', serif;

	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 26px;
	--radius-full: 9999px;

	--transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

	color-scheme: light;
}

/* Dark Mode Overrides (Triggered by CSS :has(#theme-toggle:checked) or data-theme="dark") */
body:has(#theme-toggle:checked),
:root:has(#theme-toggle:checked),
[data-theme="dark"] {
	--bg-base: #061122;
	--bg-surface: #0c1a33;
	--bg-surface-elevated: #112344;
	--bg-surface-subtle: #09152b;
	--bg-header: rgba(6, 17, 34, 0.88);
	--bg-header-solid: #061122;
	--bg-card: #0c1b36;
	--bg-card-hover: #102447;
	--bg-pill: rgba(59, 130, 246, 0.16);
	--bg-dark-section: #030a17;

	--text-main: #f0f5fc;
	--text-muted: #95a7c4;
	--text-subtle: #627796;
	--text-inverse: #0b1d3a;

	--border-subtle: rgba(149, 167, 196, 0.14);
	--border-strong: rgba(149, 167, 196, 0.28);
	--border-card: rgba(149, 167, 196, 0.16);

	--brand-blue: #3b82f6;
	--brand-blue-hover: #60a5fa;
	--brand-blue-glow: rgba(59, 130, 246, 0.3);
	--brand-blue-deep: #020712;
	--color-accent: var(--brand-blue);

	--brand-gold: #f5b743;
	--brand-gold-bright: #fbbf24;
	--brand-gold-glow: rgba(245, 183, 67, 0.3);
	--brand-gold-bg: rgba(245, 183, 67, 0.12);
	--brand-gold-text: #fcd34d;

	--card-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
	--card-shadow-hover: 0 30px 70px rgba(0, 0, 0, 0.7), 0 8px 24px rgba(0, 0, 0, 0.4);
	--glow-shadow: 0 0 60px rgba(59, 130, 246, 0.25);

	color-scheme: dark;
}

/* --------------------------------------------------------------------------
   2. Base Reset & Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-sans);
	background-color: var(--bg-base);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
	transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast), opacity var(--transition-fast);
}

img, svg {
	display: block;
	max-width: 100%;
}

button, input {
	font: inherit;
}

.visually-hidden-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

.section-grid {
	max-width: 1240px;
	margin: 0 auto;
	padding: 100px 24px;
}

/* --------------------------------------------------------------------------
   3. Fixed Header & Navigation (Matching header.js structure)
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 78px;
	z-index: 1000;
	background: var(--bg-header);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-subtle);
	transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.header-inner {
	width: 100%;
	max-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

/* Brand Logo */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.8px;
	color: var(--text-main);
	text-decoration: none;
}

.brand-logo {
	height: 42px;
	width: auto;
	max-width: 220px;
	display: block;
	object-fit: contain;
}

.mobile-drawer-header .brand-logo {
	width: 132px;
}

.footer-brand .brand-logo {
	width: 132px;
}

.brand-badge {
	color: var(--brand-gold);
	font-size: 18px;
	line-height: 1;
	filter: drop-shadow(0 0 8px var(--brand-gold-glow));
}

.brand-text {
	color: var(--brand-blue);
}

.brand-pro {
	color: var(--brand-gold);
	font-weight: 800;
}

/* Desktop Nav Links */
.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-item {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	padding: 6px 4px;
	position: relative;
	transition: color var(--transition-fast);
}

.nav-item:hover {
	color: var(--brand-blue);
}

.nav-item.active {
	color: var(--brand-blue);
}

.nav-special-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--bg-pill);
	padding: 5px 12px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-strong);
	color: var(--brand-blue);
	font-weight: 700;
	font-size: 12px;
}

.hot-badge {
	background: var(--brand-gold);
	color: #0b1d3a;
	padding: 1px 6px;
	border-radius: var(--radius-full);
	font-size: 10px;
	font-weight: 800;
}

/* Partnerships Dropdown */
.nav-dropdown {
	position: relative;
	display: inline-block;
}

.nav-dropdown-toggle:not(.btn) {
	background: transparent;
	border: none;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 4px;
	transition: color var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle:not(.btn),
.nav-dropdown:focus-within .nav-dropdown-toggle:not(.btn),
.nav-dropdown.active .nav-dropdown-toggle:not(.btn),
.nav-dropdown.open .nav-dropdown-toggle:not(.btn) {
	color: var(--brand-blue);
}

.nav-dropdown-toggle.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: none;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 700;
	color: #ffffff !important;
	background-color: var(--brand-blue) !important;
	box-shadow: 0 4px 14px var(--brand-blue-glow);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.nav-dropdown-toggle.btn:hover {
	background-color: var(--brand-blue-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px var(--brand-blue-glow);
}

.dropdown-chevron {
	transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: -20px;
	min-width: 280px;
	background: var(--bg-surface);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow-hover);
	padding: 10px;
	z-index: 1010;
	display: flex;
	flex-direction: column;
	gap: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	color: var(--text-main);
	transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
	background: var(--bg-surface-subtle);
}

.dropdown-item-icon {
	font-size: 18px;
	color: var(--brand-gold);
}

.dropdown-item strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-main);
}

.dropdown-item small {
	display: block;
	font-size: 11px;
	color: var(--text-muted);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.notification-btn {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	background: var(--bg-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	transition: var(--transition-fast);
}

.notification-btn:hover {
	color: var(--brand-blue);
	border-color: var(--brand-blue);
}

.notification-badge {
	position: absolute;
	top: -3px;
	right: -3px;
	background: var(--danger-red);
	color: white;
	font-size: 10px;
	font-weight: 800;
	min-width: 17px;
	height: 17px;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--bg-surface);
}

.auth-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Buttons */
.btn, .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 13px;
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn:hover, .button:hover {
	transform: translateY(-2px);
}

.btn-ghost {
	background: transparent;
	color: var(--text-muted);
}

.btn-ghost:hover {
	color: var(--brand-blue);
}

.btn-secondary {
	background: var(--bg-surface-subtle);
	color: var(--text-main);
	border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
	background: var(--bg-surface);
	border-color: var(--brand-blue);
	color: var(--brand-blue);
}

.btn-outline, .button-outline {
	background: transparent;
	color: var(--text-main);
	border: 1px solid var(--border-strong);
}

.btn-outline:hover, .button-outline:hover {
	border-color: var(--brand-blue);
	color: var(--brand-blue);
	box-shadow: 0 4px 15px var(--brand-blue-glow);
}

.btn-primary, .button-primary {
	background: var(--brand-blue);
	color: #ffffff !important;
	box-shadow: 0 4px 14px var(--brand-blue-glow);
}

.btn-primary:hover, .button-primary:hover {
	background: var(--brand-blue-hover);
	box-shadow: 0 8px 24px var(--brand-blue-glow);
}

.btn-accent-gold, .button-gold {
	background: linear-gradient(135deg, var(--brand-gold-bright) 0%, var(--brand-gold) 100%);
	color: #0b1d3a !important;
	font-weight: 800;
	box-shadow: 0 4px 16px var(--brand-gold-glow);
}

.btn-accent-gold:hover, .button-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 26px var(--brand-gold-glow);
}

.button-small {
	padding: 7px 14px;
	font-size: 12px;
}

.btn-block {
	width: 100%;
}

.btn-arrow {
	font-size: 15px;
	line-height: 1;
	transition: transform var(--transition-fast);
}

.button:hover .btn-arrow {
	transform: translate(2px, -2px);
}

/* Theme Switcher Toggle (Sun / Moon) */
.theme-switch {
	position: relative;
	width: 54px;
	height: 28px;
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-full);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 6px;
	user-select: none;
	transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.theme-icon {
	font-size: 12px;
	line-height: 1;
	z-index: 1;
	transition: opacity var(--transition-fast);
}

.theme-knob {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 22px;
	height: 22px;
	background: var(--bg-surface);
	border-radius: var(--radius-full);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition-spring), background-color var(--transition-fast);
}

/* Dark mode state for theme switch */
body:has(#theme-toggle:checked) .theme-knob,
:root:has(#theme-toggle:checked) .theme-knob {
	transform: translateX(26px);
	background: var(--brand-gold);
}

body:has(#theme-toggle:checked) .theme-switch,
:root:has(#theme-toggle:checked) .theme-switch {
	background: var(--bg-surface-elevated);
	border-color: var(--brand-gold);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 38px;
	height: 38px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-strong);
	background: var(--bg-surface);
	cursor: pointer;
	padding: 8px;
}

.burger-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text-main);
	border-radius: 2px;
	transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* --------------------------------------------------------------------------
   4. Unique Animated Mobile Navigation Drawer
   -------------------------------------------------------------------------- */
.mobile-nav-drawer {
	position: fixed;
	inset: 0;
	z-index: 2000;
	pointer-events: none;
	visibility: hidden;
	transition: visibility var(--transition-smooth);
}

.mobile-drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 12, 26, 0.65);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity var(--transition-smooth);
	cursor: pointer;
}

.mobile-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(88vw, 360px);
	height: 100vh;
	height: 100dvh;
	background: var(--bg-surface);
	border-left: 1px solid var(--border-strong);
	box-shadow: -15px 0 50px rgba(0, 0, 0, 0.35);
	transform: translateX(105%);
	transition: transform var(--transition-spring);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	padding: 24px 20px 32px;
}

/* Open drawer when #mobile-nav-toggle is checked */
body:has(#mobile-nav-toggle:checked) .mobile-nav-drawer {
	pointer-events: auto;
	visibility: visible;
}

body:has(#mobile-nav-toggle:checked) .mobile-drawer-backdrop {
	opacity: 1;
}

body:has(#mobile-nav-toggle:checked) .mobile-drawer-panel {
	transform: translateX(0);
}

.mobile-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-subtle);
}

.mobile-close-btn {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-strong);
	background: var(--bg-surface-subtle);
	color: var(--text-main);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.mobile-theme-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
}

.mobile-links-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 0;
}

.mobile-link {
	display: flex;
	align-items: center;
	padding: 12px 14px;
	border-radius: var(--radius-md);
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--text-main);
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-subtle);
	transition: var(--transition-fast);
}

.mobile-link:hover {
	background: var(--brand-blue-glow);
	border-color: var(--brand-blue);
	color: var(--brand-blue);
}

.mobile-link .m-num {
	font-size: 11px;
	color: var(--brand-gold);
	margin-right: 12px;
	font-family: var(--font-sans);
}

.mobile-link .m-arrow {
	margin-left: auto;
	font-size: 14px;
	color: var(--text-subtle);
}

.mobile-link-highlight {
	background: var(--brand-gold-bg);
	border-color: var(--brand-gold);
	color: var(--brand-gold-text);
}

.m-badge {
	margin-left: auto;
	background: var(--brand-gold);
	color: #0b1d3a;
	padding: 2px 8px;
	border-radius: var(--radius-full);
	font-size: 10px;
	font-weight: 800;
}

.mobile-partnerships-card {
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	padding: 14px;
	margin-bottom: 20px;
}

.mp-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-gold);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.mp-item {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-main);
	padding: 6px 0;
}

.mp-item:hover {
	color: var(--brand-blue);
}

.mobile-actions {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 14px;
}

.mobile-auth-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero {
	min-height: calc(100vh - 78px);
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: center;
	gap: 40px;
	padding-top: 120px;
	padding-bottom: 80px;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-pill);
	border: 1px solid var(--border-strong);
	padding: 6px 14px;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-blue);
	margin-bottom: 24px;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: var(--brand-gold);
	border-radius: 50%;
	box-shadow: 0 0 0 4px var(--brand-gold-glow);
	animation: pulse 2s infinite;
}

.gold-sparkle {
	color: var(--brand-gold);
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(44px, 5.5vw, 68px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -2.5px;
	margin-bottom: 24px;
	color: var(--text-main);
}

.hero h1 em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	letter-spacing: -2px;
	color: var(--brand-blue);
}

.hero-text {
	font-size: 17px;
	line-height: 1.65;
	color: var(--text-muted);
	max-width: 500px;
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
}

.trusted-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	border-top: 1px solid var(--border-subtle);
	padding-top: 24px;
}

.trusted-avatars {
	display: flex;
}

.t-avatar {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	background: var(--bg-surface);
	border: 2px solid var(--bg-base);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 800;
	color: var(--brand-blue);
	margin-left: -10px;
	box-shadow: var(--card-shadow);
}

.t-avatar:first-child {
	margin-left: 0;
}

.ta-4 {
	background: var(--brand-gold);
	color: #0b1d3a;
}

.trusted-text strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-main);
}

.trusted-text small {
	display: block;
	font-size: 12px;
	color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. Hero Visual: Dynamic Interactive Glass Dashboard
   -------------------------------------------------------------------------- */
.hero-visual {
	position: relative;
	height: 540px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.orbit-glow {
	position: absolute;
	width: 380px;
	height: 380px;
	background: transparent;
	z-index: 0;
	isolation: isolate;
}

.orbit-glow::before,
.orbit-glow::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
}

.orbit-glow::before {
	background: radial-gradient(circle, var(--brand-blue-glow) 0%, transparent 70%);
	filter: blur(40px);
}

.orbit-glow::after {
	inset: -80px;
	background-image:
		radial-gradient(circle, var(--brand-blue-glow) 0 1.5px, transparent 2px),
		radial-gradient(circle, var(--brand-gold-glow) 0 1px, transparent 1.5px);
	background-size: 46px 46px, 68px 68px;
	background-position: 0 0, 18px 26px;
	-webkit-mask-image: radial-gradient(circle, #000 0%, transparent 72%);
	mask-image: radial-gradient(circle, #000 0%, transparent 72%);
	opacity: 0.65;
	animation: orbit-dots 18s linear infinite;
}

.orbit {
	position: absolute;
	border: 1px dashed var(--border-strong);
	border-radius: 50%;
	z-index: 0;
}

.orbit-one {
	width: 520px;
	height: 320px;
	transform: rotate(-20deg);
}

.orbit-two {
	width: 580px;
	height: 380px;
	transform: rotate(35deg);
	border-color: var(--brand-gold-glow);
}

.dashboard-card {
	position: relative;
	z-index: 2;
	width: 440px;
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--card-shadow);
	padding: 24px;
	animation: float 6s ease-in-out infinite;
	transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.dash-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border-subtle);
}

.dash-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mini-icon {
	color: var(--brand-gold);
}

.mini-brand {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--brand-blue);
}

.mini-brand b {
	color: var(--brand-gold);
}

.status-live {
	background: var(--success-green-bg);
	color: var(--success-green);
	padding: 2px 6px;
	border-radius: var(--radius-full);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.dash-user {
	display: flex;
	align-items: center;
	gap: 8px;
}

.user-role {
	font-size: 11px;
	color: var(--text-muted);
}

.avatar {
	width: 30px;
	height: 30px;
	border-radius: var(--radius-full);
	background: var(--brand-blue-glow);
	color: var(--brand-blue);
	font-weight: 800;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dash-welcome {
	margin: 18px 0 16px;
}

.dash-welcome small {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.2px;
	color: var(--text-subtle);
}

.dash-welcome h3 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--text-main);
	margin-top: 2px;
}

.metric-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 18px;
}

.metric-box {
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 12px;
}

.metric-box small {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--text-subtle);
	display: block;
}

.metric-box strong {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--text-main);
	display: block;
	margin: 4px 0;
}

.up {
	color: var(--success-green);
	font-size: 11px;
	font-weight: 700;
}

.up small {
	color: var(--text-subtle);
	font-weight: 400;
	display: inline;
}

.chart-box {
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 14px;
	margin-bottom: 16px;
}

.chart-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	font-size: 11px;
}

.chart-pill {
	background: var(--bg-surface);
	padding: 2px 8px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
}

.bars-container {
	height: 90px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 6px;
}

.bar-col {
	flex: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}

.bar-fill {
	width: 100%;
	background: linear-gradient(180deg, var(--brand-blue) 0%, rgba(59, 130, 246, 0.3) 100%);
	border-radius: 4px 4px 0 0;
	transition: height 1s ease;
}

.active-bar {
	background: linear-gradient(180deg, var(--brand-gold-bright) 0%, var(--brand-gold) 100%);
}

.bar-col span {
	font-size: 9px;
	color: var(--text-subtle);
}

.dash-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid var(--border-subtle);
}

.sync-status {
	display: flex;
	align-items: center;
	gap: 10px;
}

.check-badge {
	width: 22px;
	height: 22px;
	border-radius: var(--radius-full);
	background: var(--success-green-bg);
	color: var(--success-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: bold;
}

.sync-status b {
	display: block;
	font-size: 11px;
	color: var(--text-main);
}

.sync-status small {
	display: block;
	font-size: 9px;
	color: var(--text-muted);
}

.dash-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-blue);
}

/* Floating Badges */
.float-card {
	position: absolute;
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	box-shadow: var(--card-shadow);
	border-radius: var(--radius-md);
	z-index: 3;
	transition: transform var(--transition-fast);
}

.float-credit {
	left: -20px;
	top: 80px;
	padding: 14px 16px;
	width: 170px;
	animation: float 7s ease-in-out infinite reverse;
}

.fc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.float-icon {
	color: var(--brand-gold);
	font-size: 16px;
}

.fc-tag {
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.8px;
	color: var(--brand-gold);
	background: var(--brand-gold-bg);
	padding: 2px 6px;
	border-radius: var(--radius-full);
}

.float-credit small {
	font-size: 8px;
	letter-spacing: 1px;
	color: var(--text-subtle);
	display: block;
}

.float-credit strong {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 800;
	color: var(--text-main);
	display: block;
	margin: 2px 0;
}

.float-badge {
	right: -20px;
	bottom: 60px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: float 5.5s ease-in-out infinite;
}

.qr-box {
	width: 36px;
	height: 36px;
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--brand-blue);
}

.float-badge small {
	font-size: 8px;
	font-weight: 700;
	color: var(--text-subtle);
	display: block;
}

.float-badge strong {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-main);
	display: block;
}

.cert-status {
	font-size: 10px;
	color: var(--success-green);
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   7. Section 01: Statement & Advantage
   -------------------------------------------------------------------------- */
.section-kicker {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--brand-blue);
	margin-bottom: 16px;
}

.kicker-gold {
	color: var(--brand-gold);
}

.statement-grid {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 40px;
	align-items: center;
	margin-bottom: 60px;
}

.statement-copy h2,
.platform-head-copy h2,
.plans-head h2,
.addons-header h2,
.cta h2 {
	font-family: var(--font-display);
	font-size: clamp(34px, 4.2vw, 54px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -2px;
	margin-bottom: 20px;
	color: var(--text-main);
}

.statement-copy h2 em,
.platform-head-copy h2 em,
.plans-head h2 em,
.addons-header h2 em,
.cta h2 em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--brand-blue);
}

.statement-copy p,
.platform-head-copy p,
.plans-subtitle p,
.addons-header p,
.cta p {
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-muted);
}

.advantage-comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.comp-box {
	padding: 20px;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
}

.comp-bad {
	background: var(--bg-surface-subtle);
	opacity: 0.85;
}

.comp-bad .comp-title {
	font-size: 13px;
	font-weight: 800;
	color: var(--text-subtle);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comp-bad .comp-title span {
	color: var(--danger-red);
}

.comp-bad ul {
	list-style: none;
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.comp-good {
	background: var(--bg-surface);
	border-color: var(--brand-gold);
	box-shadow: var(--card-shadow);
}

.comp-good .comp-title {
	font-size: 13px;
	font-weight: 800;
	color: var(--brand-blue);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comp-good .comp-title span {
	color: var(--success-green);
}

.comp-good ul {
	list-style: none;
	font-size: 12px;
	font-weight: 600;
	color: var(--text-main);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.signal-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	border-top: 1px solid var(--border-subtle);
	padding-top: 40px;
}

.signal {
	background: var(--bg-surface);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: var(--card-shadow);
	transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.signal:hover {
	transform: translateY(-4px);
	border-color: var(--brand-blue);
}

.signal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.signal-num {
	font-size: 12px;
	font-weight: 800;
	color: var(--brand-gold);
}

.signal-icon {
	font-size: 20px;
}

.signal strong {
	display: block;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 8px;
}

.signal p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. Section 02: Platform Architecture (Multisection Graphic)
   -------------------------------------------------------------------------- */
.platform {
	background: var(--bg-dark-section);
	color: #ffffff;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.platform .statement-copy h2,
.platform .platform-head-copy h2 {
	color: #ffffff;
}

.platform .platform-head-copy h2 em {
	color: var(--brand-gold);
}

.platform .platform-head-copy p {
	color: #a3b8db;
}

.feature-canvas {
	position: relative;
	height: 480px;
	max-width: 1000px;
	margin: 40px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-canvas-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(21, 87, 214, 0.25) 0%, transparent 70%);
}

.feature-orb {
	position: absolute;
	width: 140px;
	height: 140px;
	background: var(--brand-gold);
	filter: blur(60px);
	opacity: 0.45;
	border-radius: 50%;
}

.platform-ring {
	position: relative;
	width: 240px;
	height: 240px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: spin 30s linear infinite;
}

.pulse-ring {
	position: absolute;
	inset: -15px;
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 50%;
	animation: pulse 3s ease-out infinite;
}

.ring-dot {
	position: absolute;
	width: 10px;
	height: 10px;
	background: var(--brand-gold);
	border-radius: 50%;
	box-shadow: 0 0 12px var(--brand-gold);
}

.dot-a { top: 10px; left: 45px; }
.dot-b { top: 35px; right: 20px; }
.dot-c { bottom: 25px; right: 35px; }
.dot-d { bottom: 20px; left: 30px; }

.platform-core {
	width: 150px;
	height: 150px;
	background: rgba(12, 28, 58, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
	animation: reverse-spin 30s linear infinite;
}

.core-spark {
	color: var(--brand-gold);
	font-size: 16px;
}

.core-title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
}

.core-title b {
	color: var(--brand-gold);
}

.platform-core small {
	font-size: 8px;
	letter-spacing: 1.5px;
	color: #8faedb;
	font-weight: 700;
}

/* Nodes orbiting core */
.platform-node {
	position: absolute;
	background: rgba(15, 33, 67, 0.8);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-md);
	padding: 14px 18px;
	width: 220px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	z-index: 2;
	transition: transform var(--transition-fast);
}

.platform-node:hover {
	transform: scale(1.05);
	border-color: var(--brand-gold);
}

.node-icon {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	color: var(--brand-gold);
	background: rgba(245, 183, 67, 0.15);
	padding: 2px 6px;
	border-radius: 4px;
	margin-bottom: 6px;
}

.platform-node b {
	display: block;
	font-family: var(--font-display);
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 4px;
}

.platform-node small {
	display: block;
	font-size: 11px;
	color: #9ab4db;
	line-height: 1.4;
}

.node-1 { top: 12%; left: 8%; }
.node-2 { top: 10%; right: 8%; }
.node-3 { bottom: 12%; left: 10%; }
.node-4 { bottom: 10%; right: 10%; }

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 40px;
}

.feat-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	padding: 20px;
	transition: background-color var(--transition-fast);
}

.feat-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--brand-gold);
}

.fc-icon {
	font-size: 20px;
	color: var(--brand-gold);
	margin-bottom: 12px;
}

.feat-card h3 {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
}

.feat-card p {
	font-size: 12px;
	color: #9cb2d4;
	line-height: 1.55;
}

/* --------------------------------------------------------------------------
   9. Section 03: Subscription Plans (Horizontal Scrolling Showcase)
   -------------------------------------------------------------------------- */
.plans {
	padding-top: 100px;
	padding-bottom: 100px;
}

.plans-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 36px;
}

.plans-subtitle {
	max-width: 440px;
}

.scroll-instruction {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--bg-pill);
	border: 1px solid var(--border-strong);
	padding: 4px 12px;
	border-radius: var(--radius-full);
	font-size: 11px;
	font-weight: 700;
	color: var(--brand-blue);
	margin-top: 10px;
}

/* Horizontal Scroll Container */
.horizontal-plans-wrapper {
	width: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 24px;
	margin-bottom: 30px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--brand-blue) var(--border-subtle);
}

.horizontal-plans-wrapper::-webkit-scrollbar {
	height: 6px;
}

.horizontal-plans-wrapper::-webkit-scrollbar-track {
	background: var(--border-subtle);
	border-radius: var(--radius-full);
}

.horizontal-plans-wrapper::-webkit-scrollbar-thumb {
	background: var(--brand-blue);
	border-radius: var(--radius-full);
}

.horizontal-plans-track {
	display: flex;
	gap: 22px;
	width: max-content;
	padding: 10px 4px 20px;
}

/* Plan Card */
.plan-card {
	flex: 0 0 320px;
	scroll-snap-align: start;
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--card-shadow);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.plan-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--card-shadow-hover);
	border-color: var(--brand-blue);
}

.plan-featured {
	background: var(--bg-surface);
	border: 2px solid var(--brand-gold);
	box-shadow: 0 20px 50px var(--brand-gold-glow);
}

.plan-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.8px;
	background: var(--bg-surface-subtle);
	color: var(--text-muted);
	padding: 4px 8px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
}

.popular-badge {
	background: var(--brand-gold);
	color: #0b1d3a;
	border-color: var(--brand-gold);
}

.plan-num {
	font-size: 11px;
	font-weight: 800;
	color: var(--brand-gold);
}

.plan-card h3 {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 800;
	color: var(--text-main);
	margin: 12px 0 6px;
}

.plan-desc {
	font-size: 12px;
	color: var(--text-muted);
	min-height: 38px;
	line-height: 1.5;
}

.price-box {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin: 16px 0 12px;
}

.price {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 800;
	color: var(--text-main);
}

.period {
	font-size: 12px;
	color: var(--text-muted);
}

.credit-highlight {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-subtle);
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	color: var(--text-main);
	margin-bottom: 20px;
}

.credit-highlight strong {
	color: var(--brand-blue);
}

.ch-gold {
	background: var(--brand-gold-bg);
	border-color: var(--brand-gold);
}

.ch-gold strong {
	color: var(--brand-gold-text);
}

.ch-icon {
	color: var(--brand-gold);
}

.plan-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.45;
}

.plan-features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.plan-features li::before {
	content: "✓";
	color: var(--success-green);
	font-weight: 800;
	font-size: 12px;
	line-height: 1.2;
}

.plan-features strong {
	color: var(--text-main);
}

.plan-why {
	margin-top: auto;
	padding-top: 14px;
	margin-bottom: 18px;
	border-top: 1px dashed var(--border-subtle);
}

.plan-why small {
	display: block;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.8px;
	color: var(--brand-gold);
	margin-bottom: 2px;
}

.plan-why p {
	font-size: 11px;
	color: var(--text-subtle);
	line-height: 1.4;
}

/* Smart Billing Banner */
.billing-summary-banner {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: center;
	gap: 24px;
	background: var(--bg-surface);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	padding: 24px 30px;
	box-shadow: var(--card-shadow);
}

.bs-col {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bs-icon {
	font-size: 28px;
}

.bs-col strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-main);
}

.bs-col p {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 2px;
}

.bs-action {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   10. Section 04: Add-on Marketplace
   -------------------------------------------------------------------------- */
.addons {
	background: var(--bg-surface-subtle);
	padding-top: 90px;
	padding-bottom: 90px;
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.addons-header {
	margin-bottom: 40px;
}

.addon-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.addon-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-md);
	padding: 24px 28px;
	display: grid;
	grid-template-columns: 50px 1fr 160px;
	align-items: center;
	gap: 20px;
	box-shadow: var(--card-shadow);
	transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.addon-card:hover {
	transform: translateY(-2px);
	border-color: var(--brand-blue);
}

.highlight-addon {
	border: 1.5px solid var(--brand-gold);
}

.addon-icon-box {
	width: 44px;
	height: 44px;
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--brand-blue);
}

.addon-title-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 4px;
}

.addon-card h3 {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 700;
	color: var(--text-main);
}

.offer-pill {
	background: var(--bg-pill);
	color: var(--brand-blue);
	font-size: 10px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: var(--radius-full);
}

.gold-pill {
	background: var(--brand-gold);
	color: #0b1d3a;
}

.addon-info p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
}

.addon-pricing {
	text-align: right;
}

.addon-pricing strong {
	display: block;
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--text-main);
}

.strike {
	font-size: 12px;
	color: var(--text-subtle);
	text-decoration: line-through;
}

/* --------------------------------------------------------------------------
   11. Section 05: Final CTA
   -------------------------------------------------------------------------- */
.cta {
	position: relative;
	background: var(--brand-blue);
	color: #ffffff;
	padding: 110px 24px;
	text-align: center;
	overflow: hidden;
}

.cta-glow {
	position: absolute;
	width: 600px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: blur(50px);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

.cta h2 {
	color: #ffffff;
	margin-bottom: 18px;
}

.cta h2 em {
	color: var(--brand-gold-bright);
}

.cta p {
	color: #d6e4ff;
	font-size: 17px;
	margin-bottom: 36px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}

.cta .button-outline {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.cta .button-outline:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.cta-guarantee {
	display: flex;
	justify-content: center;
	gap: 24px;
	font-size: 12px;
	color: #c0d7ff;
	font-weight: 600;
	flex-wrap: wrap;
}

/* Zoho ATI partnership page and homepage spotlight */
.zoho-page-nav{display:flex;align-items:center;gap:22px;font-size:13px;font-weight:700;color:var(--text-muted)}.zoho-page-nav a:hover{color:var(--brand-blue)}
.zoho-hero{min-height:720px;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:70px;padding-top:150px;padding-bottom:100px}.zoho-hero h1{font-family:var(--font-display);font-size:clamp(44px,5.4vw,70px);line-height:1.04;letter-spacing:-2.5px;margin-bottom:24px}.zoho-hero h1 em,.zoho-section-heading h2 em{font-family:var(--font-serif);font-style:italic;font-weight:400;color:var(--brand-blue)}.zoho-lead{max-width:590px;color:var(--text-muted);font-size:18px;line-height:1.65;margin-bottom:34px}.zoho-proof-row{display:flex;gap:30px;border-top:1px solid var(--border-subtle);padding-top:22px}.zoho-proof-row strong,.zoho-proof-row span{display:block}.zoho-proof-row strong{font-family:var(--font-display);font-size:22px;color:var(--brand-blue)}.zoho-proof-row span{color:var(--text-muted);font-size:11px}
.zoho-hero-panel{background:var(--bg-dark-section);color:#fff;border-radius:var(--radius-lg);padding:34px;min-height:390px;box-shadow:var(--card-shadow-hover);position:relative;overflow:hidden}.zoho-hero-panel:after{content:"";position:absolute;width:280px;height:280px;right:-100px;bottom:-100px;border-radius:50%;background:radial-gradient(circle,rgba(254,189,48,.3),transparent 68%)}.zoho-panel-top,.dashboard-mock-top,.dashboard-mock-title,.table-heading{display:flex;align-items:center;justify-content:space-between}.zoho-seal{width:86px;height:86px;border:1px solid var(--brand-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--brand-gold);font-family:var(--font-display);font-size:38px;font-weight:800;margin:58px 0 20px}.panel-eyebrow,.dashboard-mock-top,.zoho-commercial-grid article>span{ text-transform:uppercase;letter-spacing:1.4px;font-size:10px;font-weight:800;color:var(--brand-gold)}.zoho-hero-panel h2{font-family:var(--font-display);font-size:30px;line-height:1.15;margin:8px 0 12px}.zoho-hero-panel>p:not(.panel-eyebrow){color:#a3b8db;line-height:1.6;font-size:14px}.panel-checks{display:grid;gap:8px;margin-top:24px;color:#dbe7fb;font-size:12px}
.zoho-section{padding-top:100px;padding-bottom:100px}.zoho-section-heading{max-width:720px;margin-bottom:42px}.zoho-section-heading h2{font-family:var(--font-display);font-size:clamp(34px,4vw,54px);line-height:1.08;letter-spacing:-2px;margin-bottom:18px}.zoho-section-heading>p:last-child{color:var(--text-muted);max-width:650px;font-size:16px;line-height:1.65}.zoho-benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.zoho-benefit{border-top:2px solid var(--brand-gold);padding:20px 4px 0}.zoho-benefit>span,.dashboard-capabilities>div>span,.zoho-process-grid span{color:var(--brand-gold);font-size:11px;font-weight:800;letter-spacing:1px}.zoho-benefit h3,.dashboard-capabilities h3,.zoho-process-grid h3{font-family:var(--font-display);font-size:18px;margin:14px 0 8px}.zoho-benefit p,.dashboard-capabilities p,.zoho-process-grid p{color:var(--text-muted);font-size:13px;line-height:1.6}
.zoho-dashboard-section,.zoho-process-section{background:var(--bg-dark-section);color:#fff}.dashboard-heading h2{color:#fff}.dashboard-heading h2 em{color:var(--brand-gold)}.dashboard-heading>p:last-child{color:#a3b8db}.zoho-dashboard-layout{display:grid;grid-template-columns:1.35fr .65fr;gap:34px;align-items:center}.zoho-dashboard-mock{background:#0d2040;border:1px solid rgba(255,255,255,.16);border-radius:var(--radius-md);padding:22px;box-shadow:0 25px 70px rgba(0,0,0,.3)}.dashboard-dot{color:#54d69a;font-size:10px;font-weight:800}.dashboard-mock-title{margin:26px 0 20px}.dashboard-mock-title small{display:block;color:#7895bc;font-size:9px;letter-spacing:1px}.dashboard-mock-title strong{display:block;font-family:var(--font-display);font-size:19px;margin-top:5px}.dashboard-avatar{width:34px;height:34px;border-radius:50%;background:var(--brand-gold);color:#0b1d3a;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800}.dashboard-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.dashboard-stats>div{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);padding:13px;border-radius:var(--radius-sm)}.dashboard-stats small,.dashboard-stats span{display:block;color:#7895bc;font-size:9px}.dashboard-stats strong{display:block;font-family:var(--font-display);font-size:25px;margin:4px 0}.dashboard-stats .stat-positive{color:#54d69a}.dashboard-table{margin-top:16px;border-top:1px solid rgba(255,255,255,.1)}.table-heading{padding:15px 0 10px;font-size:12px}.table-heading span{color:var(--brand-gold);font-size:10px}.dashboard-table>div:not(.table-heading){display:grid;grid-template-columns:1fr auto 52px;gap:10px;align-items:center;padding:11px 0;border-top:1px solid rgba(255,255,255,.07);font-size:11px;color:#dbe7fb}.dashboard-table small{color:#7895bc;font-size:9px;text-align:right}.table-status{display:inline-block;width:7px;height:7px;border-radius:50%;margin-right:7px}.table-status.green{background:#54d69a}.table-status.gold{background:var(--brand-gold)}.table-status.blue{background:#65a7ff}.dashboard-capabilities{display:grid;gap:22px}.dashboard-capabilities>div{border-bottom:1px solid rgba(255,255,255,.14);padding-bottom:18px}.dashboard-capabilities h3{margin:8px 0 4px;color:#fff}.dashboard-capabilities p{color:#9ab4db}
.zoho-commercial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.zoho-commercial-grid article{background:var(--bg-surface);border:1px solid var(--border-card);border-radius:var(--radius-md);padding:24px;box-shadow:var(--card-shadow)}.zoho-commercial-grid .commercial-featured{border:2px solid var(--brand-gold)}.zoho-commercial-grid strong{display:block;font-family:var(--font-display);font-size:34px;margin:12px 0 0}.zoho-commercial-grid small{color:var(--text-muted);font-size:11px}.zoho-commercial-grid p{color:var(--text-muted);font-size:13px;line-height:1.55;margin-top:18px}.zoho-note{margin-top:18px;background:var(--brand-gold-bg);border:1px solid var(--brand-gold);color:var(--brand-gold-text);padding:15px 18px;border-radius:var(--radius-sm);font-size:13px}.zoho-process-section{padding:0}.zoho-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.zoho-process-grid>div{border-top:1px solid rgba(255,255,255,.2);padding-top:18px}.zoho-process-grid h3{color:#fff}.zoho-process-grid p{color:#a3b8db}.zoho-cta{background:var(--brand-blue)}
.zoho-home-feature{display:grid;grid-template-columns:1.1fr .9fr;gap:70px;align-items:center;background:var(--brand-gold-bg)}.zoho-home-copy h2{font-family:var(--font-display);font-size:clamp(32px,4vw,50px);line-height:1.08;letter-spacing:-1.8px;margin-bottom:18px}.zoho-home-copy>p:not(.section-kicker){max-width:600px;color:var(--text-muted);font-size:16px;line-height:1.65;margin-bottom:26px}.zoho-home-points{display:grid;gap:12px}.zoho-home-points>div{border-left:3px solid var(--brand-gold);background:var(--bg-surface);padding:18px 20px;box-shadow:var(--card-shadow)}.zoho-home-points strong,.zoho-home-points span{display:block}.zoho-home-points strong{font-family:var(--font-display);font-size:16px}.zoho-home-points span{color:var(--text-muted);font-size:12px;margin-top:4px}

/* Course catalogue */
.courses-hero{min-height:720px;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:70px;padding-top:150px;padding-bottom:100px}.courses-hero h1,.courses-catalog-heading h2{font-family:var(--font-display);font-size:clamp(44px,5.4vw,70px);line-height:1.04;letter-spacing:-2.5px;margin-bottom:24px}.courses-hero h1 em,.courses-catalog-heading h2 em{font-family:var(--font-serif);font-style:italic;font-weight:400;color:var(--brand-blue)}.courses-lead{max-width:600px;color:var(--text-muted);font-size:18px;line-height:1.65;margin-bottom:34px}.courses-hero-actions{display:flex;gap:12px;flex-wrap:wrap}.catalog-download-button{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 16px;background:transparent;border:1px solid var(--border-strong);border-radius:var(--radius-sm);color:var(--text-main);font:inherit;font-size:13px;font-weight:700;cursor:pointer;transition:color var(--transition-fast),border-color var(--transition-fast),background-color var(--transition-fast)}.catalog-download-button:hover:not(:disabled){color:var(--brand-blue);border-color:var(--brand-blue);background:var(--bg-surface)}.catalog-download-button:disabled{opacity:.65;cursor:wait}.courses-proof-row{display:flex;gap:25px;border-top:1px solid var(--border-subtle);padding-top:22px;margin-top:34px}.courses-proof-row>div{display:flex;align-items:center;gap:8px;color:var(--text-muted);font-size:11px;font-weight:700}.courses-proof-row i{font-size:20px;color:var(--brand-gold-text)}.courses-hero-panel{background:var(--bg-dark-section);color:#fff;border-radius:var(--radius-lg);padding:34px;min-height:420px;box-shadow:var(--card-shadow-hover);position:relative;overflow:hidden}.courses-hero-panel:after{content:"";position:absolute;width:290px;height:290px;right:-105px;bottom:-110px;border-radius:50%;background:radial-gradient(circle,rgba(254,189,48,.28),transparent 68%)}.courses-panel-top{display:flex;align-items:center;justify-content:space-between}.courses-panel-number{font-family:var(--font-display);font-size:94px;font-weight:800;line-height:.9;color:var(--brand-gold);margin:60px 0 18px;position:relative;z-index:1}.courses-hero-panel h2{font-family:var(--font-display);font-size:30px;line-height:1.15;margin:8px 0 12px;position:relative;z-index:1}.courses-hero-panel>p:not(.panel-eyebrow){color:#a3b8db;font-size:14px;line-height:1.6;position:relative;z-index:1}.courses-panel-points{display:grid;gap:8px;margin-top:24px;color:#dbe7fb;font-size:12px;position:relative;z-index:1}.courses-catalog-section{background:var(--bg-surface-subtle)}.courses-catalog-heading{display:flex;justify-content:space-between;align-items:end;gap:40px;margin-bottom:38px}.courses-catalog-heading h2{font-size:clamp(34px,4vw,54px);margin-bottom:0}.courses-catalog-heading>p{max-width:390px;color:var(--text-muted);font-size:15px;line-height:1.65}.courses-filter-bar{display:flex;justify-content:space-between;align-items:center;gap:22px;background:var(--bg-surface);border-top:3px solid var(--brand-gold);border-bottom:1px solid var(--border-card);padding:18px 20px;margin-bottom:30px;box-shadow:var(--card-shadow)}.courses-filter-title{display:flex;align-items:center;gap:9px;font-family:var(--font-display);font-size:17px;font-weight:800;white-space:nowrap}.courses-filter-title i{font-size:21px;color:var(--brand-blue)}.courses-filter-controls{display:flex;justify-content:flex-end;align-items:center;gap:10px;flex-wrap:wrap}.courses-search{position:relative;display:block;width:235px}.courses-search i{position:absolute;top:50%;left:12px;transform:translateY(-50%);color:var(--text-subtle);font-size:18px;pointer-events:none}.courses-search input,.courses-select{min-height:42px;border:1px solid var(--border-strong);border-radius:var(--radius-sm);background:var(--bg-surface-subtle);color:var(--text-main);font:inherit;font-size:12px;font-weight:600;outline:none;transition:border-color var(--transition-fast),box-shadow var(--transition-fast),background-color var(--transition-fast)}.courses-search input{width:100%;padding:10px 12px 10px 38px}.courses-select{padding:9px 30px 9px 12px;cursor:pointer}.courses-sort{min-width:145px}.courses-search input:focus,.courses-select:focus{background:var(--bg-surface);border-color:var(--brand-blue);box-shadow:0 0 0 3px var(--brand-blue-glow)}.courses-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.course-card{display:flex;flex-direction:column;min-width:0;background:var(--bg-card);border:1px solid var(--border-card);border-radius:var(--radius-md);box-shadow:var(--card-shadow);overflow:hidden;transition:transform var(--transition-smooth),box-shadow var(--transition-smooth),border-color var(--transition-smooth);animation:reveal .5s ease-out both}.course-card:hover{transform:translateY(-5px);border-color:var(--border-strong);box-shadow:var(--card-shadow-hover)}.course-card-thumb-wrapper{height:190px;position:relative;overflow:hidden;background:var(--bg-surface-subtle);cursor:pointer}.course-card-img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition-smooth)}.course-card:hover .course-card-img{transform:scale(1.04)}.card-floating-badge,.card-floating-rating{position:absolute;top:12px;padding:5px 9px;border-radius:var(--radius-sm);font-size:10px;font-weight:800;z-index:1}.card-floating-badge{left:12px;background:rgba(7,25,56,.86);border:1px solid rgba(255,255,255,.16);color:#fff}.card-floating-rating{right:12px;display:flex;align-items:center;gap:4px;background:rgba(255,255,255,.92);color:var(--brand-blue-deep)}.card-floating-rating i{color:var(--brand-gold-text)}.course-card-content{display:flex;flex:1;flex-direction:column;gap:14px;padding:20px}.badges-row{display:flex;min-height:21px;gap:6px;flex-wrap:wrap}.pill-tag{display:inline-flex;align-items:center;gap:4px;padding:4px 8px;border-radius:var(--radius-sm);font-size:9px;font-weight:800;letter-spacing:.7px;text-transform:uppercase}.pill-tag.vertical-tag{background:var(--bg-pill);color:var(--brand-blue);border:1px solid var(--border-strong)}.pill-tag.trending-tag{background:var(--brand-gold-bg);color:var(--brand-gold-text);border:1px solid var(--brand-gold)}.pill-tag.interactive-tag{background:var(--success-green-bg);color:#087a56;border:1px solid rgba(16,185,129,.3)}.course-card h3{font-family:var(--font-display);font-size:20px;line-height:1.25;cursor:pointer;transition:color var(--transition-fast)}.course-card h3:hover{color:var(--brand-blue)}.course-card-desc{color:var(--text-muted);font-size:13px;line-height:1.6;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.chips-container{display:flex;gap:6px;flex-wrap:wrap;margin-top:auto;padding-top:4px}.chip-item{display:inline-flex;align-items:center;gap:5px;padding:5px 7px;background:var(--bg-surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);color:var(--text-muted);font-size:10px}.chip-item i{font-size:14px;color:var(--brand-blue)}.chip-item strong{font-weight:800;color:var(--text-main)}.card-footer-actions{display:flex;align-items:center;gap:8px;border-top:1px solid var(--border-subtle);padding-top:14px}.btn-view-details{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:7px;min-height:39px;padding:9px 12px;background:var(--brand-blue);border:1px solid var(--brand-blue);border-radius:var(--radius-sm);color:#fff;font-size:12px;font-weight:800;transition:background-color var(--transition-fast),transform var(--transition-fast)}.btn-view-details:hover{background:var(--brand-blue-hover);transform:translateY(-1px)}.btn-icon-syllabus{display:flex;align-items:center;justify-content:center;width:39px;height:39px;flex:0 0 39px;background:var(--brand-gold-bg);border:1px solid var(--brand-gold);border-radius:var(--radius-sm);color:var(--brand-gold-text);font-size:17px;cursor:pointer;transition:background-color var(--transition-fast),color var(--transition-fast)}.btn-icon-syllabus:hover:not(:disabled){background:var(--brand-gold);color:var(--brand-blue-deep)}.btn-icon-syllabus:disabled{cursor:wait}.category-section-header{grid-column:1 / -1;margin-top:28px;padding-bottom:12px;border-bottom:1px solid var(--border-strong)}.category-section-header h3{font-family:var(--font-display);font-size:24px;color:var(--text-main)}

/* Course cards and details */
.course-card-thumb-wrapper:after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent 20%,rgba(255,255,255,.2) 48%,transparent 76%);transform:translateX(-120%);transition:transform .7s ease;pointer-events:none}.course-card:hover .course-card-thumb-wrapper:after{transform:translateX(120%)}.course-card h3,.course-details-hero h1,.chapter-info h4{background:linear-gradient(110deg,var(--text-main) 22%,var(--brand-blue) 40%,var(--brand-gold-text) 50%,var(--text-main) 63%);background-size:240% auto;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;animation:title-shine 7s linear infinite}.course-card:before{content:"";position:absolute;inset:0 0 auto;height:3px;background:linear-gradient(90deg,var(--brand-blue),var(--brand-gold),var(--success-green));opacity:0;transition:opacity var(--transition-fast)}.course-card:hover:before{opacity:1}
.details-page main{padding-top:78px}.course-details-page{padding-top:70px;padding-bottom:100px}.course-details-hero{position:relative;overflow:hidden;margin-bottom:24px;padding:42px 44px;background:linear-gradient(135deg,var(--bg-surface) 0%,var(--brand-gold-bg) 52%,var(--bg-surface-subtle) 100%);border:1px solid var(--border-card);border-top:3px solid var(--brand-gold);border-radius:var(--radius-lg);box-shadow:var(--card-shadow);animation:reveal .7s ease-out both}.course-details-hero:before{content:"";position:absolute;width:330px;height:330px;right:-130px;top:-170px;border:1px solid var(--brand-gold);border-radius:50%;box-shadow:0 0 0 24px rgba(254,189,48,.06),0 0 0 48px rgba(254,189,48,.04);animation:details-orbit 14s linear infinite}.course-details-hero:after{content:"";position:absolute;width:160px;height:160px;right:84px;bottom:-100px;background:radial-gradient(circle,var(--brand-blue-glow),transparent 70%);pointer-events:none}.details-page .breadcrumb{position:relative;z-index:1;display:flex;align-items:center;gap:7px;margin-bottom:24px;color:var(--text-muted);font-size:12px;font-weight:700}.details-page .breadcrumb a{color:var(--brand-blue)}.details-page .breadcrumb a:hover{text-decoration:underline}.course-details-hero h1{position:relative;z-index:1;max-width:900px;margin:18px 0 24px;font-family:var(--font-display);font-size:clamp(34px,5vw,64px);line-height:1.05;letter-spacing:-2px}.header-badges-row{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:8px}.hero-badge-pill{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border:1px solid var(--border-strong);border-radius:var(--radius-sm);background:var(--bg-surface);color:var(--text-main);font-size:10px;font-weight:800;letter-spacing:.7px;text-transform:uppercase}.hero-badge-pill.cat-pill{border-color:var(--brand-blue);color:var(--brand-blue);background:var(--bg-pill)}.hero-badge-pill.vert-pill{border-color:var(--success-green);color:#087a56;background:var(--success-green-bg)}.header-meta{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:9px;margin-top:26px}.meta-item{display:flex;align-items:center;gap:8px;padding:10px 12px;border:1px solid var(--border-subtle);border-radius:var(--radius-sm);background:rgba(255,255,255,.65);color:var(--text-main);font-size:11px;font-weight:700}.meta-item i{font-size:18px;color:var(--brand-blue)}.details-page .course-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:22px;align-items:start}.details-page .course-main section,.details-page .sidebar-card{background:var(--bg-surface);border:1px solid var(--border-card);border-radius:var(--radius-md);box-shadow:var(--card-shadow);animation:reveal .7s ease-out both}.details-page .course-main section{padding:28px;margin-bottom:22px}.details-page .course-main h2{display:flex;align-items:center;gap:10px;margin:0 0 22px;padding-bottom:16px;border-bottom:1px solid var(--border-subtle);font-family:var(--font-display);font-size:24px;color:var(--text-main)}.details-page .course-main h2 i{color:var(--brand-blue)}.details-page #course-description{color:var(--text-muted)!important}.details-page #course-description h3{font-family:var(--font-display);font-size:17px;color:var(--text-main)!important}.highlights-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:18px}.highlight-card{display:flex;align-items:flex-start;gap:9px;padding:14px;background:var(--bg-surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);color:var(--text-main);font-size:12px;line-height:1.5;transition:transform var(--transition-fast),border-color var(--transition-fast),box-shadow var(--transition-fast)}.highlight-card:hover{transform:translateY(-3px);border-color:var(--brand-gold);box-shadow:var(--card-shadow)}.highlight-card i{color:var(--success-green);font-size:18px}.chapters-list{display:grid;gap:10px}.chapter-card{display:flex;justify-content:space-between;align-items:center;gap:18px;padding:18px;background:var(--bg-surface-subtle);border:1px solid var(--border-subtle);border-left:3px solid var(--brand-blue);border-radius:var(--radius-sm);transition:transform var(--transition-fast),border-color var(--transition-fast),background-color var(--transition-fast);animation:reveal .5s ease-out both}.chapter-card:hover{transform:translateX(5px);border-color:var(--brand-gold);background:var(--bg-surface)}.chapter-info h4{margin:0;font-family:var(--font-display);font-size:17px;line-height:1.3}.chapter-meta{display:flex;flex-wrap:wrap;gap:12px;margin-top:9px;color:var(--text-muted);font-size:11px}.chapter-meta span{display:inline-flex;align-items:center;gap:4px}.chapter-card>.bx{color:var(--brand-blue)!important;font-size:22px!important}.details-page .sidebar-card{position:sticky;top:100px;padding:20px}.course-img-wrapper{position:relative;overflow:hidden;aspect-ratio:16/9;margin-bottom:18px;border-radius:var(--radius-sm);background:var(--bg-surface-subtle)}.course-img-wrapper:after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,transparent 30%,rgba(255,255,255,.24),transparent 70%);transform:translateX(-120%);animation:image-sheen 5s ease-in-out infinite}.course-img{width:100%;height:100%;object-fit:cover}.price-tag{font-family:var(--font-display);font-size:31px;font-weight:800;color:var(--text-main);margin:0 0 18px}.price-tag span{font-size:11px;color:var(--text-muted);font-weight:600}.stat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:18px}.stat-card{padding:12px 8px;text-align:center;background:var(--bg-surface-subtle);border:1px solid var(--border-subtle);border-radius:var(--radius-sm)}.stat-card strong{display:block;color:var(--brand-blue);font-family:var(--font-display);font-size:22px}.stat-card span{color:var(--text-muted);font-size:9px;font-weight:800;letter-spacing:.7px;text-transform:uppercase}.feature-list{display:grid;gap:10px;margin:0 0 20px;padding:0;list-style:none}.feature-list li{display:flex;align-items:center;gap:8px;color:var(--text-muted);font-size:12px;font-weight:600}.feature-list i{color:var(--success-green);font-size:17px}.sidebar-actions{display:grid;gap:8px}.btn-primary-action,.btn-download-syllabus-action{display:inline-flex;align-items:center;justify-content:center;gap:7px;width:100%;min-height:42px;padding:10px 14px;border-radius:var(--radius-sm);font:inherit;font-size:12px;font-weight:800;cursor:pointer;transition:transform var(--transition-fast),background-color var(--transition-fast),box-shadow var(--transition-fast)}.btn-primary-action{background:var(--brand-blue);color:#fff!important;border:1px solid var(--brand-blue)}.btn-primary-action:hover{background:var(--brand-blue-hover);transform:translateY(-2px);box-shadow:0 8px 20px var(--brand-blue-glow)}.btn-download-syllabus-action{background:var(--brand-gold-bg);border:1px solid var(--brand-gold);color:var(--brand-gold-text)}.btn-download-syllabus-action:hover{background:var(--brand-gold);color:var(--brand-blue-deep);transform:translateY(-2px)}.loading-state{padding:130px 0;text-align:center;color:var(--text-muted)}.loading-state i{display:block;margin-bottom:12px;color:var(--brand-blue);font-size:42px}.error-state{color:var(--text-muted)}
@keyframes title-shine{0%{background-position:240% center}100%{background-position:-40% center}}@keyframes image-sheen{0%,30%{transform:translateX(-120%)}65%,100%{transform:translateX(120%)}}@keyframes details-orbit{to{transform:rotate(360deg)}}

@media (max-width:1024px){
	.details-page .course-content-grid{grid-template-columns:1fr}
	.details-page .sidebar-card{position:relative;top:auto;order:-1}
}

@media (max-width:768px){
	.course-details-page{padding-top:45px;padding-bottom:70px}
	.course-details-hero{padding:28px 20px}
	.course-details-hero h1{font-size:40px;letter-spacing:-1.5px}
	.header-meta{gap:7px}
	.meta-item{font-size:10px;padding:8px 9px}
	.details-page .course-main section{padding:20px 16px}
	.details-page .course-main h2{font-size:21px}
	.highlights-grid{grid-template-columns:1fr}
	.chapter-card{align-items:flex-start;flex-direction:column;padding:16px}
	.chapter-card>.bx{display:none}
}

@media (prefers-reduced-motion:reduce){
	.course-card h3,.course-details-hero h1,.chapter-info h4,.course-details-hero:before,.course-img-wrapper:after{animation:none}
	.course-card,.chapter-card,.highlight-card{transition:none}
}

/* Course cards, footer, and details finishing touches */
.courses-page .course-card{background:linear-gradient(145deg,#0a1b38 0%,#102b55 58%,#0b2144 100%);border-color:rgba(149,167,196,.2);box-shadow:0 20px 42px rgba(7,25,56,.18);color:#fff}.courses-page .course-card:hover{background:linear-gradient(145deg,#0d2448 0%,#153866 58%,#0d2852 100%);border-color:rgba(254,189,48,.7);box-shadow:0 26px 55px rgba(7,25,56,.3)}.courses-page .course-card-content{background:transparent}.courses-page .course-card h3{background:linear-gradient(110deg,#fff 22%,#86b6ff 42%,#fecd55 53%,#fff 68%);background-size:240% auto;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}.courses-page .course-card-desc{color:#b6c9e6}.courses-page .chip-item{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.14);color:#a9bfdf}.courses-page .chip-item strong{color:#fff}.courses-page .card-footer-actions{border-top-color:rgba(255,255,255,.14)}.courses-page .pill-tag.vertical-tag{background:rgba(106,163,255,.14);border-color:rgba(134,182,255,.35);color:#9fc7ff}.courses-page .pill-tag.interactive-tag{background:rgba(16,185,129,.14);border-color:rgba(84,214,154,.35);color:#73e2b5}.courses-page .btn-icon-syllabus{background:rgba(254,189,48,.12);border-color:rgba(254,189,48,.7);color:#ffd76c}.courses-page .btn-icon-syllabus:hover:not(:disabled){background:var(--brand-gold);color:var(--brand-blue-deep)}.courses-page .category-section-header h3{color:var(--text-main)}
.site-footer{position:relative;overflow:hidden;background:var(--bg-surface);border-top:1px solid var(--border-subtle);padding:64px 0 26px;color:var(--text-main)}.site-footer:before{content:"";position:absolute;inset:0;background:linear-gradient(110deg,rgba(21,87,214,.06),transparent 42%,rgba(254,189,48,.08));pointer-events:none}.site-footer .container{position:relative;z-index:1}.footer-grid{display:grid;grid-template-columns:1.35fr .75fr .75fr;gap:48px;align-items:start}.footer-contact,.footer-links,.footer-social-section{min-width:0}.footer-brand strong{display:block;font-family:var(--font-display);font-size:24px;letter-spacing:-.6px;color:var(--text-main)}.footer-tagline{margin:8px 0 26px;color:var(--text-muted);font-size:13px}.contact-item{display:flex;align-items:flex-start;gap:10px;margin:14px 0;color:var(--text-muted);font-size:12px;line-height:1.55}.contact-icon{flex:0 0 18px;color:var(--brand-blue);margin-top:2px}.contact-text a{color:var(--text-main)}.contact-text a:hover{color:var(--brand-blue)}.footer-copyright{margin-top:28px;padding-top:18px;border-top:1px solid var(--border-subtle);color:var(--text-subtle);font-size:11px}.footer-links h3,.footer-social-section h3{margin:0 0 16px;font-family:var(--font-display);font-size:12px;letter-spacing:1px;text-transform:uppercase;color:var(--brand-blue)}.footer-links a{display:block;margin:10px 0;color:var(--text-muted);font-size:13px}.footer-links a:hover{color:var(--brand-blue)}.footer-social{display:flex;gap:9px}.footer-social a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid var(--border-strong);border-radius:var(--radius-sm);color:var(--text-muted);background:var(--bg-surface-subtle);transition:transform var(--transition-fast),border-color var(--transition-fast),color var(--transition-fast),background-color var(--transition-fast)}.footer-social a:hover{transform:translateY(-3px);border-color:var(--brand-blue);color:var(--brand-blue);background:var(--bg-pill)}
.details-page .site-footer,.courses-page .site-footer{color:var(--text-main)}
[data-theme="dark"] .site-footer,body:has(#theme-toggle:checked) .site-footer{background:var(--bg-dark-section);border-top-color:transparent;color:#fff}
[data-theme="dark"] .site-footer:before,body:has(#theme-toggle:checked) .site-footer:before{background:linear-gradient(110deg,rgba(21,87,214,.12),transparent 42%,rgba(254,189,48,.08))}
[data-theme="dark"] .footer-brand strong,body:has(#theme-toggle:checked) .footer-brand strong{color:#fff}
[data-theme="dark"] .footer-tagline,[data-theme="dark"] .contact-item,body:has(#theme-toggle:checked) .footer-tagline,body:has(#theme-toggle:checked) .contact-item{color:#a9bfdf}
[data-theme="dark"] .contact-icon,body:has(#theme-toggle:checked) .contact-icon{color:var(--brand-gold)}
[data-theme="dark"] .contact-text a,body:has(#theme-toggle:checked) .contact-text a{color:#dbe7fb}
[data-theme="dark"] .contact-text a:hover,body:has(#theme-toggle:checked) .contact-text a:hover{color:var(--brand-gold)}
[data-theme="dark"] .footer-copyright,body:has(#theme-toggle:checked) .footer-copyright{border-top-color:rgba(255,255,255,.12);color:#7895bc}
[data-theme="dark"] .footer-links h3,[data-theme="dark"] .footer-social-section h3,body:has(#theme-toggle:checked) .footer-links h3,body:has(#theme-toggle:checked) .footer-social-section h3{color:var(--brand-gold)}
[data-theme="dark"] .footer-links a,body:has(#theme-toggle:checked) .footer-links a{color:#b6c9e6}
[data-theme="dark"] .footer-links a:hover,body:has(#theme-toggle:checked) .footer-links a:hover{color:#fff}
[data-theme="dark"] .footer-social a,body:has(#theme-toggle:checked) .footer-social a{border-color:rgba(255,255,255,.16);color:#b6c9e6;background:rgba(255,255,255,.05)}
[data-theme="dark"] .footer-social a:hover,body:has(#theme-toggle:checked) .footer-social a:hover{border-color:var(--brand-gold);color:var(--brand-gold);background:rgba(254,189,48,.1)}

@media (max-width:768px){.footer-grid{grid-template-columns:1fr;gap:30px}.site-footer{padding:48px 0 22px}.courses-page .course-card-content{padding:18px}.courses-page .course-card-thumb-wrapper{height:180px}}

/* Institute enquiry page */
.contact-hero{min-height:760px;display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center;padding-top:150px;padding-bottom:100px}.contact-intro h1,.contact-map-copy h2{font-family:var(--font-display);font-size:clamp(44px,5vw,66px);line-height:1.06;letter-spacing:-2px;margin-bottom:22px}.contact-intro h1 em,.contact-map-copy h2 em{font-family:var(--font-serif);font-style:italic;font-weight:400;color:var(--brand-blue)}.contact-intro>p:not(.section-kicker){max-width:530px;color:var(--text-muted);font-size:17px;line-height:1.65}.contact-methods{display:grid;gap:12px;margin-top:36px}.contact-method{display:flex;align-items:center;gap:14px;width:max-content;max-width:100%;color:var(--text-main)}.contact-method:hover strong{color:var(--brand-blue)}.contact-method-icon{display:flex;align-items:center;justify-content:center;width:42px;height:42px;background:var(--brand-gold-bg);border:1px solid var(--brand-gold);border-radius:var(--radius-sm);color:var(--brand-gold-text);font-size:18px;font-weight:800}.contact-method small,.contact-method strong{display:block}.contact-method small{font-size:11px;color:var(--text-muted)}.contact-method strong{font-family:var(--font-display);font-size:15px;transition:color var(--transition-fast)}.contact-form-panel{background:var(--bg-surface);border:1px solid var(--border-card);border-top:3px solid var(--brand-gold);border-radius:var(--radius-md);box-shadow:var(--card-shadow-hover);padding:32px}.contact-panel-heading{margin-bottom:24px}.contact-panel-heading h2{font-family:var(--font-display);font-size:27px;line-height:1.15;margin:6px 0}.contact-panel-heading>p:last-child{color:var(--text-muted);font-size:13px}.institute-contact-form{display:grid;gap:16px}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.form-group{display:grid;gap:6px}.form-group label{font-size:12px;font-weight:700;color:var(--text-main)}.form-group input,.form-group select,.form-group textarea{width:100%;background:var(--bg-surface-subtle);border:1px solid var(--border-strong);border-radius:var(--radius-sm);color:var(--text-main);font:inherit;font-size:13px;line-height:1.4;padding:11px 12px;outline:none;transition:border-color var(--transition-fast),box-shadow var(--transition-fast),background-color var(--transition-fast)}.form-group select{min-height:43px}.form-group textarea{resize:vertical;min-height:98px}.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-subtle)}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{background:var(--bg-surface);border-color:var(--brand-blue);box-shadow:0 0 0 3px var(--brand-blue-glow)}.form-privacy{color:var(--text-subtle);font-size:11px;line-height:1.45;text-align:center}.contact-map-section{background:var(--bg-dark-section);color:#fff;display:grid;grid-template-columns:.9fr 1.1fr;align-items:stretch;min-height:520px}.contact-map-copy{max-width:620px;margin:0 0 0 auto;padding-right:70px;align-self:center}.contact-map-copy h2{font-size:clamp(36px,4vw,52px);color:#fff}.contact-map-copy h2 em{color:var(--brand-gold)}.contact-map-copy>p:not(.section-kicker){max-width:450px;color:#a3b8db;font-size:16px;line-height:1.65}.contact-map-frame{position:relative;min-height:520px;background:#dce5f2;overflow:hidden}.contact-map-frame iframe{width:100%;height:100%;min-height:520px;border:0;filter:saturate(.82) contrast(.95)}.map-marker{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);min-width:150px;padding:13px 16px;background:var(--bg-surface);border:1px solid var(--brand-gold);border-radius:var(--radius-sm);box-shadow:0 12px 30px rgba(0,0,0,.24);color:var(--text-main);text-align:center}.map-marker span,.map-marker strong,.map-marker small{display:block}.map-marker span{color:var(--brand-gold);font-size:16px}.map-marker strong{font-family:var(--font-display);font-size:14px}.map-marker small{color:var(--text-muted);font-size:10px}

@media (max-width: 1024px) {
	.courses-hero { grid-template-columns: 1fr; gap: 40px; }
	.courses-catalog-heading { align-items: start; flex-direction: column; gap: 16px; }
	.courses-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.courses-filter-bar { align-items: flex-start; flex-direction: column; }
	.courses-filter-controls { justify-content: flex-start; width: 100%; }
	.zoho-page-nav { gap: 12px; }
	.zoho-page-nav a:not(.button) { display: none; }
	.zoho-hero { grid-template-columns: 1fr; gap: 40px; }
	.zoho-benefit-grid, .zoho-process-grid { grid-template-columns: 1fr 1fr; }
	.zoho-dashboard-layout, .zoho-home-feature { grid-template-columns: 1fr; gap: 36px; }
	.contact-hero { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
	.contact-map-section { grid-template-columns: 1fr; }
	.contact-map-copy { max-width: 1240px; margin: 0 auto; padding-right: 24px; }
}

@media (max-width: 768px) {
	.courses-hero { min-height: auto; padding-top: 110px; padding-bottom: 70px; }
	.courses-hero h1 { font-size: 40px; letter-spacing: -1.5px; }
	.courses-lead { font-size: 16px; }
	.courses-proof-row { gap: 14px; flex-wrap: wrap; }
	.courses-hero-panel { padding: 24px; }
	.courses-panel-number { margin-top: 44px; font-size: 76px; }
	.courses-catalog-heading h2 { font-size: 38px; letter-spacing: -1.5px; }
	.courses-filter-bar { padding: 16px; }
	.courses-filter-controls { display: grid; grid-template-columns: 1fr 1fr; }
	.courses-search { grid-column: 1 / -1; width: 100%; }
	.courses-select { width: 100%; min-width: 0; }
	.courses-grid { grid-template-columns: 1fr; }
	.zoho-hero { padding-top: 110px; padding-bottom: 70px; }
	.zoho-hero h1 { font-size: 40px; }
	.zoho-lead { font-size: 16px; }
	.zoho-proof-row { gap: 16px; flex-wrap: wrap; }
	.zoho-proof-row strong { font-size: 18px; }
	.zoho-hero-panel { padding: 24px; }
	.zoho-benefit-grid, .zoho-process-grid, .zoho-commercial-grid { grid-template-columns: 1fr; }
	.zoho-section { padding-top: 70px; padding-bottom: 70px; }
	.dashboard-stats { grid-template-columns: 1fr; }
	.dashboard-table > div:not(.table-heading) { grid-template-columns: 1fr auto; }
	.dashboard-table small { display: none; }
	.zoho-home-feature { padding-top: 70px; padding-bottom: 70px; }
	.contact-hero { padding-top: 110px; padding-bottom: 70px; }
	.contact-intro h1 { font-size: 40px; }
	.contact-form-panel { padding: 24px 18px; }
	.form-row { grid-template-columns: 1fr; }
	.contact-map-copy { padding: 70px 16px; }
	.contact-map-frame, .contact-map-frame iframe { min-height: 380px; }
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	padding: 70px 0 30px;
	transition: background-color var(--transition-smooth);
}

.footer-inner {
	display: grid;
	grid-template-columns: 35% 65%;
	gap: 40px;
	margin-bottom: 50px;
}

.footer-brand p {
	font-size: 13px;
	color: var(--text-muted);
	max-width: 280px;
	margin-top: 12px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.fl-col strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.fl-col a {
	display: block;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.fl-col a:hover {
	color: var(--brand-blue);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-subtle);
	padding-top: 24px;
	font-size: 12px;
	color: var(--text-subtle);
}

/* --------------------------------------------------------------------------
   13. Animations & Keyframes
   -------------------------------------------------------------------------- */
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(0.4deg); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.08); }
}

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

@keyframes reverse-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(-360deg); }
}

@keyframes orbit-dots {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(46px, 68px, 0);
	}
}

.reveal {
	animation: reveal 0.8s ease-out both;
}

.delay-1 {
	animation-delay: 0.15s;
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --------------------------------------------------------------------------
   14. Responsive Breakpoints (Mobile First & Tablet Adaptations)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.nav-links {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.auth-group {
		display: none;
	}

	.hero {
		grid-template-columns: 1fr;
		padding-top: 100px;
		gap: 60px;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-text {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.trusted-bar {
		justify-content: center;
	}

	.statement-grid {
		grid-template-columns: 1fr;
	}

	.signal-row {
		grid-template-columns: 1fr;
	}

	.feature-grid {
		grid-template-columns: 1fr 1fr;
	}

	.billing-summary-banner {
		grid-template-columns: 1fr;
	}

	.bs-action {
		justify-content: flex-start;
	}

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

@media (max-width: 768px) {
	.section-grid {
		padding: 70px 16px;
	}

	.site-header .brand-logo {
		width: 126px;
	}

	.hero h1 {
		font-size: 38px;
		letter-spacing: -1.5px;
	}

	.hero-visual {
		height: 480px;
		transform: scale(0.85);
	}

	.dashboard-card {
		width: 100%;
		max-width: 380px;
	}

	.float-credit {
		left: -10px;
		top: 40px;
	}

	.float-badge {
		right: -10px;
		bottom: 30px;
	}

	.advantage-comparison {
		grid-template-columns: 1fr;
	}

	.feature-canvas {
		height: 380px;
		transform: scale(0.8);
	}

	.platform-node {
		width: 170px;
		padding: 10px 12px;
	}

	.platform-node b {
		font-size: 13px;
	}

	.platform-node small {
		font-size: 9px;
	}

	.addon-card {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.addon-pricing {
		text-align: left;
	}

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

	.footer-bottom {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.orbit-glow::after {
		animation: none;
	}
}

/* ==========================================================================
   Subscription & Partner Onboarding Flow (Animated, Soft Rounded SaaS UX)
   ========================================================================== */

/* Page base and stage management */
.subscription-page {
	min-height: 100vh;
	position: relative;
}

.subscription-stage {
	display: none;
}

.subscription-stage.active {
	display: block;
	animation: stage-rise 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Hero Section */
.subscription-hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 70px;
	align-items: center;
	padding-top: 150px;
	padding-bottom: 70px;
	position: relative;
	z-index: 1;
}

.subscription-hero-copy h1,
.checkout-heading h1,
.success-shell h1 {
	font-family: var(--font-display);
	font-size: clamp(40px, 4.8vw, 64px);
	line-height: 1.08;
	letter-spacing: -1.5px;
	margin: 14px 0 20px;
}

.subscription-hero-copy h1 em,
.checkout-heading h1 em,
.subscription-builder-head h2 em {
	font-family: var(--font-serif);
	font-weight: 400;
	font-style: italic;
	color: var(--brand-blue);
}

.subscription-hero-copy > p:not(.section-kicker),
.checkout-heading > p:last-child {
	max-width: 590px;
	color: var(--text-muted);
	font-size: 17px;
	line-height: 1.65;
}

.subscription-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.subscription-proof span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	background: var(--bg-pill);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-full);
	color: var(--brand-blue);
	font-size: 12px;
	font-weight: 700;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.subscription-proof span:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px var(--brand-blue-glow);
}

/* Hero Live Panel */
.subscription-hero-panel {
	position: relative;
	min-height: 420px;
	padding: 34px;
	background: var(--bg-dark-section);
	color: #ffffff;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
	box-shadow: var(--card-shadow-hover);
}

.subscription-hero-panel::before {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	right: -100px;
	bottom: -120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(254, 189, 48, 0.28), transparent 70%);
	pointer-events: none;
}

.subscription-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	letter-spacing: 1.2px;
	font-weight: 800;
	color: var(--brand-gold);
}

.subscription-panel-top .mini-brand b {
	font-family: var(--font-serif);
	font-weight: 400;
	color: var(--brand-gold);
}

.subscription-credit-orbit {
	width: 130px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: 2px solid var(--brand-gold);
	border-radius: 50%;
	margin: 50px 0 25px;
	position: relative;
	background: rgba(254, 189, 48, 0.08);
	box-shadow: 0 0 35px var(--brand-gold-glow);
	animation: float-soft 4.5s ease-in-out infinite;
}

.subscription-credit-orbit::after {
	content: "";
	position: absolute;
	inset: -12px;
	border: 1.5px dashed rgba(254, 189, 48, 0.45);
	border-radius: 50%;
	animation: orbit-spin 20s linear infinite;
}

.subscription-credit-orbit strong {
	font-family: var(--font-display);
	font-size: 38px;
	font-weight: 800;
	color: var(--brand-gold);
}

.subscription-credit-orbit small {
	font-size: 10px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #dbe7fb;
	font-weight: 700;
}

.subscription-panel-label {
	position: relative;
	color: var(--brand-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.subscription-hero-panel h2 {
	position: relative;
	max-width: 440px;
	font-family: var(--font-display);
	font-size: 26px;
	line-height: 1.25;
	margin: 0 0 20px;
	color: #ffffff;
}

.subscription-panel-list {
	position: relative;
	display: grid;
	gap: 10px;
	color: #dbe7fb;
	font-size: 13px;
}

.subscription-panel-list span {
	display: flex;
	align-items: center;
	gap: 10px;
}

.subscription-panel-list span::before {
	content: "✓";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(254, 189, 48, 0.2);
	color: var(--brand-gold);
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
}

/* Builder / Tier Section */
.subscription-builder {
	padding-top: 40px;
	padding-bottom: 110px;
	position: relative;
	z-index: 1;
}

.subscription-builder-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.subscription-builder-head h2,
.checkout-section-heading h2,
.final-agreement-section h2 {
	font-family: var(--font-display);
	font-size: clamp(30px, 3.8vw, 48px);
	line-height: 1.1;
	letter-spacing: -1px;
	margin-top: 8px;
}

.plan-guide-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: 1.5px solid var(--border-strong);
	border-radius: 14px;
	background: var(--bg-surface);
	color: var(--text-main);
	padding: 11px 18px;
	font: inherit;
	cursor: pointer;
	box-shadow: var(--card-shadow);
	transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.plan-guide-button i {
	font-size: 20px;
	color: var(--brand-blue);
	animation: float-soft 3s ease-in-out infinite;
}

.plan-guide-button strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	text-align: left;
}

.plan-guide-button span {
	display: block;
	color: var(--brand-blue);
	font-size: 11px;
	font-weight: 700;
	text-align: left;
}

.plan-guide-button:hover {
	transform: translateY(-2px);
	border-color: var(--brand-blue);
	box-shadow: var(--card-shadow-hover);
}

/* Billing switch */
.billing-switch {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 28px 0 16px;
	font-size: 13.5px;
	font-weight: 800;
	color: var(--text-muted);
}

.billing-switch > span.active {
	color: var(--brand-blue);
}

.duration-control {
	position: relative;
	width: 52px;
	height: 30px;
	border-radius: 9999px;
	background: var(--brand-blue);
	padding: 3px;
	cursor: pointer;
	box-shadow: 0 4px 14px var(--brand-blue-glow);
	transition: background-color var(--transition-fast);
}

.duration-control input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.duration-control span {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: transform var(--transition-spring);
}

.duration-control input:checked + span {
	transform: translateX(22px);
}

.subscription-offer-note {
	max-width: 680px;
	margin: 0 auto 34px;
	padding: 12px 18px;
	background: var(--brand-gold-bg);
	border: 1px solid var(--brand-gold);
	border-radius: 14px;
	color: var(--brand-gold-text);
	font-size: 12.5px;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 14px var(--brand-gold-glow);
	animation: pulse-glow 3.5s ease-in-out infinite;
}

/* Tier cards 4-column grid */
.subscription-tier-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.tier-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 26px 22px;
	border: 1.5px solid var(--border-card);
	border-radius: 18px;
	background: var(--bg-card);
	box-shadow: var(--card-shadow);
	cursor: pointer;
	transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
	animation: stage-rise 0.5s ease-out both;
}

.tier-card:nth-child(2) { animation-delay: 0.08s; }
.tier-card:nth-child(3) { animation-delay: 0.16s; }
.tier-card:nth-child(4) { animation-delay: 0.24s; }

.tier-card:hover {
	transform: translateY(-8px) scale(1.015);
	border-color: var(--brand-blue);
	box-shadow: var(--card-shadow-hover), 0 0 30px var(--brand-blue-glow);
}

.tier-card.selected {
	border-color: var(--brand-blue);
	border-width: 2px;
	box-shadow: 0 0 0 4px var(--brand-blue-glow), var(--card-shadow-hover);
}

.tier-card.selected::before {
	content: "Selected";
	position: absolute;
	right: 14px;
	top: 14px;
	padding: 4px 10px;
	background: var(--brand-blue);
	color: #ffffff;
	border-radius: var(--radius-full);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.tier-card.featured {
	border-color: var(--brand-gold);
	background: linear-gradient(180deg, var(--brand-gold-bg) 0%, var(--bg-card) 32%);
}

.featured-flag {
	position: absolute;
	right: 14px;
	top: -12px;
	padding: 5px 12px;
	background: var(--brand-gold);
	color: var(--brand-blue-deep);
	border-radius: var(--radius-full);
	font-size: 11px;
	font-weight: 800;
	box-shadow: 0 4px 12px var(--brand-gold-glow);
}

.tier-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	font-weight: 800;
	color: var(--brand-blue);
	margin-bottom: 8px;
}

.tier-card-top p {
	color: var(--text-subtle);
	font-size: 11px;
	font-weight: 600;
	margin: 0;
}

.tier-card h3 {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 800;
	margin: 8px 0 10px;
}

.tier-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 6px;
}

.tier-price > span {
	font-size: 17px;
	font-weight: 800;
	color: var(--text-main);
}

.tier-price strong {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	color: var(--text-main);
}

.tier-price small {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 600;
}

.tier-price-custom strong {
	font-size: 26px;
	color: var(--brand-blue);
}

.tier-credit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 6px 0 20px;
	padding: 4px 10px;
	background: var(--brand-gold-bg);
	border: 1px solid rgba(254, 189, 48, 0.4);
	border-radius: var(--radius-full);
	color: var(--brand-gold-text);
	font-size: 11.5px;
	font-weight: 800;
	width: fit-content;
}

.tier-card ul {
	display: grid;
	gap: 10px;
	list-style: none;
	color: var(--text-muted);
	font-size: 12.5px;
	line-height: 1.4;
	margin-bottom: 24px;
	padding: 0;
}

.tier-card li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.tier-card li::before {
	content: "✓";
	color: var(--brand-blue);
	font-weight: 800;
	font-size: 12px;
}

.tier-select-label {
	margin-top: auto;
	padding: 11px 14px;
	border-radius: 10px;
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border-subtle);
	color: var(--brand-blue);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.tier-card:hover .tier-select-label,
.tier-card.selected .tier-select-label {
	background: var(--brand-blue);
	color: #ffffff;
	border-color: var(--brand-blue);
	transform: translateY(-1px);
}

/* Step 1 Bottom Action Row */
.subscription-next-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 36px;
	padding: 24px 28px;
	background: var(--bg-card);
	border: 1.5px solid var(--border-card);
	border-radius: 18px;
	box-shadow: var(--card-shadow);
}

.subscription-next-row strong {
	display: block;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
}

.subscription-next-row span {
	display: block;
	color: var(--text-muted);
	font-size: 13px;
	margin-top: 2px;
}

.subscription-proceed {
	border-radius: 12px;
	padding: 13px 28px;
	font-size: 14px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* ==========================================================================
   Checkout & Details Stage (Step 4)
   ========================================================================== */
.checkout-shell {
	padding-top: 140px;
	padding-bottom: 110px;
	position: relative;
	z-index: 1;
}

.checkout-heading {
	max-width: 720px;
	margin-bottom: 38px;
}

.back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	background: transparent;
	color: var(--brand-blue);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	padding: 0 0 12px;
	transition: transform var(--transition-fast);
}

.back-button:hover {
	transform: translateX(-3px);
}

.checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 28px;
	align-items: start;
}

.checkout-form-wrap,
.checkout-summary {
	padding: 30px;
	background: var(--bg-card);
	border: 1.5px solid var(--border-card);
	border-radius: 20px;
	box-shadow: var(--card-shadow);
}

.checkout-section-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 20px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--border-subtle);
}

.checkout-section-heading > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	background: var(--brand-blue);
	color: #ffffff;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 800;
}

.checkout-section-heading h2 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	margin: 0;
}

.checkout-section-heading p {
	color: var(--text-muted);
	font-size: 12.5px;
	margin: 2px 0 0;
}

.subscription-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.subscription-field {
	display: grid;
	gap: 7px;
	color: var(--text-main);
	font-size: 12.5px;
	font-weight: 700;
}

.subscription-field input,
.subscription-field select,
.subscription-field textarea {
	width: 100%;
	border: 1.5px solid var(--border-strong);
	border-radius: 10px;
	background: var(--bg-surface-subtle);
	color: var(--text-main);
	padding: 12px 14px;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	outline: none;
	resize: vertical;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.subscription-field input:focus,
.subscription-field select:focus,
.subscription-field textarea:focus {
	background: var(--bg-surface);
	border-color: var(--brand-blue);
	box-shadow: 0 0 0 3.5px var(--brand-blue-glow);
}

.field-wide {
	grid-column: 1 / -1;
}

/* Sticky Checkout Summary Card */
.checkout-summary {
	position: sticky;
	top: 96px;
}

.summary-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--brand-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.summary-plan {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 0 18px;
	border-bottom: 1px solid var(--border-subtle);
}

.summary-plan h2 {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 800;
	margin: 0;
}

.summary-plan span {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 700;
}

.summary-rows {
	padding: 12px 0;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	color: var(--text-muted);
	font-size: 13px;
	border-bottom: 1px solid var(--border-subtle);
}

.summary-row span:last-child {
	color: var(--text-main);
	font-weight: 800;
}

.summary-total-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 8px;
	padding-top: 18px;
	border-top: 2px solid var(--brand-gold);
}

.summary-total-row span {
	font-size: 13px;
	font-weight: 800;
	color: var(--text-main);
}

.summary-total-row strong {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 800;
	color: var(--brand-blue);
}

.summary-assurance {
	margin: 18px 0;
	color: var(--text-muted);
	font-size: 11.5px;
	line-height: 1.55;
	display: flex;
	align-items: flex-start;
	gap: 6px;
}

.summary-assurance i {
	color: var(--success-green);
	margin-top: 2px;
}

.agreement-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	color: var(--brand-blue);
	font: inherit;
	font-size: 12.5px;
	font-weight: 800;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
}

.checkout-pay {
	width: 100%;
	justify-content: center;
	margin-top: 20px;
	border-radius: 12px;
	padding: 14px;
	font-size: 14px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.checkout-admin {
	display: none !important;
}

.payment-status-msg {
	display: none;
	text-align: center;
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(21, 87, 214, 0.1);
	color: var(--brand-blue);
	font-size: 12.5px;
	font-weight: 700;
}

/* ==========================================================================
   Success Stage (Step 5)
   ========================================================================== */
.success-shell {
	max-width: 900px;
	padding-top: 150px;
	padding-bottom: 90px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.success-shell .status-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: var(--success-green-bg);
	border: 2px solid var(--success-green);
	color: var(--success-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
	animation: success-bounce 0.8s ease-out both;
}

.success-shell h1 {
	font-size: clamp(38px, 5vw, 56px);
}

.success-shell > p:not(.section-kicker) {
	max-width: 620px;
	margin: 0 auto 30px;
	color: var(--text-muted);
	font-size: 16.5px;
	line-height: 1.6;
}

.success-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 0 0 55px;
}

.success-actions .button {
	border-radius: 12px;
	padding: 13px 26px;
	font-size: 14px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.final-agreement-section {
	text-align: left;
	padding: 32px;
	background: var(--bg-card);
	border: 1.5px solid var(--border-card);
	border-radius: 20px;
	box-shadow: var(--card-shadow);
}

.final-agreement-section > div:first-child p {
	color: var(--text-muted);
	font-size: 13px;
	margin-top: 2px;
}

.agreement-preview {
	max-height: 420px;
	margin-top: 22px;
	padding: 24px;
	overflow-y: auto;
	background: #ffffff;
	color: #17233a;
	border: 1px solid var(--border-strong);
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.65;
	text-align: left;
}

.agreement-preview .annexure-table {
	width: 100%;
	margin: 18px 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	overflow: hidden;
}

.agreement-preview .annexure-table td {
	padding: 10px 14px;
	border-bottom: 1px solid #e2e8f0;
	border-right: 1px solid #e2e8f0;
}

.agreement-preview .annexure-table td:first-child {
	background: #f8fafc;
	font-weight: 700;
	width: 40%;
	color: #475569;
}

/* ==========================================================================
   Modals (Quiz, Agreement, Already Active)
   ========================================================================== */
.subscription-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	inset: 0;
	padding: 24px;
	align-items: center;
	justify-content: center;
	background: rgba(3, 10, 23, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.modal-surface {
	position: relative;
	width: min(100%, 560px);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	padding: 34px;
	background: var(--bg-surface);
	border: 1px solid var(--border-card);
	border-radius: 24px;
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
	animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.agreement-surface {
	width: min(100%, 860px);
}

.modal-surface h2 {
	font-family: var(--font-display);
	font-size: 26px;
	line-height: 1.25;
	margin: 6px 0 16px;
}

.modal-close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--border-strong);
	background: var(--bg-surface-subtle);
	color: var(--text-main);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 15px;
	transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.modal-close:hover {
	transform: scale(1.08);
	background: var(--bg-pill);
	color: var(--brand-blue);
}

.quiz-question {
	display: none;
}

.quiz-question.active {
	display: block;
	animation: stage-rise 0.35s ease-out both;
}

.quiz-options {
	display: grid;
	gap: 12px;
	margin-top: 22px;
}

.quiz-option {
	width: 100%;
	border: 1.5px solid var(--border-strong);
	border-radius: 14px;
	background: var(--bg-surface-subtle);
	color: var(--text-main);
	padding: 14px 18px;
	text-align: left;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.quiz-option i {
	font-size: 18px;
	color: var(--brand-blue);
}

.quiz-option:hover {
	transform: translateX(6px);
	border-color: var(--brand-blue);
	background: var(--bg-pill);
}

.recommendation-card {
	margin: 20px 0;
	padding: 22px;
	background: var(--brand-gold-bg);
	border: 1.5px solid var(--brand-gold);
	border-radius: 16px;
}

.recommendation-card strong {
	display: block;
	font-family: var(--font-display);
	font-size: 26px;
	color: var(--brand-blue);
}

.recommendation-card p {
	margin-top: 6px;
	color: var(--text-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.quiz-apply {
	width: 100%;
	justify-content: center;
	border-radius: 12px;
	padding: 13px;
	font-size: 14px;
	font-weight: 800;
}

.subscriber-surface {
	text-align: center;
}

.sub-active-badge {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--bg-pill);
	border: 2px solid var(--brand-blue);
	color: var(--brand-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 0 auto 16px;
}

.subscriber-surface > p:not(.section-kicker) {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 22px;
	line-height: 1.6;
}

.modal-text-button {
	display: block;
	margin: 14px auto 0;
	border: 0;
	background: transparent;
	color: var(--brand-blue);
	font: inherit;
	font-size: 12.5px;
	font-weight: 800;
	cursor: pointer;
	text-decoration: underline;
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes stage-rise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes modal-pop {
	0% {
		opacity: 0;
		transform: scale(0.92) translateY(10px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes success-bounce {
	0% {
		transform: scale(0.3);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	70% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* ==========================================================================
   Responsive Breakpoints & Mobile UX
   ========================================================================== */
@media (max-width: 900px) {
	.subscription-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-top: 120px;
	}

	.subscription-hero-panel {
		min-height: 360px;
	}

	.subscription-tier-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.checkout-layout {
		grid-template-columns: 1fr;
	}

	.checkout-summary {
		position: static;
	}

	.subscription-builder {
		padding-top: 30px;
	}
}

@media (max-width: 640px) {
	.subscription-hero,
	.subscription-builder,
	.checkout-shell,
	.success-shell {
		padding-left: 18px;
		padding-right: 18px;
	}

	.subscription-hero {
		padding-top: 105px;
		padding-bottom: 35px;
	}

	.subscription-hero-copy h1,
	.checkout-heading h1,
	.success-shell h1 {
		font-size: 36px;
		letter-spacing: -1px;
	}

	.subscription-hero-copy > p:not(.section-kicker),
	.checkout-heading > p:last-child {
		font-size: 15px;
	}

	.subscription-hero-panel {
		min-height: 320px;
		padding: 24px;
	}

	.subscription-credit-orbit {
		margin: 30px 0 20px;
		width: 110px;
		height: 110px;
	}

	.subscription-hero-panel h2 {
		font-size: 22px;
	}

	.subscription-builder-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		margin-bottom: 20px;
	}

	.plan-guide-button {
		width: 100%;
		justify-content: space-between;
	}

	.plan-guide-button strong,
	.plan-guide-button span {
		text-align: right;
	}

	.billing-switch {
		font-size: 12px;
		gap: 10px;
	}

	/* Smooth Horizontal Swipe Rail for Tier Cards on Mobile */
	.subscription-tier-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		margin: 0 -18px;
		padding: 10px 18px 24px;
		scroll-padding: 18px;
	}

	.subscription-tier-grid::-webkit-scrollbar {
		display: none;
	}

	.tier-card {
		min-width: 280px;
		max-width: 320px;
		flex: 0 0 85%;
		scroll-snap-align: center;
		border-radius: 16px;
	}

	/* Sticky Mobile Action Bar */
	.subscription-next-row {
		position: sticky;
		bottom: 0;
		z-index: 50;
		margin: 10px -18px 0;
		padding: 14px 18px;
		background: var(--bg-surface);
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -10px 25px rgba(11, 29, 58, 0.12);
	}

	.subscription-next-row > div {
		display: none;
	}

	.subscription-proceed {
		width: 100%;
		justify-content: center;
		padding: 14px;
	}

	.checkout-shell {
		padding-top: 105px;
		padding-bottom: 70px;
	}

	.checkout-heading {
		margin-bottom: 24px;
	}

	.checkout-form-wrap,
	.checkout-summary,
	.final-agreement-section {
		padding: 20px 16px;
		border-radius: 16px;
	}

	.subscription-form-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.field-wide {
		grid-column: auto;
	}

	.checkout-summary {
		margin-bottom: env(safe-area-inset-bottom, 20px);
	}

	.agreement-preview {
		padding: 16px;
		font-size: 12px;
	}

	.subscription-modal {
		padding: 14px;
	}

	.modal-surface {
		padding: 24px 18px;
		border-radius: 20px;
	}

	.modal-surface h2 {
		font-size: 22px;
	}

	.success-actions {
		flex-direction: column;
		gap: 10px;
	}

	.success-actions .button {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.subscription-page *,
	.subscription-page *::before,
	.subscription-page *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

