.content-page {
  background: #f4f7f5;
}

.content-page .topbar {
  position: absolute;
}

.content-hero {
  display: grid;
  min-height: 700px;
  padding: 150px 34px 72px;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: 64px;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 83% 28%, rgba(20, 104, 255, 0.13), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(185, 77, 0, 0.12), transparent 25%),
    #f8faf8;
}

.content-hero-copy {
  position: relative;
  z-index: 1;
}

.content-breadcrumbs {
  display: flex;
  margin: 0 0 54px;
  padding: 0;
  gap: 10px;
  color: #5c6970;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  list-style: none;
}

.content-breadcrumbs li:not(:last-child)::after {
  margin-left: 10px;
  color: var(--accent);
  content: "/";
}

.content-kicker {
  margin: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.content-hero h1 {
  max-width: 1050px;
  margin: 32px 0 34px;
  font-size: clamp(4rem, 7vw, 7.7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.content-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.content-lead {
  max-width: 880px;
  margin: 0;
  color: #3e4c55;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 600;
  line-height: 1.58;
}

.content-note {
  max-width: 760px;
  margin: 26px 0 0;
  color: #65737a;
  font-size: 1rem;
  line-height: 1.75;
}

.content-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 26px;
}

.content-actions a {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.content-actions a:first-child {
  padding: 18px 22px;
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(185, 77, 0, 0.18);
}

.content-actions a:last-child {
  color: #465760;
}

.content-actions a:hover {
  transform: translateY(-2px);
}

.portfolio-scope {
  display: grid;
  position: relative;
  min-height: 360px;
  padding: 34px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #102b46;
  color: white;
  box-shadow: 0 28px 80px rgba(16, 43, 70, 0.18);
}

.portfolio-scope::before,
.portfolio-scope::after {
  position: absolute;
  border: 1px solid rgba(121, 168, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.portfolio-scope::before {
  width: 330px;
  height: 330px;
  top: 40px;
  right: -130px;
}

.portfolio-scope::after {
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: -90px;
}

.portfolio-scope small,
.portfolio-scope b,
.portfolio-scope p {
  position: relative;
  z-index: 1;
}

.portfolio-scope small {
  color: #ffa640;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.portfolio-scope b {
  max-width: 390px;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.portfolio-scope p {
  max-width: 440px;
  margin: 0;
  color: #c8d7df;
  font-size: 0.96rem;
}

.cases-index {
  padding: 100px 34px 120px;
}

.content-section-head {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
}

.content-section-head > p:first-child {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
}

.content-section-head h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.content-section-head h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.content-section-head .section-intro {
  max-width: 850px;
  margin: 28px 0 0;
  color: #53636b;
  font-size: 1.1rem;
  line-height: 1.75;
}

.case-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-index-card {
  display: grid;
  position: relative;
  min-height: 500px;
  padding: 34px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.case-index-card:hover {
  z-index: 1;
  background: white;
  box-shadow: 0 26px 70px rgba(16, 43, 70, 0.13);
  transform: translateY(-5px);
}

.case-index-card:focus-visible {
  z-index: 2;
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.case-index-card::before {
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(20, 104, 255, 0.2);
  border-radius: 50%;
  content: "";
  transition: transform 0.35s;
}

.case-index-card:hover::before {
  transform: scale(1.14);
}

.case-card-top,
.case-card-bottom {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #526169;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.case-card-top strong {
  color: var(--accent);
}

.case-card-main {
  position: relative;
  z-index: 1;
  align-self: end;
}

.case-card-main h3 {
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 5vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.case-card-main p {
  max-width: 650px;
  margin: 0 0 26px;
  color: #4c5c64;
  font-size: 1.08rem;
  line-height: 1.65;
}

.case-card-metric {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(185, 77, 0, 0.3);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.case-card-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #075dd8;
}

.project-spectrum {
  padding: 100px 34px 110px;
  background: #102b46;
  color: white;
}

.project-spectrum .content-section-head > p:first-child {
  color: #ffa640;
}

.project-spectrum .content-section-head h2 span {
  -webkit-text-stroke-color: #79a8ff;
}

.project-spectrum .section-intro {
  color: #c8d7df;
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.spectrum-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.spectrum-grid small {
  color: #ffa640;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.spectrum-grid h3 {
  margin: 70px 0 18px;
  font-size: 1.55rem;
}

.spectrum-grid p {
  margin: 0;
  color: #c8d7df;
  font-size: 0.94rem;
}

.content-contact,
.privacy-contact {
  display: grid;
  padding: 100px 34px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 70px;
  background: #0e2a45;
  color: white;
}

.content-contact h2,
.privacy-contact h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.content-contact h2 span,
.privacy-contact h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px #79a8ff;
}

.contact-copy {
  align-self: end;
}

.contact-copy p {
  margin: 0 0 30px;
  color: #d4e0e6;
  font-size: 1.12rem;
  line-height: 1.7;
}

.contact-copy > a {
  display: flex;
  padding: 20px 22px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-meta a {
  padding: 0;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-meta {
  display: flex;
  margin-top: 42px;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: #a9bdc8;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.privacy-page .content-hero {
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.privacy-page .portfolio-scope {
  min-height: 300px;
}

.privacy-content {
  display: grid;
  padding: 96px 34px 120px;
  grid-template-columns: 260px minmax(0, 900px);
  justify-content: space-between;
  gap: 78px;
}

.privacy-nav {
  position: sticky;
  top: 28px;
  align-self: start;
  border-top: 1px solid var(--line);
}

.privacy-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #56666e;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.privacy-nav a:hover {
  color: #075dd8;
}

.privacy-article {
  min-width: 0;
}

.privacy-block {
  padding: 0 0 54px;
  scroll-margin-top: 24px;
  border-bottom: 1px solid var(--line);
}

.privacy-block + .privacy-block {
  padding-top: 54px;
}

.privacy-block small {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.privacy-block h2 {
  margin: 17px 0 24px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.privacy-block p,
.privacy-block li {
  color: #465760;
  font-size: 1.04rem;
  line-height: 1.78;
}

.privacy-block ul {
  margin: 20px 0 0;
  padding-left: 22px;
}

.privacy-block a {
  color: #075dd8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-highlight {
  margin: 28px 0 0;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: white;
}

.privacy-highlight p {
  margin: 0;
  color: #25343c;
  font-weight: 650;
}

.about-page .content-hero {
  min-height: 820px;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  align-items: center;
}

.about-profile-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(16, 43, 70, 0.25);
  background: #102b46;
  box-shadow: 0 32px 90px rgba(16, 43, 70, 0.2);
}

.about-profile-card::before,
.about-profile-card::after {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(121, 168, 255, 0.36);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about-profile-card::before {
  width: 390px;
  height: 390px;
  top: -110px;
  right: -130px;
}

.about-profile-card::after {
  width: 250px;
  height: 250px;
  right: -40px;
  bottom: -100px;
}

.about-profile-card img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.82) contrast(1.04);
}

.about-profile-card figcaption {
  display: flex;
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 82px;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(16, 43, 70, 0.91);
  color: white;
  backdrop-filter: blur(12px);
}

.about-profile-card figcaption b,
.about-profile-card figcaption span {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.about-profile-card figcaption span {
  color: #ffa640;
}

.owner-perspective {
  padding: 110px 34px 120px;
}

.owner-statement {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
}

.owner-statement > p:first-child {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
}

.owner-statement blockquote {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 5.5rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.owner-statement blockquote span {
  color: #075dd8;
}

.owner-proof-grid {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.owner-proof-grid article {
  min-height: 310px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.owner-proof-grid small {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.owner-proof-grid strong {
  display: block;
  margin-top: 80px;
  font-size: clamp(2.4rem, 3.8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.owner-proof-grid p {
  margin: 24px 0 0;
  color: #526169;
  font-size: 0.92rem;
  line-height: 1.65;
}

.experience-system {
  padding: 110px 34px 120px;
  background: #102b46;
  color: white;
}

.experience-system .content-section-head > p:first-child {
  color: #ffa640;
}

.experience-system .content-section-head h2 span {
  -webkit-text-stroke-color: #79a8ff;
}

.experience-system .section-intro {
  color: #c8d7df;
}

.experience-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-map article {
  position: relative;
  min-height: 420px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-map article::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(121, 168, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.experience-map small {
  color: #ffa640;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.experience-map h3 {
  margin: 96px 0 25px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.experience-map p {
  position: relative;
  z-index: 1;
  max-width: 490px;
  margin: 0;
  color: #c8d7df;
  font-size: 0.98rem;
  line-height: 1.72;
}

.working-principles {
  padding: 110px 34px 120px;
}

.principles-list {
  border-top: 1px solid var(--line);
}

.principles-list article {
  display: grid;
  min-height: 170px;
  padding: 30px 0;
  grid-template-columns: 100px minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.principles-list small {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
}

.principles-list h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.principles-list p {
  max-width: 760px;
  margin: 0;
  color: #526169;
  font-size: 1rem;
  line-height: 1.75;
}

.public-expertise {
  display: grid;
  padding: 110px 34px 120px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  background: #eaf0ed;
}

.expertise-copy h2 {
  margin: 28px 0 30px;
  font-size: clamp(3.2rem, 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.expertise-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.expertise-copy > p:last-of-type {
  max-width: 680px;
  color: #526169;
  font-size: 1.05rem;
  line-height: 1.75;
}

.expertise-links {
  border-top: 1px solid var(--line);
}

.expertise-links a {
  display: grid;
  min-height: 125px;
  padding: 24px 0;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, transform 0.2s;
}

.expertise-links a:hover {
  color: #075dd8;
  transform: translateX(5px);
}

.expertise-links small {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.expertise-links b {
  font-size: 1.1rem;
  line-height: 1.45;
}

.expertise-links span {
  color: #075dd8;
  font-family: var(--mono);
}

@media (max-width: 1080px) {
  .content-page .topbar nav {
    display: none;
  }

  .content-hero {
    grid-template-columns: 1fr;
  }

  .portfolio-scope {
    min-height: 300px;
  }

  .spectrum-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .content-hero {
    grid-template-columns: 1fr;
  }

  .about-profile-card {
    width: min(680px, 100%);
  }

  .owner-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-expertise {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .content-page .topbar {
    min-height: 82px;
    padding: 0 16px;
    grid-template-columns: 1fr auto;
  }

  .content-page .top-actions {
    gap: 8px;
  }

  .content-page .top-actions > a {
    display: none;
  }

  .content-hero {
    min-height: auto;
    padding: 126px 16px 56px;
    gap: 42px;
  }

  .content-breadcrumbs {
    margin-bottom: 38px;
  }

  .content-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .content-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-scope {
    min-height: 280px;
    padding: 26px;
  }

  .cases-index,
  .project-spectrum,
  .privacy-content,
  .owner-perspective,
  .experience-system,
  .working-principles,
  .public-expertise,
  .content-contact,
  .privacy-contact {
    padding: 72px 16px;
  }

  .content-section-head {
    display: block;
    margin-bottom: 40px;
  }

  .content-section-head h2 {
    margin-top: 22px;
  }

  .case-index-grid,
  .spectrum-grid {
    grid-template-columns: 1fr;
  }

  .case-index-card {
    min-height: 440px;
    padding: 26px;
  }

  .content-contact,
  .privacy-contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .privacy-content {
    display: block;
  }

  .about-profile-card,
  .about-profile-card img {
    min-height: 430px;
    height: 430px;
  }

  .owner-statement {
    display: block;
  }

  .owner-statement blockquote {
    margin-top: 24px;
  }

  .owner-proof-grid,
  .experience-map {
    grid-template-columns: 1fr;
  }

  .owner-proof-grid article,
  .experience-map article {
    min-height: 330px;
  }

  .principles-list article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .principles-list p {
    grid-column: 2;
  }

  .expertise-links a {
    grid-template-columns: 1fr auto;
  }

  .expertise-links small {
    grid-column: 1 / -1;
  }

  .privacy-nav {
    display: grid;
    position: static;
    margin-bottom: 54px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-index-card,
  .case-index-card::before,
  .content-actions a {
    transition: none;
  }
}
