/* ==========================================================================
   Portal — Light Professional Theme
   Gradient accents from consultation page: #60a5fa → #a78bfa → #f472b6
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
	--portal-bg: #ffffff;
	--portal-bg-soft: #f8fafc;
	--portal-bg-accent: #f5f3ff;
	--portal-bg-card: #ffffff;
	--portal-border: #e5e7eb;
	--portal-border-hover: #d1d5db;
	--portal-text: #1f2937;
	--portal-text-secondary: #4b5563;
	--portal-text-muted: #6b7280;
	--portal-text-subtle: #9ca3af;
	--portal-accent: #6366f1;
	--portal-accent-primary: #6366f1;
	--portal-accent-primary-dark: #4f46e5;
	--portal-accent-blue: #60a5fa;
	--portal-accent-purple: #a78bfa;
	--portal-accent-pink: #f472b6;
	--portal-accent-web3: #7c3aed;
	--portal-accent-ai: #db2777;
	--portal-accent-deeptech: #059669;
	--portal-gradient-text: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
	--portal-gradient-btn: linear-gradient(135deg, #6366f1, #8b5cf6);
	--portal-gradient-hero: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 40%, #fdf2f8 100%);
	--portal-radius: 20px;
	--portal-radius-sm: 14px;
	--portal-radius-xs: 10px;
	--portal-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
	--portal-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
	--portal-container: 1200px;
	--portal-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
	--portal-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	--portal-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ---------- Base ---------- */
.page-portal {
	font-family: 'Noto Sans JP', 'Inter', sans-serif;
	font-weight: 400;
	background: var(--portal-bg);
	color: var(--portal-text);
	line-height: 1.8;
	overflow-x: hidden;
}

.page-portal *,
.page-portal *::before,
.page-portal *::after {
	box-sizing: border-box;
}

.page-portal .site-header,
.page-portal .floating-nav,
.page-portal .back-to-top {
	display: none !important;
}

/* ---------- Skip Link ---------- */
.portal-skip-link {
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	padding: 12px 24px;
	background: var(--portal-accent-primary);
	color: #fff;
	font-family: 'Sora', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 0 0 8px 8px;
	transition: top 0.2s ease;
}

.portal-skip-link:focus {
	top: 0;
}

/* ---------- Subtle Background Gradient ---------- */
.aurora-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--portal-bg);
}

/* ---------- Noise Overlay - hidden in light mode ---------- */
.noise-overlay {
	display: none;
}

/* ---------- Header ---------- */
.portal-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 2rem;
	padding-top: env(safe-area-inset-top, 0px);
	padding-left: max(2rem, env(safe-area-inset-left, 0px));
	padding-right: max(2rem, env(safe-area-inset-right, 0px));
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--portal-border);
}

.portal-header.is-scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--portal-shadow-sm);
}

.portal-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--portal-container);
	margin: 0 auto;
	height: 68px;
}

.portal-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--portal-text);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.portal-header__logo-gradient {
	background: var(--portal-gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.portal-header__nav {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.portal-header__nav-link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--portal-text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	padding-bottom: 2px;
}

.portal-header__nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--portal-gradient-text);
	transition: width 0.3s ease;
}

.portal-header__nav-link:hover {
	color: var(--portal-text);
}

.portal-header__nav-link:hover::after {
	width: 100%;
}

.portal-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.portal-header__link {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--portal-text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.portal-header__link:hover {
	color: var(--portal-accent-primary);
}

.portal-header__cta {
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.625rem 1.5rem;
	background: var(--portal-gradient-btn);
	color: #fff;
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.portal-header__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
	color: #fff;
}

.portal-header__menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.portal-header__menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--portal-text);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.portal-header__menu-btn.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.portal-header__menu-btn.is-active span:nth-child(2) {
	opacity: 0;
}

.portal-header__menu-btn.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Menu ---------- */
.portal-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
	background: var(--portal-bg);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.portal-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
}

.portal-mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.portal-mobile-menu__nav a {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--portal-text);
	text-decoration: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.portal-mobile-menu.is-open .portal-mobile-menu__nav a {
	opacity: 1;
	transform: translateY(0);
}

