/*
  =======================================================
  about.css — Executive minimal About page
  Typography-led. No badge pills, no decorative dots,
  no orbs or floating ornaments. Hairlines only.
  Inherits tokens / navbar / footer from style.css.
  =======================================================
*/

/* =======================================================
   0. SHARED PRIMITIVES
   ======================================================= */

/* Small uppercase tracked eyebrow — pure typography, no pills */
.ab-eyebrow {
  font-family: var(--font-family-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin: 0 0 22px;
  line-height: 1;
}

.ab-eyebrow--muted { color: rgba(255, 255, 255, 0.5); }

/* Section display heading — restrained, executive */
.ab-heading {
  font-family: var(--font-family-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--color-gray-900);
  margin: 0;
  text-wrap: balance;
}

.ab-heading--dark { color: var(--color-white); }

.ab-section-sub {
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.6;
  color: var(--color-gray-500);
  max-width: 60ch;
  margin: 22px 0 0;
}

.ab-section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.ab-section-head.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Quiet inline link with arrow */
.ab-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gray-900);
  text-decoration: none;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--color-gray-900);
  padding: 6px 0;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), gap 0.25s var(--ease-out);
}

.ab-link i {
  font-size: 0.875rem;
  transition: transform 0.25s var(--ease-out);
}

.ab-link:hover {
  color: var(--color-brand);
  border-color: var(--color-brand);
  gap: 14px;
}

.ab-link:hover i { transform: translateX(2px); }

.ab-link--inverse {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.ab-link--inverse:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* =======================================================
   1. HERO — single-column statement with inline fact strip
   ======================================================= */
.ab-hero {
  position: relative;
  margin-top: 140px;
  padding: 72px 0 88px;
  background:
    radial-gradient(
      80% 60% at 100% 0%,
      rgba(255, 106, 0, 0.04) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 60%);
  border-bottom: 1px solid rgba(14, 19, 32, 0.06);
  overflow: hidden;
}

.ab-hero-inner {
  display: flex;
  flex-direction: column;
}

.ab-hero-inner .ab-eyebrow {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: abHeroIn 0.8s var(--ease-out) 0s forwards;
}

.ab-hero-title {
  font-family: var(--font-family-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--color-gray-900);
  margin: 0 0 28px;
  max-width: 20ch;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(20px);
  animation: abHeroIn 0.9s var(--ease-out) 0.1s forwards;
}

.ab-hero-sub {
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.6;
  color: var(--color-gray-500);
  max-width: 58ch;
  margin: 0 0 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: abHeroIn 0.9s var(--ease-out) 0.2s forwards;
}

.ab-hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: abHeroIn 0.9s var(--ease-out) 0.3s forwards;
}

/* --- Inline fact strip --- */
.ab-hero-strip {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(14, 19, 32, 0.08);
  opacity: 0;
  transform: translateY(20px);
  animation: abHeroIn 0.9s var(--ease-out) 0.4s forwards;
}

.ab-strip-item {
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(14, 19, 32, 0.08);
}

.ab-strip-item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.ab-strip-item dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin: 0 0 8px;
  line-height: 1.4;
}

.ab-strip-item dd {
  font-family: var(--font-family-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--color-gray-900);
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
}

@keyframes abHeroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ab-hero { padding: 96px 0 72px; }
  .ab-hero-strip {
    flex-direction: column;
    gap: 20px;
  }
  .ab-strip-item {
    padding: 0 0 20px;
    margin-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(14, 19, 32, 0.08);
  }
  .ab-strip-item:last-child { border-bottom: none; padding-bottom: 0; }
  .ab-strip-item dd { white-space: normal; }
}

@media (max-width: 575px) {
  .ab-hero { padding: 88px 0 64px; }
  .ab-hero-actions { gap: 20px; margin-bottom: 40px; }
}

/* =======================================================
   2. STORY — typographic pull-quote + feature strip (no photo)
   ======================================================= */
.ab-story {
  padding: 88px 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(14, 19, 32, 0.06);
}

