/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Hero: extend behind transparent navbar */
.page-hero {
  margin-top: 0;
  padding-top: calc(var(--nav-h) + 80px);
}

/* Hero entrance — staggered, CSS-driven */
@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero .page-hero-eyebrow {
  animation: hero-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.page-hero h1 {
  animation: hero-item-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.page-hero p {
  animation: hero-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

/* ---- About Story ---- */
.about-story {
  padding: var(--section-v) 32px;
  background: #fff;
}
.about-story-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.about-story h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--text-base);
  margin-bottom: 28px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.geo-highlight{
  color: var(--orange);
}

.about-story p {
  font-size: 15.5px;
  color: var(--text-sub);
  line-height: 1.78;
  margin-bottom: 20px;
}
/* ---- CEO Feature Teaser ---- */
.ceo-teaser {
  margin-top: 36px;
  display: flex;
  flex-direction: row;
  background: rgba(0,105,166,0.05);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  text-align: left;
}
.ceo-teaser-photo {
  width: 200px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ceo-teaser-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}
.ceo-teaser-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.ceo-teaser-quote {
  font-size: 15.5px;
  font-style: italic;
  color: var(--text-sub);
  line-height: 1.78;
  margin-bottom: 28px;
}
.ceo-teaser-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ceo-teaser-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.ceo-teaser-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-base);
}
.ceo-teaser-title {
  font-size: 12px;
  color: var(--text-sub);
}

/* ---- Group of Companies ---- */
.companies-section {
  padding: var(--section-v) 32px;
  background: var(--bg-surface);
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 72px;
}
.company-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--ease), transform var(--ease), border-left-color var(--ease);
}
.company-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
  border-left-color: var(--orange);
}
.company-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.company-card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-base);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.company-card-name .sub-brand {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-sub);
}
.company-card p {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ---- Mission / Vision two-column ---- */
.mission-vision-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
.mv-photo {
  height: 300px;
  border-radius: 10px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  flex-shrink: 0;
}
.mv-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mv-text h3 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.mv-text p {
  font-size: 15.5px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 36px;
}
.mv-text p:last-child { margin-bottom: 0; }

/* ---- Culture Banner ---- */
.culture-banner {
  padding: 104px 32px;
  background: var(--bg-void);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.culture-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.culture-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(0,105,166,0.26) 0%, transparent 62%);
  pointer-events: none;
}
.culture-banner .container { position: relative; z-index: 1; }
.culture-banner p {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 36px;
}
.culture-banner p .hl { color: var(--orange); }

/* ---- Life @ i-Open ---- */
.life-section {
  padding: var(--section-v) 32px;
  background: #fff;
}
.life-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.life-body p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.78;
  margin-bottom: 22px;
}
.life-body p:last-child { margin-bottom: 0; }

/* ---- Team Scroll Strip ---- */
.team-strip-section {
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}
/* Right-edge fade — signals scrollability */
.team-strip-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--bg-void));
  pointer-events: none;
  z-index: 2;
}
.team-strip {
  overflow: hidden;
}
.team-strip-inner {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: team-scroll 45s linear infinite;
}
.team-strip:hover .team-strip-inner {
  animation-play-state: paused;
}
@keyframes team-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-cell {
  flex-shrink: 0;
  width: 340px;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.strip-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.strip-cell:hover img { transform: scale(1.04); }
.strip-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 105, 166, 0);
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.strip-cell:hover::after { background: rgba(0, 105, 166, 0.15); }

/* ---- Closing CTA ---- */
.closing-cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 80%, rgba(0,105,166,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(255,135,5,0.09) 0%, transparent 45%);
  pointer-events: none;
}
.closing-cta-text {
  padding: var(--section-v) 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-cta-text p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-on-dark);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.72;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .mission-vision-block {
    grid-template-columns: 280px 1fr;
    gap: 44px;
  }
}

@media (max-width: 768px) {
  .companies-grid { grid-template-columns: 1fr; }
  .mission-vision-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mv-photo { height: 240px; }
  .strip-cell { width: 280px; height: 340px; }
  .culture-banner { padding: 80px 32px; }
  .ceo-teaser { flex-direction: column; }
  .ceo-teaser-photo { width: auto; height: 300px; }
}

@media (max-width: 480px) {
  .about-story   { padding: var(--section-v) 20px; }
  .about-story-inner { gap: 36px; }
  .companies-section { padding: var(--section-v) 20px; }
  .life-section  { padding: var(--section-v) 20px; }
  .culture-banner { padding: 64px 20px; }
  .closing-cta-text { padding: var(--section-v) 20px; }
  .strip-cell { width: 240px; height: 300px; }
  .team-strip-section::after { width: 60px; }
  .ceo-teaser-content { padding: 24px 20px; }
  .ceo-teaser-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero * { animation: none; }
}
