/* Interview page mockup implementation. Source: design/claude-mockups/interview/mockup.html */
:root {
  --ink: #111111;
  --ink-2: #1b1b1b;
  --text: #4f4f4f;
  --muted: #727272;
  --line: #e1e1e1;
  --line-strong: #c9c9c9;
  --paper: #ffffff;
  --paper-2: #fcfcfc;
  --soft: #f7f7f7;
  --soft-2: #efefef;
  --orange: #f57e35;
  --orange-dark: #b64b10;
  --blue: #0d6fc2;
  --max: 1200px;
  --gutter: 32px;
  --duration: 240ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl {
  margin-top: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}

.nobr {
  display: inline;
  white-space: nowrap;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: currentColor;
}

.interview-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ====== Shared typography ====== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

/* ====== Buttons ====== */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.button .arrow {
  display: inline-block;
  transition: transform var(--duration) var(--ease);
}
.button:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.button:hover .arrow {
  transform: translateX(3px);
}

.button.ghost-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.button.ghost-light:hover {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.button.ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.button.ghost-dark:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* ====== Hero ====== */
.page-hero {
  position: relative;
  min-height: 660px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/recruitment-interview/interview-hero-voices-v2.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(7, 12, 22, 0.92) 0%,
      rgba(7, 12, 22, 0.78) 38%,
      rgba(7, 12, 22, 0.34) 70%,
      rgba(7, 12, 22, 0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 12, 22, 0.18) 0%,
      rgba(7, 12, 22, 0.55) 100%
    );
  z-index: -1;
}

.page-hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) 96px;
}

.page-hero-text {
  max-width: 880px;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.22em;
}

.page-hero h1 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.page-hero .lead {
  margin: 0 0 34px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
}

/* ====== Sections ====== */
.section {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.section-alt {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.005em;
}

.section-dark .section-head h2 {
  color: #ffffff;
}

.section-head .summary {
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.95;
}

.section-dark .section-head .summary {
  color: rgba(255, 255, 255, 0.78);
}

/* ====== Purpose (3 Focus columns, editorial) ====== */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.purpose-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.purpose-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -41px;
  width: 64px;
  height: 2px;
  background: var(--orange);
  transition: width var(--duration) var(--ease);
}

.purpose-item:hover::before {
  width: 100%;
}

.purpose-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 0;
}

.purpose-num {
  color: var(--ink);
  font-size: clamp(48px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.purpose-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.purpose-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.purpose-item h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.purpose-item p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 2;
}

/* ====== Interview Index (2 large cards) ====== */
.index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.index-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.index-card:hover {
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.index-card-head {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.index-avatar {
  position: relative;
  width: 132px;
  height: 132px;
  background: #1a1a1a;
  overflow: hidden;
}

.index-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.index-card:hover .index-avatar img {
  transform: scale(1.04);
}

.index-avatar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.index-head-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.index-head-meta .num {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.index-head-meta .role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.index-head-meta .role .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
}

.index-head-meta h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.4;
}

.index-card-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 30px 28px;
}

.index-quote {
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.85;
}

.index-card-body > p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.95;
}

.topic-list {
  display: grid;
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.topic-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.topic-list li span {
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.index-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.index-card-foot .button {
  min-height: 54px;
  padding: 0 22px;
}

/* ====== Interview Article (Kubota / Minami) ====== */
.article {
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
}

.article-alt {
  background: var(--soft);
}

.article-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.article-alt .article-head {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.article-head .copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-head .role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-head .role .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
}

.article-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.article-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
  margin: 0;
}

.article-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 16, 0) 50%,
    rgba(10, 12, 16, 0.72) 100%
  );
}

.article-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 16px 20px;
  background: rgba(17, 17, 17, 0.88);
  border-left: 3px solid var(--orange);
  color: #ffffff;
}

.article-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-caption p {
  margin: 0;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.7;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.profile-card {
  position: sticky;
  top: 96px;
  padding: 28px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.profile-card .avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
  background: #1a1a1a;
  overflow: hidden;
}

.profile-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card .avatar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--orange);
}

.profile-card .role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-card .role .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.profile-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.profile-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.profile-list dt {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.7;
}

.article-main {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.lead-quote {
  position: relative;
  margin: 0;
  padding: 32px 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.5;
}

.lead-quote::before {
  content: "";
  display: block;
  margin-bottom: 18px;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.qa-block {
  position: relative;
  padding: 30px 0 4px;
  border-top: 1px solid var(--line);
}

.qa-block h3 {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.qa-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qa-label .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.qa-block p {
  margin: 0 0 0 144px;
  color: var(--text);
  font-size: 15px;
  line-height: 2.05;
}

/* ====== Insights (dark, photo bg, 2x2 numbered tiles) ====== */
.insights {
  position: relative;
  padding: 120px 0;
  background: var(--ink);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/recruitment-interview/interview-shared-values-flow-v2.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: 0.5;
}

.insights::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 12, 22, 0.92) 0%,
    rgba(7, 12, 22, 0.84) 60%,
    rgba(7, 12, 22, 0.94) 100%
  );
  z-index: -1;
}

.insights .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}
.insights .section-head h2 {
  color: #ffffff;
}
.insights .section-head .summary {
  color: rgba(255, 255, 255, 0.78);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.insight-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-height: 240px;
  padding: 30px 30px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transition:
    border-color var(--duration) var(--ease),
    background var(--duration) var(--ease);
}

.insight-tile:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.insight-tile::after {
  position: absolute;
  right: 18px;
  top: 8px;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(245, 126, 53, 0.12);
  pointer-events: none;
  user-select: none;
  transition: color var(--duration) var(--ease);
}

