/* ============================================
   Blonde LLC - Enhanced Global Styles
   Navy Dark Theme / Premium Corporate
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary-light: #06A4E7;
  --color-primary-mid: #0179C4;
  --color-primary-dark: #022B5F;
  --color-tint: #A5D7E9;
  --color-accent: #38bdf8;
  --color-bg-deep: #0a1628;
  --color-bg-section: #0d1f3c;
  --color-bg-card: rgba(17, 34, 64, 0.7);
  --color-bg-card-solid: #112240;
  --color-bg-card-hover: #1a3158;
  --color-text-primary: #e6f1ff;
  --color-text-secondary: #8892b0;
  --color-text-muted: #5a6a8a;
  --color-white: #ffffff;
  --color-border: rgba(6, 164, 231, 0.12);
  --color-border-hover: rgba(6, 164, 231, 0.35);
  --color-glow: rgba(6, 164, 231, 0.4);
  --gradient-primary: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-mid));
  --gradient-bg: linear-gradient(180deg, #0a1628 0%, #0d1f3c 50%, #091425 100%);
  --gradient-hero: radial-gradient(ellipse at 20% 50%, rgba(6, 164, 231, 0.12) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 20%, rgba(2, 43, 95, 0.3) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 80%, rgba(1, 121, 196, 0.08) 0%, transparent 50%),
                   linear-gradient(160deg, #0a1628 0%, #0d2847 40%, #022B5F 70%, #0a1628 100%);
  --gradient-text: linear-gradient(135deg, var(--color-primary-light), var(--color-tint), var(--color-primary-mid));
  --gradient-card-border: linear-gradient(135deg, rgba(6, 164, 231, 0.3), rgba(2, 43, 95, 0.1), rgba(6, 164, 231, 0.3));
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 20px 60px rgba(6, 164, 231, 0.15);
  --shadow-glow: 0 0 40px rgba(6, 164, 231, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --header-height: 72px;
  --max-width: 1200px;
  --font-family: 'Noto Sans JP', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-primary);
  background: var(--color-bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 10000;
  width: 0%;
  transition: none;
  box-shadow: 0 0 10px var(--color-glow);
}

/* --- Loading Screen --- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-bg-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* --- Custom Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 164, 231, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* --- Typography --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-tint); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p {
  color: var(--color-text-secondary);
  line-height: 1.9;
}

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

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section--alt {
  background: var(--color-bg-section);
}

/* Background pattern overlay */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(6, 164, 231, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateY(-50%);
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  max-width: 640px;
  margin-bottom: 64px;
}

.section__subtitle--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.text-center .section__label::before {
  display: none;
}

.text-center .section__label {
  padding-left: 0;
}

/* --- Wave Dividers --- */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider--top {
  top: -1px;
}

.wave-divider--bottom {
  bottom: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(6, 164, 231, 0.3);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(6, 164, 231, 0.5);
  color: var(--color-white);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary-light);
  border: 1px solid rgba(6, 164, 231, 0.4);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(6, 164, 231, 0.1);
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  transform: translateY(-3px);
}

.btn--sm { padding: 10px 24px; font-size: 0.875rem; }

.btn--lg {
  padding: 18px 52px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Magnetic Button wrapper */
.magnetic-wrap {
  display: inline-block;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition-slow);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

/* Animated gradient border on hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(6, 164, 231, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

/* Card glow effect */
.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 164, 231, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 164, 231, 0.25);
  box-shadow: var(--shadow-card-hover);
}

.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 164, 231, 0.15), rgba(1, 121, 196, 0.08));
  border: 1px solid rgba(6, 164, 231, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--color-primary-light);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.card:hover .card__icon {
  background: linear-gradient(135deg, rgba(6, 164, 231, 0.25), rgba(1, 121, 196, 0.15));
  border-color: rgba(6, 164, 231, 0.3);
  box-shadow: 0 0 20px rgba(6, 164, 231, 0.15);
  transform: scale(1.05);
}

.card__icon svg,
.card__icon i {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card__text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Number indicator on card */
.card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(6, 164, 231, 0.05);
  line-height: 1;
  z-index: 0;
  transition: color var(--transition-slow);
}

.card:hover .card__number {
  color: rgba(6, 164, 231, 0.1);
}

