/* ===== CSS Variables ===== */
:root {
  --color-tech-blue: #1a4b8c;
  --color-tech-blue-dark: #0d2d54;
  --color-tech-blue-light: #2a6bc4;
  --color-akatsuki: #e67e22;
  --color-akatsuki-gold: #f39c12;
  /* Local theme colors */
  --color-local-green: #2d9a63;
  --color-local-green-dark: #1e7a4a;
  --color-local-green-light: #3db87a;
  /* Student theme colors - Vibrant */
  --color-student-orange: #ff6b00;
  --color-student-orange-dark: #e55a00;
  --color-student-orange-light: #ff8c33;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #111827;

  --font-sans: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', 'Noto Sans JP', sans-serif;
  --font-mincho: 'Shippori Mincho', serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --transition-base: 0.3s ease;
}

/* ===== Scroll Animation (disabled) ===== */
.scroll-animate {
  opacity: 1;
  transform: none;
  transition: none;
}

.scroll-animate--visible {
  opacity: 1;
  transform: none;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-gray-900);
  background-color: #f0f2f5;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 16px;
  left: 24px;
  right: 24px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  transition: var(--transition-base);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-tech-blue);
}

.header__logo img {
  height: 44px;
  width: 44px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
  transition: color var(--transition-base);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-tech-blue);
  transition: width var(--transition-base);
}

.header__nav-link:hover {
  color: var(--color-tech-blue);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn--primary {
  background-color: var(--color-akatsuki);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-akatsuki-gold);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-tech-blue);
  color: var(--color-tech-blue);
}

.btn--outline:hover {
  background-color: var(--color-tech-blue);
  color: var(--color-white);
}

/* Pulse animation for emphasized buttons */
.btn--pulse {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
  font-size: 1.125rem;
  padding: 18px 36px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(230, 126, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-gray-700);
  transition: var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--color-tech-blue);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-tech-blue);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title-accent {
  color: var(--color-tech-blue);
}

.hero__description {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-gray-700);
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mobile logo - hidden on desktop, shown on mobile */
.hero__mobile-logo {
  display: none;
}

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

.hero__logo-image {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.hero__visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero__visual-item {
  background-color: var(--color-white);
  border-radius: 0;
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__visual-item:nth-child(2) {
  transform: translateY(24px);
}

.hero__visual-item:nth-child(5) {
  transform: translateY(24px);
}

.hero__visual-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-tech-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: 1.5rem;
}

.hero__visual-icon--accent {
  background-color: var(--color-akatsuki);
}

.hero__visual-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

/* ===== Section Base ===== */
.section {
  padding: 80px 0;
  margin: 24px;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 0;
  box-shadow: none;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section--gray {
  background-color: #f8f9fa;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.section--blue {
  background-color: var(--color-tech-blue);
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-akatsuki);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section--blue .section__title {
  color: var(--color-white);
}

.section__description {
  font-size: 1.0625rem;
  color: var(--color-gray-500);
  line-height: 1.8;
}

.section--blue .section__description {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Concept Section ===== */
.concept {
  padding: 100px 0;
}

.concept__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept__content {
  max-width: 520px;
}

.concept__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 24px;
  line-height: 1.4;
}

.concept__title-en {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-akatsuki);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.concept__description {
  font-size: 1.0625rem;
  color: var(--color-gray-500);
  line-height: 1.9;
  margin-bottom: 32px;
}

.concept__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.concept__feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--color-tech-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
}

.concept__feature-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gray-700);
  line-height: 1.6;
}

.concept__visual {
  position: relative;
}

.concept__visual-card {
  background-color: var(--color-white);
  border-radius: 0;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.concept__stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.concept__stat {
  text-align: center;
}

.concept__stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-tech-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.concept__stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

/* ===== Device Mockup ===== */
.device-mockup {
  text-align: center;
}

.device-mockup__frame {
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 0;
  padding: 12px 12px 32px;
  box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  display: inline-block;
}

.device-mockup__frame::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: #3a3a3a;
  border-radius: 0;
}