.portal-mobile-menu.is-open .portal-mobile-menu__nav a:nth-child(1) { transition-delay: 0.1s; }
.portal-mobile-menu.is-open .portal-mobile-menu__nav a:nth-child(2) { transition-delay: 0.15s; }
.portal-mobile-menu.is-open .portal-mobile-menu__nav a:nth-child(3) { transition-delay: 0.2s; }
.portal-mobile-menu.is-open .portal-mobile-menu__nav a:nth-child(4) { transition-delay: 0.25s; }
.portal-mobile-menu.is-open .portal-mobile-menu__nav a:nth-child(5) { transition-delay: 0.3s; }
.portal-mobile-menu.is-open .portal-mobile-menu__nav a:nth-child(6) { transition-delay: 0.35s; }

.portal-mobile-menu__nav a:hover {
	color: var(--portal-accent-primary);
}

.portal-mobile-menu__cta {
	font-size: 1rem;
	font-weight: 600;
	padding: 16px 32px;
	color: #fff;
	background: var(--portal-gradient-btn);
	border-radius: 100px;
	text-decoration: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.portal-mobile-menu.is-open .portal-mobile-menu__cta {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Page Identifier ---------- */
.portal-header__page-id {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--portal-text-muted);
	letter-spacing: 0.02em;
	margin-left: 4px;
	white-space: nowrap;
}

/* ---------- Active Nav State ---------- */
.portal-header__nav-link.is-current {
	color: var(--portal-text);
}

.portal-header__nav-link.is-current::after {
	width: 100%;
	background: var(--portal-gradient-text);
}

/* ---------- Header Dropdown (in nav) ---------- */
.portal-header__dropdown {
	position: relative;
}

.portal-header__dropdown-trigger {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--portal-text-secondary);
	padding: 0;
	padding-bottom: 2px;
	transition: color 0.3s ease;
}

.portal-header__dropdown-trigger:hover {
	color: var(--portal-text);
}

.portal-header__dropdown-arrow {
	font-size: 0.55rem;
	transition: transform 0.2s ease;
}

.portal-header__dropdown.is-open .portal-header__dropdown-arrow {
	transform: rotate(180deg);
}

.portal-header__dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(-4px);
	min-width: 200px;
	background: var(--portal-bg-card);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius-xs);
	box-shadow: var(--portal-shadow-lg);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 100;
}

.portal-header__dropdown.is-open .portal-header__dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.portal-header__dropdown-item {
	display: block;
	width: 100%;
	padding: 10px 14px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--portal-text-secondary);
	text-decoration: none;
	background: none;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-align: left;
	transition: background 0.15s ease, color 0.15s ease;
	font-family: inherit;
}

.portal-header__dropdown-item:hover {
	background: var(--portal-bg-soft);
	color: var(--portal-text);
}

.portal-header__dropdown-item.is-active {
	color: var(--portal-accent-primary);
	background: var(--portal-bg-accent);
}

/* ---------- Header Search ---------- */
.portal-header__search {
	display: flex;
	align-items: center;
	position: relative;
}

.portal-header__search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.portal-header__search-icon {
	position: absolute;
	left: 10px;
	color: var(--portal-text-muted);
	pointer-events: none;
}

.portal-header__search-input {
	width: 180px;
	padding: 6px 12px 6px 32px;
	font-size: 0.8rem;
	font-family: inherit;
	color: var(--portal-text);
	background: var(--portal-bg-soft);
	border: 1px solid var(--portal-border);
	border-radius: 100px;
	outline: 2px solid transparent;
	transition: border-color 0.2s ease, width 0.3s ease, box-shadow 0.2s ease;
}

.portal-header__search-input::placeholder {
	color: var(--portal-text-subtle);
}

