/* ── ORIGIN SECTION ── */
.origin { padding: 120px 60px; }
.origin-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.figures {
  display: flex; align-items: flex-end;
  gap: clamp(10px, 2vw, 28px);
  position: relative; padding-bottom: 20px;
}
.figures::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.12), rgba(155,109,255,0.12), transparent);
}
.fig { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; transition: transform 0.3s ease; }
.fig:hover { transform: translateY(-8px); }
.fig-arr { position: absolute; right: -18px; bottom: 44px; font-size: 0.72rem; color: rgba(255,255,255,0.1); }

/* ── PROJECTS ── */
.projects { padding: 100px 60px; max-width: 1300px; margin: 0 auto; }
.projects-header { margin-bottom: 60px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.project-card {
  background: var(--ink);
  padding: 52px 48px 56px;
  text-decoration: none; color: var(--white);
  position: relative; overflow: hidden;
  transition: background 0.4s ease;
  display: block;
}
.project-card:hover { background: rgba(255,255,255,0.022); }

.pc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.pc-num {
  font-size: 0.62rem; letter-spacing: 0.28em;
  font-weight: 300; color: var(--muted);
}
.pc-arrow {
  font-size: 1rem; color: rgba(255,255,255,0.12);
  transition: transform 0.3s ease, color 0.3s ease;
}
.project-card:hover .pc-arrow { transform: translateX(6px); color: var(--white); }

.pc-accent {
  width: 28px; height: 2px; margin-bottom: 22px;
  border-radius: 0;
  transition: width 0.4s cubic-bezier(.16,1,.3,1);
}
.project-card:hover .pc-accent { width: 56px; }
.pc-accent.cyan   { background: var(--cyan); }
.pc-accent.violet { background: var(--violet); }
.pc-accent.green  { background: var(--green); }
.pc-accent.amber  { background: var(--amber); }

.pc-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 10px; color: var(--white);
}
.project-card[data-color="cyan"]   .pc-name { color: var(--cyan); }
.project-card[data-color="violet"] .pc-name { color: var(--violet); }
.project-card[data-color="green"]  .pc-name { color: var(--green); }
.project-card[data-color="amber"]  .pc-name { color: var(--amber); }

.pc-tag {
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 22px;
}
.pc-desc {
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(255,255,255,0.65); font-weight: 300;
  margin-bottom: 28px;
}
.pc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.pc-tags span {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.28); border-radius: 2px;
}

/* ── VISION ── */
.vision { padding: 130px 60px; text-align: center; }
.vision-inner { max-width: 800px; margin: 0 auto; }
.vision-q {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.3; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.12);
  font-style: normal; margin-top: 28px;
}
.vision-q em { font-style: normal; color: var(--white); }
.hi-cyan   { color: var(--cyan); }
.hi-violet { color: var(--violet); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .origin { padding: 80px 28px; }
  .origin-inner { grid-template-columns: 1fr; gap: 48px; }
  .origin-visual { display: none; }
  .projects { padding: 80px 28px; }
  .project-grid { grid-template-columns: 1fr; }
  .vision { padding: 100px 28px; }
}

/* ── BELIEF STRIP ── */
.belief { padding: 100px 60px; }
.belief-inner { max-width: 1100px; margin: 0 auto; }
.belief-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.belief-item {
  background: var(--ink);
  padding: 44px 36px 48px;
  transition: background 0.3s;
}
.belief-item:hover { background: rgba(255,255,255,0.02); }
.bi-line {
  width: 28px; height: 2px; margin-bottom: 24px;
  transition: width 0.4s cubic-bezier(.16,1,.3,1);
}
.belief-item:hover .bi-line { width: 52px; }
.bi-line.cyan   { background: var(--cyan); }
.bi-line.violet { background: var(--violet); }
.bi-line.white  { background: rgba(255,255,255,0.3); }
.bi-text {
  font-family: 'Syne', sans-serif; font-weight: 400;
  font-size: 1.05rem; line-height: 1.65;
  letter-spacing: -0.01em; color: rgba(255,255,255,0.55);
}

/* ── 2-COL PROJECT GRID ── */
.project-grid-2 { grid-template-columns: repeat(2,1fr); }

/* ── FUTURE PROJECTS ── */
.future-projects {
  padding: 100px 60px;
  max-width: 1100px; margin: 0 auto;
}
.fp-header { margin-bottom: 80px; }

.fp-phase { margin-bottom: 72px; }
.fp-phase-label {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
}
.fp-phase-line {
  width: 32px; height: 1px; flex-shrink: 0;
}
.fp-phase-line.cyan   { background: var(--cyan); }
.fp-phase-line.violet { background: var(--violet); }
.fp-phase-line.white  { background: rgba(255,255,255,0.2); }
.fp-phase-label span {
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); font-weight: 300;
}

.fp-cards {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
.fp-card {
  background: var(--ink);
  padding: 36px 36px 40px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: background 0.3s;
}
.fp-card:hover { background: rgba(255,255,255,0.02); }
.fpc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  margin-top: 6px; flex-shrink: 0;
}
.fpc-dot.cyan   { background: var(--cyan); }
.fpc-dot.violet { background: var(--violet); }
.fpc-dot.white  { background: rgba(255,255,255,0.25); }
.fpc-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 6px;
}
.fpc-tag {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 300; margin-bottom: 12px;
}
.fpc-body {
  font-size: 0.9rem; line-height: 1.82;
  color: rgba(255,255,255,0.65); font-weight: 300;
}

/* ── VISION ── */
.vision { padding: 130px 60px; text-align: center; }
.vision-inner { max-width: 820px; margin: 0 auto; }
.vision-q {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.5; letter-spacing: -0.015em;
  color: rgba(255,255,255,0.18);
  font-style: normal; margin-top: 28px;
}
.vision-q em   { font-style: normal; color: var(--white); }
.hi-cyan       { color: var(--cyan); }

@media(max-width:900px){
  .belief { padding: 80px 28px; }
  .belief-grid { grid-template-columns: 1fr; }
  .future-projects { padding: 80px 28px; }
  .fp-cards { grid-template-columns: 1fr; }
  .project-grid-2 { grid-template-columns: 1fr; }
  .vision { padding: 100px 28px; }
}

/* ── STORY TEASER ── */
.story-teaser { padding: 120px 60px; max-width: 1100px; margin: 0 auto; }
.st-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.stq-mark {
  font-family: 'Georgia', serif;
  font-size: 6rem; line-height: 0.8;
  color: rgba(0,212,255,0.15);
  margin-bottom: 16px;
}
.stq-text {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.4; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.stq-sub {
  font-family: 'Georgia', serif; font-style: italic;
  font-size: 1rem; line-height: 1.7;
  color: var(--cyan);
}
@media(max-width:900px) {
  .story-teaser { padding: 80px 28px; }
  .st-inner { grid-template-columns: 1fr; gap: 48px; }
}