.device-mockup__screen {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 0;
  display: block;
}

.device-mockup__caption {
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.device-mockup__caption a {
  color: var(--color-tech-blue);
  transition: color var(--transition-base);
}

.device-mockup__caption a:hover {
  color: var(--color-akatsuki);
}

/* ===== Services Section ===== */
.services {
  padding: 100px 0;
  background-color: var(--color-gray-50);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 0;
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-tech-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-white);
  font-size: 1.75rem;
}

.service-card:nth-child(2) .service-card__icon {
  background-color: var(--color-akatsuki);
}

.service-card:nth-child(3) .service-card__icon {
  background-color: var(--color-tech-blue-dark);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 16px;
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.8;
}

/* ===== Pitch Deck Section ===== */
.pitch-deck {
  padding: 100px 0;
  background-color: var(--color-gray-50);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  border-bottom: 1px solid var(--color-gray-200);
}

.pitch-deck__viewer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pitch-deck__embed {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.pitch-deck__fallback {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.pitch-deck__fallback a {
  color: var(--color-tech-blue);
  font-weight: 600;
  transition: color var(--transition-base);
}

.pitch-deck__fallback a:hover {
  color: var(--color-akatsuki);
}

@media (max-width: 768px) {
  .pitch-deck__embed {
    height: 400px;
  }
}

/* ===== Founder Section ===== */
.founder {
  padding: 100px 0;
  background-color: var(--color-white);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.founder__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

.founder__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.founder__content {
  max-width: 560px;
}

.founder__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-akatsuki);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.founder__name {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 8px;
}

.founder__school {
  font-size: 1rem;
  color: var(--color-gray-500);
  margin-bottom: 20px;
}

.founder__description {
  font-size: 1.0625rem;
  color: var(--color-gray-500);
  line-height: 1.9;
  margin-bottom: 24px;
}

.founder__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-tech-blue);
  transition: color var(--transition-base);
}

.founder__link:hover {
  color: var(--color-akatsuki);
}

.founder__link::after {
  content: '→';
}

@media (max-width: 1024px) {
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .founder__image {
    max-width: 280px;
    margin: 0 auto;
  }

  .founder__content {
    max-width: 100%;
  }

  .founder__link {
    justify-content: center;
  }
}

/* ===== Members Section ===== */
.members {
  padding: 100px 0;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.member-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 0;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.member-card:hover {
  border-color: var(--color-tech-blue);
}

.member-card__avatar {
  width: 56px;
  height: 56px;
  background-color: var(--color-tech-blue);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.member-card__info {
  flex: 1;
  min-width: 0;
}

.member-card__school {
  font-size: 0.8125rem;
  color: var(--color-akatsuki);
  font-weight: 600;
  margin-bottom: 4px;
}

.member-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  background-color: var(--color-tech-blue);
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 48px;
}

.contact__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.contact__description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  background-color: var(--color-white);
  border-radius: 0;
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
}

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

.form-group:last-of-type {
  margin-bottom: 32px;
}

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

.form-label span {
  color: var(--color-akatsuki);
  margin-left: 4px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--color-gray-200);
  border-radius: 0;
  background-color: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-tech-blue);
  box-shadow: 0 0 0 4px rgba(26, 75, 140, 0.1);
}

