/* ============================================
   合同会社EVOKE コーポレートサイト
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #0F172A;
  --accent: #3B82F6;
  --accent-glow: #60A5FA;
  --bg-dark: #0B1120;
  --bg-light: #F8FAFC;
  --text: #1E293B;
  --text-light: #E2E8F0;
  --border: #1E293B;
  --font-en: 'Inter', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

/* --- Typography --- */
.font-en {
  font-family: var(--font-en);
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
}

/* --- Intro Overlay --- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro__panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--bg-dark);
}

.intro__panel--left {
  left: 0;
}

.intro__panel--right {
  right: 0;
}

.intro__logo {
  position: relative;
  z-index: 2;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #fff;
  display: flex;
  gap: 0.05em;
  overflow: hidden;
}

.intro__logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.intro__line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  z-index: 1;
}

body.is-loading {
  overflow: hidden;
}

/* --- Custom Cursor --- */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  display: none;
}

.cursor.active {
  width: 50px;
  height: 50px;
  border-color: var(--accent-glow);
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 2rem;
}

.nav__logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 999;
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
}

/* Background grid pattern */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Geometric decoration */
.hero__deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 35vw, 600px);
  height: clamp(300px, 35vw, 600px);
}

.hero__deco-ring {
  position: absolute;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
}

.hero__deco-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero__deco-ring:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-color: rgba(59, 130, 246, 0.1);
}

.hero__deco-ring:nth-child(3) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-color: rgba(59, 130, 246, 0.2);
}

.hero__deco-line {
  position: absolute;
  background: linear-gradient(135deg, var(--accent), transparent);
  opacity: 0.15;
}

.hero__deco-line:nth-child(4) {
  width: 120%;
  height: 1px;
  top: 50%;
  left: -10%;
  transform: rotate(-15deg);
}

.hero__deco-line:nth-child(5) {
  width: 1px;
  height: 120%;
  left: 50%;
  top: -10%;
  transform: rotate(15deg);
  background: linear-gradient(180deg, var(--accent), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__title {
  font-family: var(--font-jp);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(226, 232, 240, 0.7);
  max-width: 520px;
  line-height: 2;
  opacity: 0;
  transform: translateY(20px);
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.4em 1.2em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll span {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(226, 232, 240, 0.4);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 6rem);
  background: #fff;
  overflow: hidden;
}

.vision__deco {
  position: absolute;
  left: clamp(1rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 900;
  color: rgba(15, 23, 42, 0.03);
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.vision__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision__heading {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.5;
}

.vision__heading .accent {
  color: var(--accent);
}

.vision__text {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: #475569;
  line-height: 2.1;
}

@media (max-width: 768px) {
  .vision__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   SERVICE SECTION
   ============================================ */
.service {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 6rem);
  background: var(--bg-dark);
  overflow: hidden;
}

.section__label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.section__title--light {
  color: #fff;
}

.section__title--dark {
  color: var(--primary);
}

.service__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service__header {
  margin-bottom: 1rem;
}

/* --- Service Row (editorial layout) --- */
.service__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: baseline;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  position: relative;
}

.service__row:last-child {
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}

.service__num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(59, 130, 246, 0.25);
  letter-spacing: -0.02em;
  user-select: none;
}

.service__body {
  padding-top: 0.3em;
}

.service__name {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.service__desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(226, 232, 240, 0.5);
  line-height: 2;
  max-width: 480px;
}

.service__keyword {
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(59, 130, 246, 0.35);
  align-self: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .service__row {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
  }
  .service__keyword {
    display: none;
  }
  .service__num {
    font-size: 2.5rem;
  }
}

/* ============================================
   RECRUIT SECTION
   ============================================ */
.recruit {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 6rem);
  background: linear-gradient(135deg, #1e3a5f 0%, #0F172A 40%, #0B1120 100%);
  overflow: hidden;
}

/* Light rays decoration */
.recruit__rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.recruit__rays::before,
.recruit__rays::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.06), transparent);
}

.recruit__rays::before {
  width: 200%;
  height: 1px;
  top: 30%;
  left: -50%;
  transform: rotate(-8deg);
}

.recruit__rays::after {
  width: 200%;
  height: 1px;
  top: 60%;
  left: -50%;
  transform: rotate(5deg);
}

.recruit__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.recruit__catch {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.recruit__catch .accent {
  color: var(--accent-glow);
}

.recruit__sub {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: rgba(226, 232, 240, 0.6);
  line-height: 2;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* --- Recruit Details (clean table-like layout) --- */
.recruit__details {
  margin-bottom: 3rem;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
}

.recruit__detail-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.08);
}

.recruit__detail-row dt {
  flex-shrink: 0;
  width: clamp(70px, 12vw, 110px);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-glow);
  letter-spacing: 0.04em;
}

.recruit__detail-row dd {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.6;
}

.recruit__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #06C755;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  position: relative;
}

.recruit__cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 60px;
  background: #06C755;
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

.recruit__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6, 199, 85, 0.3);
}

.recruit__cta svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 6rem);
  background: #fff;
  overflow: hidden;
}

.about__deco {
  position: absolute;
  left: clamp(1rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 900;
  color: rgba(15, 23, 42, 0.03);
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about__inner {
  max-width: 900px;
  margin: 0 auto;
}

.about__table {
  width: 100%;
  border-collapse: collapse;
}

.about__table tr {
  border-bottom: 1px solid #E2E8F0;
}

.about__table th,
.about__table td {
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  vertical-align: top;
}

.about__table th {
  width: 140px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.about__table td {
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .about__table th {
    width: 100px;
    font-size: 0.8rem;
  }
  .about__table td {
    font-size: 0.8rem;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 6rem);
  background: var(--bg-light);
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__list {
  margin-top: 1rem;
}

.faq__item {
  border-bottom: 1px solid #E2E8F0;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out-expo);
}

.faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: clamp(0.85rem, 1vw, 0.9rem);
  color: #475569;
  line-height: 2;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 6rem);
  background: var(--bg-dark);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.contact__form-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* --- Form --- */
.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form__required {
  color: #EF4444;
  font-size: 0.75rem;
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form__input::placeholder {
  color: rgba(226, 232, 240, 0.3);
  font-size: 0.8rem;
}

.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Agree checkbox --- */
.form__agree {
  margin-bottom: 1.25rem;
}

.form__agree-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.7);
  cursor: pointer;
}

.form__agree-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form__agree-label a {
  color: var(--accent);
  text-decoration: underline;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 0.5rem;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.form__submit:hover {
  background: #2563EB;
  transform: translateY(-2px);
}

/* --- LINE Card --- */
.contact__line-card {
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.contact__line-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact__line-text {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.contact__btn--line {
  background: #06C755;
  color: #fff;
}

.contact__btn--line:hover {
  background: #05b04b;
  transform: translateY(-2px);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem clamp(1.5rem, 5vw, 6rem);
  background: #060a14;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

.footer__logo span {
  color: var(--accent);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.25);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.06);
}

/* ============================================
   REVEAL ANIMATION UTILITY
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
  .hero__deco {
    opacity: 0.3;
    right: -10%;
  }

  .hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    line-height: 1.5;
  }

  .hero__sub {
    font-size: 0.85rem;
    line-height: 1.9;
  }

  .hero__sub br {
    display: none;
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .nav.scrolled {
    padding: 0.6rem 1.25rem;
  }

  .recruit__catch {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    line-height: 1.4;
  }

  .recruit__sub {
    font-size: 0.85rem;
  }

  .vision__heading {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .vision__text {
    font-size: 0.85rem;
  }

  .vision__text br {
    display: none;
  }
}