/* --- Stats Counter --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-border);
}

.stat-item:last-child::after {
  display: none;
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat__suffix {
  font-size: 1.25rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* --- Steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 56px;
}

.step:last-child { padding-bottom: 0; }

.step__marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(6, 164, 231, 0.3);
  transition: all var(--transition);
}

.step:hover .step__marker {
  box-shadow: 0 0 40px rgba(6, 164, 231, 0.5);
  transform: scale(1.1);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 64px;
  left: 32px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 64px);
  background: linear-gradient(180deg, var(--color-primary-light), rgba(6, 164, 231, 0.1));
}

.step__content {
  padding-top: 12px;
  flex: 1;
}

.step__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.step:hover .step__card {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.step__title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- Platform Logos --- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.platform-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.platform-item:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.platform-item:hover::before {
  transform: scaleX(1);
}

.platform-item i {
  color: var(--color-primary-light);
}

/* --- FAQ Accordion --- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-bg-card);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.accordion__item:hover {
  border-color: var(--color-border-hover);
}

.accordion__item.is-open {
  border-color: rgba(6, 164, 231, 0.3);
  box-shadow: 0 4px 24px rgba(6, 164, 231, 0.08);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
  gap: 16px;
}

.accordion__trigger:hover { color: var(--color-primary-light); }

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
  transition: transform var(--transition-spring);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__content {
  padding: 0 28px 24px;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.9;
}

/* --- Table --- */
.info-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.info-table tr:hover {
  background: rgba(6, 164, 231, 0.03);
}

.info-table th {
  padding: 20px 28px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary-light);
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
}

.info-table td {
  padding: 20px 28px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 48px;
  background: linear-gradient(135deg, rgba(6, 164, 231, 0.06), rgba(2, 43, 95, 0.15));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 164, 231, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(1, 121, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section__text {
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* --- Callout --- */
.callout {
  background: linear-gradient(135deg, rgba(6, 164, 231, 0.06), rgba(2, 43, 95, 0.15));
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 36px;
  margin: 40px 0;
  backdrop-filter: blur(4px);
}

.callout__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.callout__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
}

/* --- Form --- */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.form-label .required {
  color: #ef4444;
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(17, 34, 64, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(6, 164, 231, 0.1), 0 0 20px rgba(6, 164, 231, 0.1);
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
}

/* --- Recruit Section --- */
.recruit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 44px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.recruit-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.recruit-card__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(6, 164, 231, 0.3);
}

.recruit-card__title {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.recruit-card__list {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.recruit-card__list dt {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 16px;
  margin-bottom: 4px;
  padding-left: 14px;
  border-left: 3px solid var(--color-primary-light);
}

.recruit-card__list dd {
  margin-left: 0;
  padding-left: 14px;
  line-height: 1.8;
}

/* --- Page Hero --- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(6, 164, 231, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--color-bg-deep), transparent);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero__subtitle {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Decorative Elements --- */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.06;
}

.floating-shape--1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary-light);
  top: -100px;
  right: -100px;
  animation: float1 20s ease-in-out infinite;
}

.floating-shape--2 {
  width: 300px;
  height: 300px;
  background: var(--color-primary-mid);
  bottom: -80px;
  left: -80px;
  animation: float2 25s ease-in-out infinite;
}

.floating-shape--3 {
  width: 200px;
  height: 200px;
  background: var(--color-tint);
  top: 40%;
  left: 60%;
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.03); }
  66% { transform: translate(-15px, 25px) scale(0.97); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible,
.fade-in-scale.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left, .fade-in-right, .fade-in-scale,
  .stagger-children > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-shape { animation: none; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section__subtitle { margin-bottom: 48px; }
  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 32px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item::after { display: none; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .step { gap: 20px; }
  .step__marker { width: 52px; height: 52px; font-size: 1.125rem; }
  .step:not(:last-child)::after { left: 26px; top: 52px; height: calc(100% - 52px); }
  .step__card { padding: 24px; }
  .info-table th, .info-table td { display: block; padding: 12px 0; width: 100%; }
  .info-table th { padding-bottom: 4px; }
  .cta-section { padding: 48px 24px; border-radius: var(--radius-md); }
  .recruit-card { padding: 32px 24px; }
  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn--lg { padding: 16px 32px; width: 100%; }
  .platform-grid { grid-template-columns: 1fr; }
}