.form-input::placeholder {
  color: var(--color-gray-300);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.contact-form .btn {
  width: 100%;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-tech-blue-dark);
  color: var(--color-white);
  padding: 48px 0 24px;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer__logo img {
  height: 36px;
  width: 36px;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.125rem;
  transition: background-color var(--transition-base);
}

.footer__social-link:hover {
  background-color: var(--color-akatsuki);
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual-grid {
    max-width: 400px;
    margin: 0 auto;
  }

  .concept__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .concept__content {
    max-width: 100%;
    text-align: center;
  }

  .concept__features {
    align-items: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .header__menu-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero__visual {
    display: none;
  }

  .hero__mobile-logo {
    display: block;
    text-align: center;
    margin: 16px 0;
  }

  .hero__mobile-logo-image {
    max-width: 120px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .hero__description {
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .hero__cta .btn--pulse {
    font-size: 1rem;
    padding: 14px 24px;
  }

  .section {
    padding: 60px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  /* Mobile Menu Styles */
  .header__nav {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100vh - 72px) !important;
    width: 100% !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 32px 24px !important;
    transform: translateX(100%);
    transition: transform var(--transition-base), visibility var(--transition-base), opacity var(--transition-base);
    z-index: 999 !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    visibility: hidden;
    opacity: 0;
  }

  .header__nav--open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .header__nav--open .header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .header__nav--open .header__cta {
    display: inline-flex;
    margin-top: 24px;
  }

  .header__nav--open .mobile-page-nav {
    display: flex;
  }

  /* Hamburger animation */
  .header__menu-toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile Page Navigation */
  .mobile-page-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
  }

  .mobile-page-nav__btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray-200);
    border-radius: 0;
    background: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
  }

  .mobile-page-nav__btn:hover {
    border-color: var(--color-gray-300);
    color: var(--color-gray-700);
  }

  .mobile-page-nav__btn--active {
    background: var(--color-gray-50);
  }

  .mobile-page-nav__btn--startup.mobile-page-nav__btn--active {
    border-color: var(--color-tech-blue);
    color: var(--color-tech-blue);
  }

  .mobile-page-nav__btn--local.mobile-page-nav__btn--active {
    border-color: var(--color-local-green);
    color: var(--color-local-green);
  }

  .mobile-page-nav__btn--student.mobile-page-nav__btn--active {
    border-color: var(--color-student-orange);
    color: var(--color-student-orange);
  }
}

/* Hide mobile page nav on desktop */
.mobile-page-nav {
  display: none;
}

/* ===== Landing Page ===== */
.landing {
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  padding: 24px;
}

.landing__inner {
  text-align: center;
  max-width: 800px;
}

.landing__header {
  margin-bottom: 48px;
}

.landing__logo {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}

.landing__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-tech-blue);
  margin-bottom: 12px;
}

.landing__subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-500);
}

.landing__question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 32px;
}

.landing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.landing__card {
  background: var(--color-white);
  border-radius: 0;
  padding: 40px 24px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 3px solid transparent;
}

.landing__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.landing__card--startup:hover {
  border-color: var(--color-tech-blue);
}

.landing__card--local:hover {
  border-color: var(--color-local-green);
}

.landing__card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.landing__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-gray-700);
}

.landing__card-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

.landing__card--startup .landing__card-subtitle {
  color: var(--color-tech-blue);
}

.landing__card--local .landing__card-subtitle {
  color: var(--color-local-green);
}

.landing__card-description {
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.landing__card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.landing__card--startup .landing__card-cta {
  color: var(--color-tech-blue);
}

.landing__card--local .landing__card-cta {
  color: var(--color-local-green);
}

@media (max-width: 600px) {
  .landing__cards {
    grid-template-columns: 1fr;
  }

  .landing__card {
    padding: 32px 20px;
  }
}

/* ===== Mode Toggle ===== */
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gray-100);
  border: none;
  border-radius: 0;
  padding: 8px 16px;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-right: 16px;
}

.mode-toggle:hover {
  background: var(--color-gray-200);
}

.mode-toggle__arrow {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .mode-toggle {
    display: none;
  }
}

/* ===== Local Theme Overrides ===== */
/* Hero Section - Local */
.hero--local .hero__title-accent {
  color: var(--color-local-green);
}

.hero__badge--local {
  background-color: var(--color-local-green);
}

.btn--local {
  background-color: var(--color-local-green);
}

.btn--local:hover {
  background-color: var(--color-local-green-light);
}