.insight-tile:hover::after {
  color: rgba(245, 126, 53, 0.2);
}

.insight-tile:nth-child(1)::after {
  content: "01";
}
.insight-tile:nth-child(2)::after {
  content: "02";
}
.insight-tile:nth-child(3)::after {
  content: "03";
}
.insight-tile:nth-child(4)::after {
  content: "04";
}

.insight-tile .label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight-tile .label .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.insight-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.insight-tile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.95;
}

/* ====== Next Contents ====== */
.next-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.next-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 248px;
  padding: 24px 24px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
  transition:
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.next-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
}

.next-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: background var(--duration) var(--ease);
}

.next-card:hover .num {
  background: var(--orange);
}

.next-card h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
}

.next-card p {
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.85;
}

.next-card .cta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
}

.next-card .cta .arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--orange);
  font-size: 13px;
  line-height: 1;
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.next-card:hover .cta .arrow-circle {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateX(2px);
}

/* ====== Contact CTA ====== */
.entry-section {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.entry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/recruitment-interview/interview-contact-cta-dark-v2.png");
  background-size: cover;
  background-position: center right;
  z-index: -2;
  opacity: 0.45;
}

.entry-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(7, 12, 22, 0.94) 0%,
      rgba(7, 12, 22, 0.78) 50%,
      rgba(58, 36, 24, 0.62) 100%
    ),
    radial-gradient(
      circle at 82% 50%,
      rgba(245, 126, 53, 0.18),
      transparent 60%
    );
  z-index: -1;
}

.entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.entry-copy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.entry-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.24;
}

.entry-copy p {
  margin: 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.95;
}

.entry-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #ffffff;
  color: var(--ink);
}

.entry-panel h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-panel .button {
  min-height: 60px;
  justify-content: space-between;
  padding: 0 22px;
}

.entry-panel .button.alt {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line-strong);
}

.entry-panel .button.alt:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* ====== Responsive ====== */
@media (max-width: 1366px) {
  .section {
    padding: 96px 0;
  }
  .article {
    padding: 96px 0 88px;
  }
  .next-grid {
    gap: 14px;
  }
}

@media (max-width: 1180px) {
  .page-hero-inner {
    padding: 104px var(--gutter) 80px;
  }
  .section-head,
  .article-head,
  .article-alt .article-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 40px;
  }
  .article-alt .article-head {
    display: flex;
    flex-direction: column-reverse;
  }
  .article-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .profile-card {
    position: static;
  }
  .profile-card .avatar {
    max-width: 220px;
  }
  .purpose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .purpose-grid > .purpose-item:nth-child(3) {
    grid-column: 1 / -1;
  }
  .next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .entry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  :root {
    --gutter: 24px;
  }
  .section {
    padding: 80px 0;
  }
  .article {
    padding: 80px 0 72px;
  }
  .insights {
    padding: 96px 0;
  }
  .entry-section {
    padding: 88px 0;
  }
  .page-hero {
    min-height: auto;
  }
  .page-hero-inner {
    padding: 88px var(--gutter) 72px;
  }
  .index-grid {
    grid-template-columns: 1fr;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .article {
    padding: 64px 0 60px;
  }
  .insights {
    padding: 72px 0;
  }
  .entry-section {
    padding: 72px 0;
  }
  .page-hero-inner {
    padding: 72px var(--gutter) 56px;
  }
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  .page-hero .lead {
    font-size: 14.5px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .article-head h2 {
    font-size: 28px;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 32px;
  }
  .purpose-grid > .purpose-item:nth-child(3) {
    grid-column: auto;
  }
  .purpose-item::before {
    top: -33px;
    width: 48px;
  }
  .index-card-head {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 22px;
  }
  .index-avatar {
    width: 100px;
    height: 100px;
  }
  .index-card-body {
    padding: 24px 22px 22px;
    gap: 18px;
  }
  .index-quote {
    font-size: 15px;
  }
  .topic-list li {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 0;
    font-size: 13.5px;
  }
  .lead-quote {
    padding: 24px 22px;
    font-size: 20px;
    line-height: 1.55;
  }
  .qa-block {
    padding: 24px 0 4px;
  }
  .qa-block h3 {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 19px;
    margin-bottom: 14px;
  }
  .qa-block p {
    margin-left: 0;
    font-size: 14.5px;
    line-height: 2;
  }
  .next-grid {
    grid-template-columns: 1fr;
  }
  .insight-tile {
    min-height: 0;
    padding: 26px 24px 24px;
  }
  .insight-tile h3 {
    font-size: 19px;
  }
  .insight-tile::after {
    font-size: 96px;
  }
  .entry-copy h2 {
    font-size: 26px;
  }
  .entry-panel {
    padding: 22px;
  }
  .article-visual {
    aspect-ratio: 16 / 11;
  }
  .article-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }
  .profile-card {
    padding: 24px 22px;
  }
  .profile-card .avatar {
    max-width: 100%;
    margin-bottom: 18px;
  }
}

/* Integration with the shared staging shell. */
body.page-interview-mock {
  margin: 0;
  padding-top: 0;
  background: var(--paper);
}

body.page-interview-mock::before,
body.page-interview-mock::after {
  display: none !important;
}

body.page-interview-mock main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-interview-mock .page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-interview-mock .section-head {
  max-width: none;
}

body.page-interview-mock .page-hero h1::after,
body.page-interview-mock .section-head h2::after,
body.page-interview-mock .entry-copy h2::after {
  content: none;
  display: none;
}

body.page-interview-mock .button {
  min-width: 0;
  border-radius: 0;
}

body.page-interview-mock .button:hover {
  transform: none;
}
