/* ══════════════════════════════════════════════
   Wright Creative — About Page Styles
   ══════════════════════════════════════════════ */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0 80px;
}

.about-portrait {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 4px, transparent 4px 8px,
    var(--pixel-green) 8px 12px, transparent 12px 16px
  );
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.about-portrait .portrait-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-content p strong {
  color: var(--text);
  font-weight: 600;
}

/* Values */
.values-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover { transform: translateY(-3px); }
.value-card .pixel-icon-sm {
  display: inline-grid;
  grid-template-columns: repeat(4, 5px);
  grid-template-rows: repeat(4, 5px);
  gap: 1px;
  margin-bottom: 16px;
  image-rendering: pixelated;
}
.value-card .pixel-icon-sm .on { background: var(--accent); }
.value-card .pixel-icon-sm .off { background: var(--surface-alt); }
.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Tools */
.tools-section {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
  position: relative;
}
.tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0 4px, transparent 4px 8px,
    var(--pixel-green) 8px 12px, transparent 12px 16px,
    var(--pixel-blue) 16px 20px, transparent 20px 24px
  );
}
.tools-section .section-head h2 { color: #fff; }
.tools-section .section-head p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-top: 8px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tool-card {
  padding: 24px 20px;
  background: var(--dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s;
}
.tool-card:hover { border-color: rgba(255,255,255,0.15); }
.tool-card .tool-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tool-card .tool-use {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.tool-card .tool-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Timeline */
.timeline-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.timeline {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--border) 0 6px, transparent 6px 12px);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot .inner {
  width: 8px;
  height: 8px;
  background: var(--accent);
  image-rendering: pixelated;
}
.timeline-item:first-child .timeline-dot {
  border-color: var(--accent);
}
.timeline-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-body .year {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 400px; }
  .values-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-layout { padding: 48px 0 56px; }
  .values-section, .tools-section, .timeline-section { padding: 56px 0; }
}