/* Concept Section - Local */
.concept--local .concept__title {
  color: var(--color-local-green-dark);
}

.concept__title-en--local {
  color: var(--color-local-green);
}

.concept__feature-icon--local {
  background-color: var(--color-local-green);
}

/* Services Section - Local */
.services--local .section__title {
  color: var(--color-gray-900);
}

.section__label--local {
  color: var(--color-local-green);
}

.service-card__icon--local {
  background-color: var(--color-local-green);
}

.service-card--local:nth-child(2) .service-card__icon--local {
  background-color: var(--color-local-green-light);
}

.service-card--local:nth-child(3) .service-card__icon--local {
  background-color: var(--color-local-green-dark);
}

/* Outline button in local mode */
.hero--local .btn--outline {
  border-color: var(--color-local-green);
  color: var(--color-local-green);
}

.hero--local .btn--outline:hover {
  background-color: var(--color-local-green);
  color: var(--color-white);
}

/* ===== Page Navigation ===== */
.page-nav {
  display: flex;
  gap: 4px;
  background: var(--color-gray-100);
  border-radius: 9999px;
  padding: 5px;
  margin-right: 16px;
}

.page-nav__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 9999px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-500);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.page-nav__btn:hover {
  color: var(--color-gray-700);
  background: var(--color-gray-200);
}

.page-nav__btn--active {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.page-nav__btn--startup.page-nav__btn--active {
  color: var(--color-tech-blue);
}

.page-nav__btn--local.page-nav__btn--active {
  color: var(--color-local-green);
}

.page-nav__btn--student.page-nav__btn--active {
  color: var(--color-student-orange);
}

@media (max-width: 992px) {
  .page-nav {
    display: none;
  }
}

/* ===== Student Theme Overrides ===== */
/* Hero Section - Student - White Background */
.hero--student {
  background: #ffffff !important;
}

.hero--student .hero__title {
  color: #111827;
}

.hero--student .hero__title-accent {
  color: #ff6b00;
}

.hero--student .hero__description {
  color: #374151;
}

.hero__badge--student {
  background-color: #ff6b00;
  color: #ffffff;
}

.btn--student {
  background-color: #ff6b00;
  color: #ffffff;
  font-weight: 700;
}

.btn--student:hover {
  background-color: #ff8c33;
}

/* Concept Section - Student */
.concept--student .concept__title {
  color: #111827;
}

.concept__title-en--student {
  color: #ff6b00;
}

.concept__feature-icon--student {
  background-color: #ff6b00;
}

/* Services Section - Student */
.section__label--student {
  color: #ff6b00;
}

.service-card__icon--student {
  background-color: #ff6b00;
}

.service-card--student:nth-child(2) .service-card__icon--student {
  background-color: #ff8c33;
}

.service-card--student:nth-child(3) .service-card__icon--student {
  background-color: #e55a00;
}

/* Outline button in student mode */
.hero--student .btn--outline {
  border-color: #ff6b00;
  border-width: 2px;
  color: #ff6b00;
  font-weight: 600;
  background-color: #ffffff;
}

.hero--student .btn--outline:hover {
  background-color: #ff6b00;
  color: #ffffff;
}

/* ===== New Hero Layout ===== */
.hero--new-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Student theme - light blue */
.hero--student.hero--new-layout {
  background: #e8f4fc !important;
}

/* Startup theme - same as student (light blue) */
.hero--startup.hero--new-layout {
  background: #e8f4fc !important;
}

/* Local theme - same as startup (light blue) */
.hero--local.hero--new-layout {
  background: #e8f4fc !important;
}

.hero--new-layout::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 70%;
  height: 120%;
  background-image: url('assets/hero-bg-decoration.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero__main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px 0 80px;
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: 48px;
  box-sizing: border-box;
}

.hero__text {
  max-width: 900px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero__title-large span {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 32px;
  font-family: var(--font-sans);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 24px 32px;
  display: inline-block;
}

.hero__title-large span {
  font-size: 3.5rem;
  color: #111827;
  font-family: var(--font-sans);
}

.hero__description-large {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 24px;
  border-radius: 0;
  display: inline-block;
}

/* Right side logo */
.hero__right-logo {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero__right-logo-img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* Right side image */
/* Right side image */
.hero__right-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  transform: none;
  z-index: 0;
  max-width: 60%;
  height: 100%;
  pointer-events: none;
}

.hero__right-img {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.05);
  object-fit: cover;
  border: none;
  transform: none;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.85;
}

.hero__side-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.hero__side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 8px;
}