.portal-header__search-input:focus {
	width: 220px;
	border-color: var(--portal-accent-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ---------- Mobile Menu: Search ---------- */
.portal-mobile-menu__search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	max-width: 360px;
	padding: 10px 16px;
	background: var(--portal-bg-soft);
	border: 1px solid var(--portal-border);
	border-radius: 100px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.portal-mobile-menu.is-open .portal-mobile-menu__search {
	opacity: 1;
	transform: translateY(0);
}

.portal-mobile-menu__search svg {
	flex-shrink: 0;
	color: var(--portal-text-muted);
}

.portal-mobile-menu__search input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 1rem;
	font-family: inherit;
	color: var(--portal-text);
	outline: 2px solid transparent;
}

.portal-mobile-menu__search input::placeholder {
	color: var(--portal-text-subtle);
}

/* ---------- Mobile Menu: Filter ---------- */
.portal-mobile-menu__filter {
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s;
}

.portal-mobile-menu.is-open .portal-mobile-menu__filter {
	opacity: 1;
	transform: translateY(0);
}

.portal-mobile-menu__filter-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--portal-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 12px;
}

.portal-mobile-menu__filter-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.portal-mobile-menu__filter-item {
	padding: 8px 16px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--portal-text-secondary);
	background: var(--portal-bg-soft);
	border: 1px solid var(--portal-border);
	border-radius: 100px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.portal-mobile-menu__filter-item:hover {
	border-color: var(--portal-accent-primary);
	color: var(--portal-accent-primary);
}

.portal-mobile-menu__filter-item.is-active {
	background: var(--portal-accent-primary);
	border-color: var(--portal-accent-primary);
	color: #fff;
}

/* ---------- Unified Header Responsive ---------- */
@media (max-width: 1100px) {
	.portal-header__search-input {
		width: 140px;
	}

	.portal-header__search-input:focus {
		width: 180px;
	}
}

@media (max-width: 768px) {
	.portal-header__search,
	.portal-header__dropdown {
		display: none;
	}

	.portal-header__page-id {
		font-size: 0.7rem;
	}
}

/* ---------- Main ---------- */
.portal-main,
.page-portal .site-main {
	position: relative;
	z-index: 1;
	padding-top: 68px; /* fixed header の高さ分 */
}

/* ---------- Hero ---------- */
.portal-hero {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem 3rem;
	text-align: center;
	background: var(--portal-gradient-hero);
	position: relative;
	overflow: hidden;
}

.portal-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.portal-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.portal-hero__content {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.portal-hero__label {
	font-family: 'Sora', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--portal-accent-primary);
	margin-bottom: 1.25rem;
}

.portal-hero__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 1.25rem;
	letter-spacing: -0.03em;
	color: var(--portal-text);
}

.portal-hero__title-gradient {
	background: var(--portal-gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.portal-hero__subtitle {
	font-size: clamp(0.9375rem, 2.5vw, 1.05rem);
	color: var(--portal-text-secondary);
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.9;
}

.portal-hero__cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.portal-hero__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.8125rem;
	color: var(--portal-text-muted);
}

.portal-hero__trust-number {
	font-weight: 600;
	color: var(--portal-text-secondary);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.btn-primary svg,
.btn-secondary svg {
	flex-shrink: 0;
	display: block;
	width: 18px;
	height: 18px;
}

.btn-primary {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.875rem 2.25rem;
	background: var(--portal-gradient-btn);
	color: #fff;
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35);
	color: #fff;
}

.btn-primary:active {
	transform: scale(0.98);
}

.btn-primary--lg {
	padding: 1rem 2.5rem;
	font-size: 1rem;
}

.btn-secondary {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.875rem 2.25rem;
	background: transparent;
	border: 1.5px solid var(--portal-border);
	color: var(--portal-text);
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-secondary:hover {
	background: var(--portal-bg-soft);
	border-color: var(--portal-accent-primary);
	color: var(--portal-accent-primary);
	transform: translateY(-2px);
}

.btn-secondary:active {
	transform: scale(0.98);
}

.btn-secondary--company {
	border-color: var(--portal-accent-deeptech);
	color: var(--portal-accent-deeptech);
}

.btn-secondary--company:hover {
	background: rgba(5, 150, 105, 0.06);
	border-color: var(--portal-accent-deeptech);
	color: var(--portal-accent-deeptech);
}

/* ---------- Trust Indicators ---------- */
.portal-trust {
	padding: 0 2rem;
	margin-top: 3rem;
	background: var(--portal-bg);
}

.portal-trust__inner {
	max-width: var(--portal-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--portal-bg);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius);
	overflow: hidden;
	box-shadow: var(--portal-shadow);
}

.portal-trust__item {
	text-align: center;
	padding: 1.75rem 1rem;
	border-right: 1px solid var(--portal-border);
}

.portal-trust__item:last-child {
	border-right: none;
}

.portal-trust__number {
	font-family: 'Outfit', sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	background: var(--portal-gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.375rem;
}

.portal-trust__label {
	font-size: 0.8rem;
	color: var(--portal-text-muted);
	font-weight: 500;
}

/* ---------- Section Header ---------- */
.page-portal .section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.page-portal .section-header--left {
	text-align: left;
	max-width: var(--portal-container);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.page-portal .section-label {
	font-family: 'Sora', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--portal-accent-primary);
	margin-bottom: 0.75rem;
}

.page-portal .section-title {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--portal-text);
}

.section-title__sub {
	display: block;
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--portal-text-muted);
	margin-top: 0.5rem;
	letter-spacing: 0;
}