.ab-story-quote {
  position: relative;
  margin: 0 0 80px;
  padding: 0 0 0 40px;
  border-left: 2px solid var(--color-brand);
  max-width: 46ch;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.ab-story-quote.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

.ab-story-quote p {
  font-family: var(--font-family-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--color-gray-900);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

.ab-promise-text {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  line-height: 1.7;
  color: var(--color-gray-600);
  max-width: 60ch;
  margin: 32px 0 0 42px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.ab-promise-text.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

.ab-why .ab-promise-text {
  margin-left: 0;
  max-width: 65ch;
}

@media (max-width: 991px) {
  .ab-story { padding: 72px 0; }
  .ab-story-quote { margin-bottom: 64px; }
}

@media (max-width: 575px) {
  .ab-story { padding: 56px 0; }
  .ab-story-quote { padding-left: 24px; margin-bottom: 48px; }
}

/* =======================================================
   4. VALUES — numbered editorial grid (no cards)
   ======================================================= */
.ab-values {
  padding: 56px 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(14, 19, 32, 0.06);
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(14, 19, 32, 0.08);
}

.ab-value {
  padding: 20px 18px 20px 0;
  border-bottom: 1px solid rgba(14, 19, 32, 0.08);
  border-right: 1px solid rgba(14, 19, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.ab-value.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

.ab-value:nth-child(1).scroll-animate { transition-delay: 0s; }
.ab-value:nth-child(2).scroll-animate { transition-delay: 0.08s; }
.ab-value:nth-child(3).scroll-animate { transition-delay: 0.16s; }
.ab-value:nth-child(4).scroll-animate { transition-delay: 0.24s; }

.ab-value:nth-child(2n) {
  border-right: none;
  padding-right: 0;
}

.ab-value:nth-child(2n + 1) {
  padding-left: 0;
}

.ab-value:not(:nth-child(2n + 1)) {
  padding-left: 40px;
}

.ab-value-num {
  font-family: var(--font-family-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-brand);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.ab-value-title {
  font-family: var(--font-family-display);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-gray-900);
  margin: 0;
}

.ab-value-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-500);
  margin: 0;
}

@media (max-width: 991px) {
  .ab-values { padding: 48px 0; }

  .ab-value:nth-child(2n) {
    padding-right: 0;
  }
  .ab-value:not(:nth-child(2n + 1)) {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .ab-values { padding: 40px 0; }
  .ab-values-grid { grid-template-columns: 1fr; }

  .ab-value,
  .ab-value:nth-child(2n) {
    border-right: none;
    padding: 16px 0;
  }
  .ab-value:not(:nth-child(2n + 1)),
  .ab-value:nth-child(2n + 1) {
    padding-left: 0;
  }
}

/* =======================================================
   5. FIND THE RIGHT EMPLOYEES — lead paragraph
   ======================================================= */
.ab-why {
  padding: 88px 0;
  background: #fafbfc;
  border-bottom: 1px solid rgba(14, 19, 32, 0.06);
}

@media (max-width: 991px) {
  .ab-why { padding: 72px 0; }
}

@media (max-width: 575px) {
  .ab-why { padding: 56px 0; }
}

/* =======================================================
   6. TECHNOLOGIES — quiet white cards, hairline border
   ======================================================= */
.ab-tech {
  padding: 88px 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(14, 19, 32, 0.06);
  scroll-margin-top: 100px;
}

.ab-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ab-tech-card {
  background: var(--color-white);
  border: 1px solid rgba(14, 19, 32, 0.08);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(16px);
}

.ab-tech-card.scroll-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out),
              border-color 0.3s var(--ease-out);
}

.ab-tech-card:nth-child(1).scroll-animate { transition-delay: 0s; }
.ab-tech-card:nth-child(2).scroll-animate { transition-delay: 0.05s; }
.ab-tech-card:nth-child(3).scroll-animate { transition-delay: 0.10s; }
.ab-tech-card:nth-child(4).scroll-animate { transition-delay: 0.15s; }
.ab-tech-card:nth-child(5).scroll-animate { transition-delay: 0.20s; }
.ab-tech-card:nth-child(6).scroll-animate { transition-delay: 0.25s; }

.ab-tech-card:hover {
  border-color: rgba(14, 19, 32, 0.2);
  transform: translateY(-2px);
}

.ab-tech-icon {
  font-size: 1.375rem;
  color: var(--color-gray-900);
  line-height: 1;
  transition: color 0.3s var(--ease-out);
}

.ab-tech-card:hover .ab-tech-icon { color: var(--color-brand); }

.ab-tech-title {
  font-family: var(--font-family-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-gray-900);
  margin: 0;
}

.ab-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 19, 32, 0.06);
}

