
.about-grid {
  display: grid;
  gap: 7vw;
  grid-template-columns: 1.15fr .85fr;
}

.about-copy h2 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: -.055em;
  line-height: .95;
  margin: 20px 0 30px;
}

.about-copy p {
  color: #9da89f;
  line-height: 2;
  margin-bottom: 18px;
}

.profile-card {
  padding: 22px;
}

.profile-mark {
  align-items: center;
  background:
    linear-gradient(rgba(169,223,152,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,223,152,.045) 1px, transparent 1px),
    #0a100c;
  background-size: 22px 22px;
  display: flex;
  height: 240px;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.profile-mark strong {
  color: rgba(169,223,152,.09);
  font-family: var(--mono);
  font-size: 4rem;
  letter-spacing: -.12em;
}

.profile-mark::after {
  animation: profileScan 3.2s linear infinite;
  background: linear-gradient(to bottom, transparent, rgba(169,223,152,.24), transparent);
  content: "";
  height: 32px;
  left: 0;
  position: absolute;
  right: 0;
  top: -40px;
}

@keyframes profileScan {
  to { top: calc(100% + 40px); }
}

.profile-card dl div {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 14px 0;
}

.profile-card dl div:last-child { border-bottom: 0; }

.profile-card dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .5rem;
}

.profile-card dd {
  font-family: var(--mono);
  font-size: .62rem;
}

.values-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3,1fr);
}

.value-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 250px;
  padding: 24px;
  transition: .25s ease;
}

.value-card:hover {
  border-color: rgba(169,223,152,.42);
  transform: translateY(-4px);
}

.value-card span {
  color: var(--green);
  font-family: var(--mono);
  font-size: .54rem;
}

.value-card h3 {
  font-size: 1.5rem;
  margin: 56px 0 16px;
}

.value-card p {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.9;
}

.policy-list {
  display: grid;
  gap: 0;
}

.policy-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 180px 1fr;
  padding: 24px 0;
}

.policy-row strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: .62rem;
}

.policy-row p {
  color: #96a199;
  line-height: 1.9;
}

.contact-panel {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(70,117,74,.15), transparent 45%),
    var(--panel);
  border: 1px solid var(--line-strong);
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  padding: 40px;
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.045em;
  margin-bottom: 12px;
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .policy-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 28px 22px; }
}


.roles-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3,1fr);
}

.role-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 280px;
  padding: 25px;
  transition: .25s ease;
}

.role-card:hover {
  border-color: rgba(169,223,152,.42);
  transform: translateY(-5px);
}

.role-card > span {
  color: var(--green);
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .09em;
}

.role-card h3 {
  font-size: 1.8rem;
  margin: 55px 0 6px;
}

.role-card small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .52rem;
}

.role-card p {
  color: #919d94;
  line-height: 1.9;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .roles-grid { grid-template-columns: 1fr; }
}