.page-portal .section-subtitle {
	font-size: 0.95rem;
	color: var(--portal-text-muted);
	margin-top: 0.75rem;
	line-height: 1.7;
}

/* ---------- Link Arrow ---------- */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--portal-accent-primary);
	text-decoration: none;
	transition: color 0.3s ease, gap 0.3s ease;
}

.link-arrow:hover {
	color: var(--portal-accent-primary-dark);
	gap: 12px;
}

.link-arrow svg {
	transition: transform 0.3s var(--portal-ease-out);
}

.link-arrow:hover svg {
	transform: translateX(4px);
}

/* ---------- Services ---------- */
.portal-services {
	padding: 5rem 2rem;
	background: var(--portal-bg);
}

.portal-services__grid {
	max-width: var(--portal-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.service-card {
	background: var(--portal-bg-card);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius);
	padding: 2rem;
	text-decoration: none;
	color: var(--portal-text);
	display: block;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--portal-gradient-text);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(99, 102, 241, 0.3);
	box-shadow: var(--portal-shadow-lg);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card__icon {
	width: 52px;
	height: 52px;
	margin-bottom: 1.25rem;
	background: var(--portal-bg-accent);
	border-radius: var(--portal-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--portal-accent-primary);
}

.service-card__icon svg {
	width: 26px;
	height: 26px;
}

.service-card__title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
	color: var(--portal-text);
}

.service-card__desc {
	font-size: 0.88rem;
	color: var(--portal-text-muted);
	line-height: 1.7;
	margin: 0;
}

.service-card__arrow {
	display: flex;
	align-items: center;
	margin-top: 1rem;
	color: var(--portal-accent-primary);
	transition: transform 0.3s ease;
}

.service-card:hover .service-card__arrow {
	transform: translateX(4px);
}

/* ---------- Interviews (Grid) ---------- */
.portal-interviews {
	padding: 5rem 2rem;
	background: var(--portal-bg-soft);
}

.portal-interviews__header {
	max-width: var(--portal-container);
	margin: 0 auto 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.portal-interviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: var(--portal-container);
	margin: 0 auto;
}

@media (min-width: 640px) {
	.portal-interviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.portal-interviews__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.iv-card-portal {
	background: var(--portal-bg-card);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius);
	padding: 1.75rem;
	text-decoration: none;
	color: var(--portal-text);
	display: block;
	transition: all 0.3s ease;
}

.iv-card-portal:hover {
	transform: translateY(-4px);
	border-color: rgba(99, 102, 241, 0.3);
	box-shadow: var(--portal-shadow-lg);
}

/* Avatar + Badge row */
.iv-card-portal__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
}

.iv-card-portal__avatar {
	width: 48px;
	height: 48px;
	background: var(--portal-gradient-text);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}