.ab-tag {
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-gray-500);
  line-height: 1.3;
  transition: color 0.25s var(--ease-out);
}

.ab-tag:not(:last-child)::after {
  content: "\00B7";
  margin: 0 8px;
  color: var(--color-gray-300);
}

.ab-tech-card:hover .ab-tag {
  color: var(--color-gray-800);
}

@media (max-width: 991px) {
  .ab-tech { padding: 72px 0; }
  .ab-tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .ab-tech { padding: 56px 0; }
  .ab-tech-grid { grid-template-columns: 1fr; gap: 12px; }
  .ab-tech-card { padding: 28px 24px; }
}

/* =======================================================
   8. CTA — dark ink, editorial centered
   ======================================================= */
.ab-cta {
  padding: 96px 0;
  background: var(--color-ink);
  color: var(--color-white);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ab-cta .container { max-width: 880px; }

.ab-cta-title {
  font-family: var(--font-family-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: var(--color-white);
  margin: 0 0 24px;
  text-wrap: balance;
}

.ab-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .ab-cta { padding: 80px 0; }
}

@media (max-width: 575px) {
  .ab-cta { padding: 72px 0; }
  .ab-cta-actions {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .ab-cta-actions .btn-brand,
  .ab-cta-actions .ab-link {
    width: 100%;
    justify-content: center;
  }
  .ab-cta-actions .ab-link {
    border-bottom: none;
    padding: 8px 0;
  }
}

/* =======================================================
   9. Reduced motion
   ======================================================= */
@media (prefers-reduced-motion: reduce) {
  .ab-hero-title,
  .ab-hero-sub,
  .ab-hero-strip {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .ab-section-head,
  .ab-story-quote,
  .ab-story-feature,
  .ab-promise-text,
  .ab-value,
  .ab-tech-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ab-tech-card:hover {
    transform: none;
  }
}

/* =======================================================
   About hero + mission redesign — compact, connected
   (supersedes the earlier hero/story spacing rules)
   ======================================================= */

/* ---------- HERO ---------- */
.ab-hero {
  margin-top: 140px;
  padding: 58px 0 62px;
}

.ab-hero-inner {
  display: block;
}

.ab-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: stretch;
}

/* Copy column is a flex column so the fact strip can pin to the
   bottom and line up with the base of the image — no dead band */
.ab-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ab-hero-title {
  margin-bottom: 22px;
}

.ab-hero-sub {
  margin-bottom: 32px;
}

.ab-hero-actions {
  margin-bottom: 0;
}

/* --- Fact strip: three balanced columns, pinned to column base --- */
.ab-hero-strip {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(14, 19, 32, 0.1);
}

.ab-strip-item {
  margin: 0;
  padding: 0 26px;
  border-right: 1px solid rgba(14, 19, 32, 0.1);
}

.ab-strip-item:first-child {
  padding-left: 0;
}

.ab-strip-item:last-child {
  padding-right: 0;
  border-right: none;
}

/* ---------- HERO VISUAL — one clean framed image ---------- */
.ab-hero-visual {
  position: relative;
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(14, 19, 32, 0.14);
  opacity: 0;
  transform: translateY(20px);
  animation: abHeroIn 0.9s var(--ease-out) 0.24s forwards;
}

.ab-visual-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ab-visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.ab-visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 19, 32, 0.04) 0%,
    rgba(14, 19, 32, 0.14) 55%,
    rgba(14, 19, 32, 0.5) 100%
  );
  pointer-events: none;
}

.ab-visual-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-left: 3px solid var(--color-brand);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(14, 19, 32, 0.18);
  backdrop-filter: blur(12px);
}

.ab-visual-panel span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-brand);
}

.ab-visual-panel strong {
  display: block;
  font-family: var(--font-family-display);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
}

/* ---------- MISSION — statement card + guiding principles ---------- */
.ab-story {
  padding: 62px 0 70px;
}

.ab-story .ab-section-head {
  margin-bottom: 36px;
}

.ab-mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(340px, 0.54fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: stretch;
  margin-top: 0;
}