.hero__side-btn-icon {
  font-size: 1.25rem;
}

.hero__side-btn--primary {
  background: #ffffff;
  color: #111827;
  border: 2px solid #e5e7eb;
}

.hero__side-btn--primary:hover {
  border-color: #ff6b00;
  color: #ff6b00;
}

.hero__side-btn--secondary {
  background: #111827;
  color: #ffffff;
  border: 2px solid #111827;
}

.hero__side-btn--secondary:hover {
  background: #374151;
  border-color: #374151;
}

.hero__bottom-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.hero__bottom-img {
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

/* CTA Button (Desktop & Mobile) */
.hero__mobile-cta {
  margin-top: 32px;
  display: block;
  /* Show on desktop */
}

.btn-mobile-app {
  display: inline-block;
  background: #FF9933;
  /* Strong orange for CTA */
  color: #fff;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-mobile-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 153, 51, 0.5);
}

.btn-mobile-app:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 153, 51, 0.4);
}

/* Mobile styles for new layout */
@media (max-width: 768px) {
  .hero--new-layout {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero__main {
    flex-direction: column;
    padding: 24px 24px 60px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .hero__text {
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .hero__title-large {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .hero__title-large span {
    font-size: 1.5rem;
    padding: 12px 16px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .hero__description-large {
    font-size: 0.9rem;
    padding: 12px 16px;
    line-height: 1.7;
  }

  .hero__description-large br {
    display: none;
  }

  /* Hide decoration on mobile to prevent overflow */
  .hero--new-layout::before {
    display: none;
  }

  .hero__side-buttons {
    display: none;
  }

  .hero__bottom-image {
    display: none;
  }

  .hero__bottom-img {
    display: none;
  }

  /* Show image on mobile */
  .hero__right-logo {
    display: none;
  }

  .hero__right-image {
    display: none;
    /* Hide image on mobile per user request */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
  }

  .hero__right-img {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
  }



  /* Mobile CTA Button - Overlaid on image */
  .hero__mobile-cta {
    position: absolute;
    bottom: 32px;
    right: 24px;
    width: auto;
    margin: 0;
    z-index: 10;
    justify-content: flex-end;
  }

  .btn-mobile-app {
    width: auto;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-tech-blue);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
  }

  .btn-mobile-app::after {
    content: '→';
    font-weight: 800;
    transition: transform 0.3s ease;
  }

  .btn-mobile-app:active {
    transform: scale(0.96);
  }
}

/* Student Hero Centering */
.hero__main--student-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  /* Ensure some height if needed */
}

.hero__text--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.btn--register {
  font-size: 1.5rem;
  padding: 20px 48px;
  border-radius: 0;
  background-color: var(--color-student-orange);
  /* Use student theme color */
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.btn--register:hover {
  background-color: var(--color-student-orange-dark);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.5);
  transform: translateY(-2px);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .hero__main--student-centered {
    min-height: 300px;
  }

  .btn--register {
    width: 90%;
    max-width: 320px;
    font-size: 1.25rem;
    padding: 16px 32px;
  }
}

/* Startup Hero Inline Layout */
.hero__description-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Push items to edges */
  gap: 24px;
  margin-bottom: 40px;
  /* matches previous p margin */
  width: 100%;
  /* Ensure container takes full width */
}

.hero__description-row .hero__description-large {
  margin-bottom: 0;
  max-width: 70%;
  /* Prevent text from pushing button off if text is long */
}

.btn-inline-startup {
  display: inline-flex;
  white-space: nowrap;
  background-color: var(--color-akatsuki);
  /* Prominent orange */
  color: var(--color-white);
  padding: 16px 36px;
  /* Slightly larger */
  border-radius: 0;
  /* Rounded */
  font-weight: 700;
  transition: all 0.3s ease;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.btn-inline-startup:hover {
  background-color: var(--color-akatsuki-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.5);
}

@media (max-width: 768px) {
  .hero__description-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
    align-items: center;
    /* Center on mobile */
  }

  .hero__description-row .hero__description-large {
    max-width: 100%;
    text-align: center;
  }

  .btn-inline-startup {
    margin-left: 0;
    /* Reset margin on mobile */
    width: 100%;
    justify-content: center;
  }
}

/* Allow startup hero text/button to span full width */
/* Allow startup hero text/button to span full width */
.hero--startup .hero__text,
.hero--local .hero__text {
  max-width: 100%;
  width: 100%;
  /* Force full width */
  padding-right: 0;
  /* Remove padding to allow button to hit edge */
}

.hero--startup .hero__description-row,
.hero--local .hero__description-row {
  width: 100%;
  /* Force full width */
  padding-right: 48px;
  /* Restored some padding for text constraint */
  position: relative;
}

.hero--startup .btn-inline-startup,
.hero--local .btn-inline-startup {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  margin-right: 80px;
  /* Moved left from edge (was 24px) */
  z-index: 10;
}

/* Keep title constrained for readability */
.hero--startup .hero__title-large,
.hero--local .hero__title-large {
  max-width: 900px;
}

/* Square Hero Button Style */
.btn--square-hero {
  width: 110px !important;
  height: 110px !important;
  border-radius: 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  white-space: normal !important;
  /* Allow text to wrap if needed, though short text fits */
  background-color: var(--color-white) !important;
  color: var(--color-tech-blue) !important;
  border: 4px solid var(--color-tech-blue) !important;
  box-shadow: 0 4px 12px rgba(26, 75, 140, 0.2) !important;
}

.btn--square-hero:hover {
  background-color: var(--color-tech-blue) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 16px rgba(26, 75, 140, 0.3) !important;
}

@media (max-width: 768px) {

  .hero--startup .hero__description-row,
  .hero--local .hero__description-row {
    padding-right: 0;
  }

  .hero--startup .btn-inline-startup,
  .hero--local .btn-inline-startup {
    position: static;
    transform: none;
    margin-right: 0;
  }
}

/* ===== Student Hero Section Styles ===== */
.hero--student .hero__text {
  max-width: 100%;
  width: 100%;
  padding-right: 0;
}

.hero--student .hero__description-row {
  width: 100%;
  padding-right: 48px;
  position: relative;
}

.hero--student .btn-inline-student {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  margin-right: 80px;
  z-index: 10;
}

.hero--student .hero__title-large {
  max-width: 900px;
}

/* Student theme button styling */
.btn-inline-student {
  display: inline-flex;
  white-space: nowrap;
  background-color: var(--color-student-orange);
  color: var(--color-white);
  padding: 16px 36px;
  border-radius: 0;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.btn-inline-student:hover {
  background-color: var(--color-student-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.5);
}

/* Student Square Hero Button Override */
.hero--student .btn--square-hero {
  background-color: var(--color-white) !important;
  color: var(--color-student-orange) !important;
  border: 4px solid var(--color-student-orange) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2) !important;
}

.hero--student .btn--square-hero:hover {
  background-color: var(--color-student-orange) !important;
  color: var(--color-white) !important;
  box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3) !important;
}

@media (max-width: 768px) {
  .hero--student .hero__description-row {
    padding-right: 0;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .hero--student .btn-inline-student {
    position: static;
    transform: none;
    margin-right: 0;
  }
}