.iv-card-portal__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.iv-card-portal__avatar-initial {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: #fff;
}

.iv-card-portal__cat {
	display: inline-block;
	padding: 3px 10px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--portal-accent-web3);
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(124, 58, 237, 0.2);
	border-radius: 100px;
}

.iv-card-portal__cat--ai {
	color: var(--portal-accent-ai);
	background: rgba(219, 39, 119, 0.08);
	border-color: rgba(219, 39, 119, 0.2);
}

.iv-card-portal__cat--deeptech {
	color: var(--portal-accent-deeptech);
	background: rgba(5, 150, 105, 0.08);
	border-color: rgba(5, 150, 105, 0.2);
}

.iv-card-portal__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
	line-height: 1.5;
	letter-spacing: -0.01em;
	color: var(--portal-text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.iv-card-portal__meta {
	font-size: 0.8125rem;
	color: var(--portal-text-muted);
}

/* ---------- Featured Jobs ---------- */
.portal-jobs {
	padding: 5rem 2rem;
	background: var(--portal-bg);
}

.portal-jobs__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	max-width: var(--portal-container, 1200px);
	margin: 0 auto;
}

@media (min-width: 640px) {
	.portal-jobs__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.portal-jobs__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.portal-jobs__cta {
	text-align: center;
	margin-top: 2.5rem;
}

/* ---------- Partners ---------- */
.portal-partners {
	padding: 5rem 2rem;
	background: var(--portal-bg);
	position: relative;
}

/* セクション上部にグラデーションのアクセントライン */
.portal-partners::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(90%, 1200px);
	height: 2px;
	background: linear-gradient(135deg, #6366f1, #a78bfa, #6366f1);
	opacity: 0.35;
	border-radius: 2px;
}

/* ---- パートナーロゴグリッド ---- */
.portal-partners__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	max-width: var(--portal-container);
	margin: 0 auto 48px;
}

.portal-partners__item {
	flex-shrink: 0;
	width: 200px;
	aspect-ratio: 16 / 9;
	background: #fff;
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius-sm, 12px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	text-decoration: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.portal-partners__item:hover {
	border-color: rgba(99, 102, 241, 0.4);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
	transform: scale(1.05);
}

.portal-partners__item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ---- 採用中バッジ ---- */
.portal-partners__item--hiring {
	position: relative;
	border-color: rgba(99, 102, 241, 0.3);
}

.portal-partners__item--hiring:hover {
	border-color: rgba(99, 102, 241, 0.5);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.portal-partners__hiring-badge {
	position: absolute;
	top: -1px;
	right: -1px;
	padding: 2px 10px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
	color: #fff;
	background: var(--portal-accent, #6366f1);
	border-radius: 0 12px 0 8px;
	pointer-events: none;
}

/* ---- CTA ---- */
.portal-partners__cta {
	text-align: center;
	max-width: var(--portal-container);
	margin: 0 auto;
}

.portal-partners__cta-lead {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--portal-text);
	margin: 0 0 4px;
	font-weight: 500;
}

.portal-partners__cta-lead + .portal-partners__cta-btn {
	margin-top: 20px;
}

.portal-partners__cta-btn {
	display: inline-block;
	padding: 18px 52px;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, #6366f1, #a78bfa);
	background-size: 200% auto;
	border: none;
	border-radius: var(--portal-radius-sm, 12px);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s ease;
	cursor: pointer;
	letter-spacing: 0.02em;
}

.portal-partners__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
	background-position: right center;
}

.portal-partners__cta-sub {
	font-size: 0.8rem;
	color: var(--portal-text-muted, #6b7280);
	margin-top: 12px;
}

@media (max-width: 640px) {
	.portal-partners {
		padding: 3rem 1rem;
	}

	.portal-partners__grid {
		gap: 12px;
		margin-bottom: 32px;
	}

	.portal-partners__item {
		width: 140px;
		padding: 10px;
	}

	.portal-partners__hiring-badge {
		padding: 2px 8px;
		font-size: 0.6rem;
	}

	.portal-partners__cta-btn {
		padding: 14px 24px;
		font-size: 0.9rem;
	}
}

/* ---------- Company / About ---------- */
.portal-company {
	padding: 5rem 2rem;
	background: var(--portal-bg-soft);
	position: relative;
	overflow: hidden;
}

.portal-company__shapes-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	display: none;
}

.portal-company__inner {
	max-width: var(--portal-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.portal-company__content h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin: 0 0 1.25rem;
	letter-spacing: -0.02em;
	color: var(--portal-text);
}

.portal-company__content p {
	color: var(--portal-text-secondary);
	margin: 0 0 1rem;
	line-height: 1.9;
	font-size: 0.95rem;
}

.portal-company__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portal-company__shapes {
	position: relative;
	width: 300px;
	height: 300px;
}

.portal-shape {
	position: absolute;
	border-radius: 50%;
	animation: shapeFloat 6s ease-in-out infinite;
}

.portal-shape--1 {
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), transparent);
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.portal-shape--2 {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), transparent);
	top: 50%;
	right: 20%;
	animation-delay: -2s;
}