/* --- Statement card: dark ink with brand accent --- */
.ab-mission-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 42px 42px 40px;
  border-radius: 16px;
  background:
    radial-gradient(130% 110% at 100% 0%, rgba(255, 106, 0, 0.2) 0%, transparent 55%),
    linear-gradient(158deg, #131a2b 0%, var(--color-ink) 62%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.ab-mission-card.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

.ab-mission-card::after {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand) 0%, rgba(255, 106, 0, 0) 100%);
}

.ab-mission-mark {
  display: block;
  height: 40px;
  margin-bottom: 4px;
  font-family: var(--font-family-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.72;
  color: var(--color-brand);
}

.ab-mission-quote {
  margin: 0;
}

.ab-mission-quote p {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(1.375rem, 1.9vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-wrap: balance;
}

.ab-mission-cite {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.ab-mission-cite-rule {
  width: 40px;
  height: 2px;
  background: var(--color-brand);
}

/* --- Guiding principles list --- */
.ab-mission-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(14, 19, 32, 0.1);
}

.ab-mission-principle {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 20px;
  padding: 22px 2px 22px 0;
  border-bottom: 1px solid rgba(14, 19, 32, 0.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.ab-mission-principle.scroll-animate {
  opacity: 1;
  transform: translateY(0);
}

.ab-mission-principle:nth-child(2).scroll-animate { transition-delay: 0.08s; }
.ab-mission-principle:nth-child(3).scroll-animate { transition-delay: 0.16s; }

.ab-principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-brand-alpha-10);
  color: var(--color-brand);
  font-size: 1.25rem;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
}

.ab-mission-principle:hover .ab-principle-icon {
  background: var(--color-brand);
  color: var(--color-white);
  transform: translateY(-2px);
}

.ab-principle-body h3 {
  margin: 4px 0 6px;
  font-family: var(--font-family-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-gray-900);
}

.ab-principle-body p {
  margin: 0;
  max-width: 46ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-500);
}

.ab-principle-index {
  font-family: var(--font-family-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gray-300);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  padding-top: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .ab-hero-main {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 48px;
  }

  .ab-hero-visual {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .ab-hero {
    padding: 72px 0 60px;
  }

  .ab-hero-main,
  .ab-mission-layout {
    grid-template-columns: 1fr;
  }

  .ab-hero-main {
    gap: 40px;
  }

  .ab-hero-copy {
    display: block;
  }

  .ab-hero-visual {
    width: 100%;
    min-height: 340px;
  }

  .ab-hero-strip {
    margin-top: 40px;
  }

  .ab-story {
    padding: 56px 0 60px;
  }

  .ab-mission-layout {
    gap: 36px;
  }

  .ab-mission-principles {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .ab-hero-main {
    gap: 36px;
  }

  .ab-hero-visual {
    min-height: 300px;
  }

  .ab-visual-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px 20px;
  }

  .ab-mission-card {
    padding: 36px 30px 32px;
  }

  .ab-mission-card::after {
    left: 30px;
    right: 30px;
  }
}

@media (max-width: 575px) {
  .ab-hero {
    padding: 56px 0 52px;
  }

  .ab-hero-sub {
    margin-bottom: 28px;
  }

  .ab-hero-actions {
    gap: 18px;
  }

  .ab-hero-visual {
    min-height: 250px;
  }

  .ab-hero-strip {
    margin-top: 34px;
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 16px;
  }

  .ab-strip-item,
  .ab-strip-item:first-child,
  .ab-strip-item:last-child {
    padding: 0 0 16px;
    border-right: none;
    border-bottom: 1px solid rgba(14, 19, 32, 0.08);
  }

  .ab-strip-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .ab-story {
    padding: 48px 0 52px;
  }

  .ab-story .ab-section-head {
    margin-bottom: 26px;
  }

  .ab-mission-layout {
    margin-top: 0;
    gap: 28px;
  }

  .ab-mission-card {
    padding: 32px 26px 28px;
    border-radius: 14px;
  }

  .ab-mission-card::after {
    left: 26px;
    right: 26px;
  }

  .ab-mission-mark {
    font-size: 4rem;
    height: 32px;
  }

  .ab-mission-principle {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    column-gap: 16px;
    padding: 20px 0;
  }

  .ab-principle-icon {
    width: 42px;
    height: 42px;
    font-size: 1.125rem;
  }
}