.portal-shape--3 {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(244, 114, 182, 0.12), transparent);
	bottom: 20%;
	left: 30%;
	animation-delay: -4s;
}

@keyframes shapeFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}

/* ---------- CTA Section ---------- */
.portal-cta {
	padding: 5rem 2rem;
	position: relative;
	overflow: hidden;
	background: var(--portal-bg);
}

.portal-cta__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
	filter: blur(60px);
	pointer-events: none;
}

.portal-cta__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: var(--portal-container);
	margin: 0 auto;
}

@media (min-width: 768px) {
	.portal-cta__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

.portal-cta__card {
	background: var(--portal-bg-card);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius);
	padding: clamp(2rem, 4vw, 3rem);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.portal-cta__card--corporate {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%);
	border-color: rgba(99, 102, 241, 0.15);
}

.portal-cta__label {
	display: inline-block;
	padding: 4px 14px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--portal-accent);
	background: rgba(99, 102, 241, 0.08);
	border-radius: 100px;
	margin: 0 0 1.25rem;
}

.portal-cta__card--corporate .portal-cta__label {
	color: var(--portal-accent-web3, #7c3aed);
	background: rgba(124, 58, 237, 0.08);
}

.portal-cta__title {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 800;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	color: var(--portal-text);
}

.portal-cta__text {
	color: var(--portal-text-secondary);
	margin: 0 0 2rem;
	font-size: 0.9375rem;
	line-height: 1.8;
}

.btn-primary--outline {
	background: transparent;
	border: 2px solid var(--portal-accent);
	color: var(--portal-accent);
}

.btn-primary--outline:hover,
.btn-primary--outline:focus {
	background: var(--portal-accent);
	color: #fff;
}

.btn-primary--outline:active {
	background: var(--portal-accent);
	color: #fff;
	transform: scale(0.98);
}

/* ---------- Footer — now in main.css ---------- */

/* ---------- Hero Subheading ---------- */
.portal-hero__subheading {
	font-size: clamp(0.95rem, 2.5vw, 1.1rem);
	font-weight: 500;
	color: var(--portal-text-secondary);
	margin: 0 auto 0.75rem;
	line-height: 1.7;
}

/* ---------- CTA Notes ---------- */
.portal-hero__cta-note {
	font-size: 0.8125rem;
	color: var(--portal-text-muted);
	margin: 0.5rem 0 0;
	text-align: center;
}

.portal-cta__note {
	font-size: 0.8125rem;
	color: var(--portal-text-muted);
	margin: 0.75rem 0 0;
}

/* ---------- Fade In Animations ---------- */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s var(--portal-ease-out), transform 0.5s var(--portal-ease-out);
	will-change: opacity, transform;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.portal-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portal-company__inner {
		grid-template-columns: 1fr;
	}

	.portal-company__visual {
		order: -1;
	}

	.portal-company__content h2 {
		font-size: 1.4rem;
	}
}


@media (max-width: 768px) {
	.portal-header__nav,
	.portal-header__actions {
		display: none;
	}

	.portal-header__menu-btn {
		display: none;
	}

	.portal-hero {
		padding: calc(2.5rem + env(safe-area-inset-top, 0px)) 1.5rem 2.5rem;
		min-height: auto;
	}

	.portal-hero__title {
		font-size: 1.35rem;
	}

	.portal-hero__subheading {
		font-size: 0.9rem;
	}

	.portal-hero__cta {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 320px;
		text-align: center;
	}

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

	.portal-trust__item {
		border-bottom: 1px solid var(--portal-border);
	}

	.portal-trust__item:nth-child(2n) {
		border-right: none;
	}

	.portal-trust__item:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.portal-services__grid {
		grid-template-columns: 1fr;
	}

	.portal-services,
	.portal-interviews,
	.portal-partners,
	.portal-company,
	.portal-cta {
		padding: 3.5rem 1.5rem;
	}

	/* Company section: shapes as background */
	.portal-company__shapes-bg {
		display: block;
	}

	.portal-company__shapes-bg .portal-shape--1 {
		width: 200px;
		height: 200px;
		top: 10%;
		left: 5%;
	}

	.portal-company__shapes-bg .portal-shape--2 {
		width: 140px;
		height: 140px;
		top: 40%;
		right: 10%;
		left: auto;
	}

	.portal-company__shapes-bg .portal-shape--3 {
		width: 100px;
		height: 100px;
		bottom: 15%;
		left: 25%;
	}

	.portal-company__visual {
		display: none;
	}

	.portal-company__content h2 {
		font-size: 1.25rem;
	}

	/* CTA section heading */
	.portal-cta__title {
		font-size: 1.25rem;
	}

	.portal-interviews__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}

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

	.fade-in {
		opacity: 1;
		transform: none;
	}

	.aurora-bg {
		animation: none;
	}

	.portal-shape {
		animation: none;
	}
}

/* ==========================================================================
   Why Choose Us — 選ばれる理由
   ========================================================================== */
.portal-why-choose {
	padding: 5rem 2rem;
	background: var(--portal-bg-soft);
}

.portal-why-choose__grid {
	max-width: var(--portal-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.portal-reason-card {
	background: var(--portal-bg-card);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius);
	padding: 2.5rem 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.portal-reason-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--portal-gradient-text);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portal-reason-card:hover {
	transform: translateY(-6px);
	border-color: rgba(99, 102, 241, 0.3);
	box-shadow: var(--portal-shadow-lg);
}

.portal-reason-card:hover::before {
	opacity: 1;
}

.portal-reason-card__number {
	font-family: 'Outfit', 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--portal-gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 1.25rem;
}

.portal-reason-card__title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	letter-spacing: -0.01em;
	color: var(--portal-text);
}

.portal-reason-card__desc {
	font-size: 0.9rem;
	color: var(--portal-text-muted);
	line-height: 1.8;
	margin: 0;
}

/* ==========================================================================
   Process — ご利用の流れ
   ========================================================================== */
.portal-process {
	padding: 5rem 2rem;
	background: var(--portal-bg);
}

.portal-process__subtitle {
	font-size: 0.95rem;
	color: var(--portal-text-muted);
	text-align: center;
	margin-top: 0.75rem;
}

.portal-process__timeline {
	max-width: var(--portal-container);
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.portal-step {
	flex: 1;
	text-align: center;
	padding: 0 1.5rem;
	max-width: 260px;
}

.portal-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--portal-gradient-btn);
	color: #fff;
	font-family: 'Outfit', 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.portal-step__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--portal-text);
}

.portal-step__desc {
	font-size: 0.88rem;
	color: var(--portal-text-muted);
	line-height: 1.7;
	margin: 0;
}

.portal-step__connector {
	display: flex;
	align-items: center;
	padding-top: 1.25rem;
	color: var(--portal-text-subtle);
	flex-shrink: 0;
}

/* ==========================================================================
   FAQ — よくある質問
   ========================================================================== */
.portal-faq {
	padding: 5rem 2rem;
	background: var(--portal-bg-soft);
}

.portal-faq__list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.portal-faq__item {
	background: var(--portal-bg-card);
	border: 1px solid var(--portal-border);
	border-radius: var(--portal-radius-sm);
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.portal-faq__item[open] {
	border-color: rgba(99, 102, 241, 0.3);
}

.portal-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--portal-text);
	cursor: pointer;
	list-style: none;
	transition: background 0.2s ease;
}

.portal-faq__question::-webkit-details-marker {
	display: none;
}

.portal-faq__question:hover {
	background: var(--portal-bg-soft);
}

.portal-faq__icon {
	flex-shrink: 0;
	color: var(--portal-text-subtle);
	transition: transform 0.3s ease;
}

.portal-faq__item[open] .portal-faq__icon {
	transform: rotate(45deg);
}

.portal-faq__answer {
	padding: 0 1.5rem 1.25rem;
}

.portal-faq__answer p {
	font-size: 0.9rem;
	color: var(--portal-text-secondary);
	line-height: 1.8;
	margin: 0;
}

/* ==========================================================================
   New Sections — Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.portal-why-choose__grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}

}

@media (max-width: 768px) {
	.portal-why-choose,
	.portal-process,
	.portal-faq {
		padding: 3.5rem 1.5rem;
	}

	.portal-process__timeline {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.portal-step {
		max-width: 100%;
		padding: 1rem 0;
	}

	.portal-step__connector {
		transform: rotate(90deg);
		padding-top: 0;
	}

	.portal-faq__question {
		padding: 1rem 1.25rem;
		font-size: 0.9rem;
	}

	.portal-faq__answer {
		padding: 0 1.25rem 1rem;
	}
}

/* ---------- Dark Mode ---------- */
body.dark-mode .portal-header {
	background: rgba(15, 23, 42, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .portal-header.is-scrolled {
	background: rgba(15, 23, 42, 0.95);
}

body.dark-mode .portal-header__logo {
	color: #f1f5f9;
}

body.dark-mode .portal-header__nav-link {
	color: #94a3b8;
}

body.dark-mode .portal-header__nav-link:hover {
	color: #f1f5f9;
}

body.dark-mode .portal-header__dropdown-menu {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

body.dark-mode .portal-header__dropdown-item {
	color: #cbd5e1;
}

body.dark-mode .portal-header__dropdown-item:hover {
	background: #334155;
	color: #f1f5f9;
}

body.dark-mode .portal-header__dropdown-item.is-active {
	background: rgba(99, 102, 241, 0.15);
	color: #818cf8;
}

body.dark-mode .portal-header__search-input {
	background: #1e293b;
	border-color: rgba(255, 255, 255, 0.1);
	color: #f1f5f9;
}

body.dark-mode .portal-header__link {
	color: #94a3b8;
}

body.dark-mode .portal-header__link:hover {
	color: #818cf8;
}

body.dark-mode .portal-header__menu-btn span {
	background: #f1f5f9;
}

body.dark-mode .portal-mobile-menu {
	background: #0f172a;
}

body.dark-mode .portal-mobile-menu__nav a {
	color: #f1f5f9;
}

body.dark-mode .portal-mobile-menu__nav a:hover {
	color: #818cf8;
}

body.dark-mode .portal-footer {
	background: #0f172a;
	border-top-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .portal-footer__brand {
	color: #f1f5f9;
}

body.dark-mode .portal-footer__desc {
	color: #94a3b8;
}

body.dark-mode .portal-footer__col-title {
	color: #e2e8f0;
}

body.dark-mode .portal-footer__links a {
	color: #94a3b8;
}

body.dark-mode .portal-footer__links a:hover {
	color: #818cf8;
}

body.dark-mode .portal-footer__bottom {
	border-top-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .portal-footer__copy {
	color: #64748b;
}

/* ---------- Print ---------- */
@media print {
	.noise-overlay,
	.aurora-bg,
	.portal-cta__bg,
	.portal-company__visual,
	.portal-company__shapes-bg {
		display: none !important;
	}
}
