:root {
  --bg: #ffffff;
  --card: #ffffff;
  --white: #ffffff;
  --dark: #151b2d;
  --dark-soft: #20263a;
  --text: #1d2233;
  --muted: #6d7488;
  --blue: #420090;
  --blue-deep: #2c005f;
  --gray-panel: #69527f;
  --line: rgba(18, 25, 43, 0.12);
  --content-width: 1120px;
  --blue-soft: #f2e8fc;
  --blue-hover: #2d0063;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: clip;
}

body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

button,
input {
  font: inherit;
}

/* ─── Canvas & Layout ─── */

.canvas {
  min-height: 100vh;
  overflow-x: clip;
}

.site-card {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  overflow: visible;
  background: var(--white);
}

/* ─── Top Bar ─── */

.problems-panel,
.services-panel,
.approach-panel {
  padding-left: 38px;
  padding-right: 38px;
}

.topbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 70;
  padding-left: 24px;
  padding-right: 24px;
  background: rgba(255, 255, 255, 0.98);
}

.topbar-shell {
  width: 100%;
  max-width: var(--content-width);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(66, 0, 144, 0.14);
  background: #f7f1ff;
  color: var(--blue);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.18s ease;
}

.mobile-nav-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.mobile-nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.mobile-nav-toggle span:nth-child(3) {
  transform: translate(-50%, 7px);
}

body.mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

body.mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  color: #394154;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #4c5366;
}

.menu a {
  position: relative;
  padding: 8px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(66, 0, 144, 0.72);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.small-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(66, 0, 144, 0.16);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  background: #f7f1ff;
  white-space: nowrap;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  display: none;
}

.mobile-drawer {
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    visibility 0.2s ease;
}

body.mobile-nav-open .topbar {
  border-bottom-color: transparent;
}

body.mobile-nav-open .mobile-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.mobile-drawer-shell {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 92px 20px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #ffffff 100%);
}

.mobile-drawer-nav {
  display: grid;
  gap: 0;
}

.mobile-drawer-nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 25, 43, 0.08);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.mobile-drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.small-pill:hover,
.small-pill:focus-visible,
.cta-primary:hover,
.cta-primary:focus-visible,
.cta-secondary:hover,
.cta-secondary:focus-visible,
.consult-strip a:hover,
.consult-strip a:focus-visible,
.inline-field button:hover,
.inline-field button:focus-visible {
  transform: translateY(-1px);
}

/* ─── Hero ─── */

.hero-panel {
  padding-top: 24px;
  padding-bottom: 32px;
  background: var(--white);
}

.hero-shell,
.stories-shell,
.contact-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: 38px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 10.8ch;
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--text);
}

.hero-copy p {
  max-width: 34ch;
  margin: 0 0 24px;
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 10px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
}

.cta-primary {
  background: var(--blue);
  color: var(--white);
}

.cta-secondary {
  border: 1px solid rgba(66, 0, 144, 0.18);
  color: var(--blue);
  background: var(--white);
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

/* ─── Image Placeholders ─── */

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #f5f3f8;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(18, 25, 43, 0.12);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(135deg, #171c2c 0%, #171c2c 45%, rgba(255, 255, 255, 0) 45.2%),
    linear-gradient(135deg, rgba(88, 24, 184, 0.98) 0%, rgba(66, 0, 144, 0.95) 52%, #f3f0f8 52%);
}

.hero-image-placeholder::before,
.hero-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-image-placeholder::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.6;
}

.hero-image-placeholder::after {
  inset: auto 8% 8% auto;
  width: 42%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 72%);
  opacity: 0.8;
}

/* ─── Problems Section ─── */

.problems-panel {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--white);
}

.section-intro {
  margin-bottom: 18px;
}

.section-intro.center {
  text-align: center;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.services-panel .section-intro h2 span,
.stories-title h2 span {
  color: #8e96a8;
}

.problems-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.problems-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.problems-copy .section-intro {
  margin-bottom: 14px;
}

.problems-copy .section-intro h2 {
  max-width: 12ch;
  line-height: 0.94;
}

.problems-lead {
  max-width: 34ch;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--muted);
}

.problems-highlight {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
}

.problems-highlight strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--dark);
}

.problems-highlight span {
  max-width: 28ch;
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.info-card {
  min-height: 168px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-card {
  background: var(--white);
  border-color: var(--line);
}

.card-index {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.feature-card .card-index {
  color: var(--blue);
}

.feature-card h3 {
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
}

.problem-cards .info-card:last-child {
  grid-column: 1 / -1;
}

.info-card h3 {
  margin: 0 0 10px;
  max-width: 16ch;
  font-size: 1.02rem;
  line-height: 1.15;
  color: var(--text);
}

.info-card p {
  margin: 0;
  max-width: 100%;
  font-size: 0.76rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── Services Section ─── */

.services-panel {
  padding-top: 48px;
  padding-bottom: 0;
  background: var(--white);
}

.services-box {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  overflow: hidden;
  background: var(--dark);
  border-radius: 16px 16px 0 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:last-child {
  border-bottom: 0;
}

.service-item h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.08;
  color: var(--white);
}

.service-item p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.consult-strip {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  border-radius: 0 0 16px 16px;
}

.consult-strip a {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

/* ─── Approach Section ─── */

.approach-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.approach-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.approach-header {
  display: grid;
  gap: 14px;
  padding-bottom: 8px;
}

.approach-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
}

.approach-header .section-intro {
  margin-bottom: 0;
}

.approach-header .section-intro h2 {
  max-width: none;
  text-align: center;
}

.approach-lead {
  text-align: center;
  max-width: 100%;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.approach-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.approach-principle {
  min-height: 240px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
  background: var(--white);
}

.approach-principle.dark {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
}

.approach-principle.light {
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
  background: var(--white);
}

.approach-principle.accent {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
}

.approach-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.approach-principle.light .approach-label {
  border-bottom-color: var(--line);
  color: var(--blue);
}

.approach-principle h3 {
  max-width: 14ch;
  margin: 0 0 14px;
  font-size: 1.18rem;
  line-height: 1.08;
  color: var(--text);
}

.approach-principle p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ─── Achievements Section ─── */

.achievements-panel {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--white);
}

.achievements-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.achievements-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.achievements-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.achievements-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.achievements-title h2 {
  max-width: 11ch;
  color: var(--dark);
}

.achievements-title h2 span {
  color: #7d8598;
}

.achievements-lead {
  max-width: 42ch;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.achievements-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.achievements-meta span,
.stat-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.achievements-meta span {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid var(--blue-soft);
}

.achievements-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.achievement-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: 22px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.achievement-stat > * {
  position: relative;
  z-index: 1;
}

/* Leads stat card */
.achievement-stat.leads {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.achievement-stat.leads .stat-label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.achievement-stat.leads strong,
.achievement-stat.leads h3 {
  color: var(--white);
}

.achievement-stat.leads p {
  color: rgba(255, 255, 255, 0.72);
}

/* Sales stat card */
.achievement-stat.sales {
  background: var(--white);
  border: 1px solid var(--line);
}

.achievement-stat.sales .stat-label {
  background: rgba(255, 170, 92, 0.16);
  color: #b55e18;
}

.achievement-stat.sales strong,
.achievement-stat.sales h3 {
  color: var(--dark);
}

.achievement-stat.sales p {
  color: var(--muted);
}

.stat-label {
  margin-bottom: 16px;
}

.achievement-stat strong {
  display: block;
  margin: 0 0 12px;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.achievement-stat h3 {
  margin: 0 0 12px;
  max-width: 14ch;
  font-size: 1.18rem;
  line-height: 1.08;
}

.achievement-stat p {
  margin: 0;
  max-width: 26ch;
  font-size: 0.75rem;
  line-height: 1.8;
}

.achievements-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
}

.achievements-strip p,
.achievements-strip span {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

.achievements-strip span {
  color: rgba(255, 255, 255, 0.76);
}

/* ─── Stories / Case Studies Section ─── */

.stories-panel {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--white);
}

.stories-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.stories-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.stories-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.stories-title h2 {
  color: var(--text);
}

.stories-lead {
  max-width: 34ch;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.stories-proof {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.rating-row span {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--blue);
}

.rating-row strong {
  font-size: 0.82rem;
  color: var(--text);
}

.stories-proof p {
  max-width: 34ch;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 220px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.story-card.featured {
  grid-column: 1 / -1;
  min-height: 240px;
  background: #f5f3f8;
  border-color: var(--line);
}

.story-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  background: var(--blue-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.story-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.95;
  color: var(--muted);
}

.story-card.featured p {
  max-width: 42ch;
  font-size: 0.92rem;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
}

.author-meta {
  display: grid;
  gap: 4px;
}

.author-meta strong {
  font-size: 0.76rem;
  color: var(--text);
}

.author-meta span {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ─── Contact Section ─── */

.contact-panel {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--white);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 12ch;
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.contact-copy p {
  max-width: 40ch;
  margin: 0 0 26px;
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-point {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.88rem;
}

.contact-point p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--muted);
}

.contact-box {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: #f8f9fc;
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin: 0;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 0.72rem;
  font-weight: 800;
  color: #3e465b;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(32, 41, 61, 0.12);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field textarea {
  min-height: 140px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.form-field select {
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(66, 0, 144, 0.42);
  background: #ffffff;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 8px;
}

.form-note {
  max-width: 34ch;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--muted);
}

.contact-submit {
  min-width: 210px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-1px);
}

.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.74rem;
  color: var(--muted);
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

/* ─── Footer ─── */

.footer-panel {
  padding-top: 48px;
  padding-bottom: 32px;
  background: #121726;
  color: rgba(255, 255, 255, 0.82);
}

.footer-shell,
.footer-bottom {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 26px;
  padding-bottom: 32px;
}

.footer-brand-block p,
.footer-contact-list li,
.footer-bottom p,
.footer-meta-links a {
  font-size: 0.74rem;
  line-height: 1.8;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-brand-block p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links-block h3,
.footer-contact-block h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-meta-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-meta-links a:hover,
.footer-meta-links a:focus-visible {
  color: var(--white);
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-meta-links {
  display: flex;
  gap: 18px;
}

/* ─── Brands / Industry Focus Section ─── */

.brands-panel {
  padding-top: 48px;
  padding-bottom: 48px;
}

.brands-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.brands-header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: end;
}

.brands-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.brands-header .section-intro {
  margin-bottom: 0;
}

.brands-header .section-intro h2 {
  max-width: 12ch;
}

.brands-lead {
  max-width: 42ch;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.brand-item {
  display: grid;
  gap: 18px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.brand-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.brand-copy h3 {
  margin: 0;
  max-width: 13ch;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.brand-copy p {
  margin: 0;
  max-width: 26ch;
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── Legal Pages ─── */

.legal-page {
  margin: 0;
  background: #f5f3ef;
  color: var(--text);
}

.legal-shell {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.legal-hero {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-hero h1 {
  margin: 0 0 12px;
  max-width: 14ch;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-lead {
  max-width: 58ch;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--muted);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(66, 0, 144, 0.12);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.legal-section {
  padding: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.legal-section.full {
  grid-column: 1 / -1;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.1;
}

.legal-section p,
.legal-section li {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.legal-section ul {
  margin: 0;
  padding-left: 18px;
}

.legal-section li + li,
.legal-section p + p {
  margin-top: 10px;
}

.legal-note {
  margin-top: 18px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--muted);
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
}

.legal-footer p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
}

/* ─── Responsive: Tablet ─── */

@media (max-width: 980px) {
  .problems-panel,
  .services-panel,
  .approach-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .topbar {
    padding-left: 22px;
    padding-right: 22px;
  }

  .topbar-shell {
    min-height: 76px;
    gap: 18px;
  }

  .topbar-actions {
    gap: 20px;
  }

  .menu {
    gap: 18px;
    font-size: 0.7rem;
  }

  .hero-shell,
  .service-item,
  .approach-header,
  .problems-shell,
  .achievements-showcase,
  .achievements-stats,
  .stories-shell,
  .contact-shell,
  .form-grid.two-up,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .achievements-showcase {
    padding: 24px;
  }

  .achievement-stat {
    min-height: 300px;
  }

  .hero-shell,
  .achievements-shell,
  .stories-shell,
  .contact-shell,
  .footer-shell,
  .footer-bottom {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* ─── Responsive: Mobile ─── */

@media (max-width: 640px) {
  .canvas {
    padding: 0;
  }

  .topbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar-shell {
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-toggle {
    display: inline-block;
    flex-shrink: 0;
    margin-left: auto;
  }

  .topbar-actions {
    display: none;
  }

  .mobile-drawer {
    display: block;
  }

  .logo img {
    height: 34px;
  }

  .hero-actions,
  .consult-strip,
  .form-submit-row,
  .footer-bottom {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary,
  .contact-submit {
    width: 100%;
  }

  .hero-panel {
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .hero-shell {
    gap: 14px;
  }

  .hero-actions {
    gap: 8px;
  }

  .problems-panel,
  .services-panel,
  .approach-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .approach-principles {
    grid-template-columns: 1fr;
  }

  .section-intro h2 {
    font-size: clamp(1.7rem, 9vw, 2.15rem);
    line-height: 0.96;
  }

  .section-intro.center h2 {
    max-width: 10ch;
    margin: 0 auto;
  }

  .hero-copy h1 {
    max-width: 8.8ch;
    margin-bottom: 10px;
    font-size: clamp(2.25rem, 12.8vw, 3.35rem);
    line-height: 0.94;
  }

  .hero-copy p {
    max-width: 28ch;
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .hero-image-placeholder {
    min-height: 156px;
  }

  .problems-panel,
  .services-panel,
  .achievements-panel,
  .brands-panel,
  .stories-panel,
  .contact-panel {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .services-box {
    border-radius: 16px 16px 0 0;
  }

  .problems-shell,
  .achievements-shell,
  .stories-shell,
  .contact-shell {
    gap: 18px;
  }

  .problems-copy {
    padding: 20px;
  }

  .info-card {
    min-height: auto;
    padding: 18px;
  }

  .service-item {
    padding: 16px;
    gap: 12px;
  }

  .service-item h3 {
    font-size: 1.02rem;
  }

  .service-item p {
    font-size: 0.76rem;
    line-height: 1.75;
  }

  .consult-strip {
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.72rem;
  }

  .approach-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .approach-header {
    gap: 10px;
  }

  .approach-principle {
    min-height: auto;
    gap: 16px;
    padding: 18px;
  }

  .approach-label {
    margin-bottom: 18px;
    padding-bottom: 8px;
  }

  .achievements-showcase {
    gap: 12px;
    padding: 18px;
  }

  .achievements-stats {
    gap: 12px;
  }

  .achievement-stat {
    min-height: 252px;
    padding: 18px;
  }

  .achievement-stat strong {
    font-size: clamp(3.1rem, 16vw, 4.2rem);
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .problem-cards .info-card:last-child {
    grid-column: auto;
  }

  .stories-copy {
    padding: 20px;
  }

  .story-card {
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .achievements-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-card.featured {
    grid-column: auto;
  }

  .hero-shell,
  .achievements-shell,
  .stories-shell,
  .contact-shell,
  .footer-shell,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brands-shell {
    gap: 18px;
    padding: 20px;
  }

  .brands-header {
    gap: 16px;
  }

  .brands-header .section-intro h2,
  .brand-copy h3 {
    max-width: none;
  }

  .brand-item {
    gap: 12px;
    padding: 18px;
  }

  .brand-copy h3 {
    font-size: 1.18rem;
  }

  .brand-copy p {
    font-size: 0.76rem;
    line-height: 1.7;
  }

  .contact-copy h2 {
    max-width: 8.8ch;
    font-size: clamp(2rem, 11.5vw, 3rem);
  }

  .contact-copy p {
    margin-bottom: 18px;
  }

  .contact-points {
    gap: 10px;
    margin-bottom: 18px;
  }

  .contact-point {
    padding: 16px;
  }

  .contact-box {
    gap: 14px;
    padding: 18px;
  }

  .contact-form {
    gap: 14px;
  }

  .form-grid {
    gap: 12px;
  }

  .form-submit-row {
    gap: 12px;
    padding-top: 4px;
  }

  .form-note {
    max-width: none;
  }

  .footer-panel {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .footer-shell {
    gap: 18px;
    padding-bottom: 20px;
  }

  .footer-bottom {
    gap: 12px;
    padding-top: 18px;
  }
}

@media (max-width: 1200px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brands-shell {
    padding: 22px;
  }

  .brands-header {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .brand-item {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .legal-shell {
    padding: 20px 16px 36px;
  }

  .legal-topbar,
  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-hero,
  .legal-section {
    padding: 22px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-section.full {
    grid-column: auto;
  }
}

/* Modern Homepage Override */

.hero-panel,
.support-panel,
.capabilities-panel,
.clientele-panel,
.results-panel,
.work-panel,
.contact-panel {
  padding-left: 38px;
  padding-right: 38px;
  background: var(--white);
}

.hero-panel,
.support-panel,
.capabilities-panel,
.clientele-panel,
.results-panel,
.work-panel,
.contact-panel {
  padding-top: 0;
}

.hero-panel {
  padding-top: 14px;
  padding-bottom: 42px;
  border-bottom: none;
}

.capabilities-panel {
  padding-top: 34px;
}

.support-panel,
.capabilities-panel,
.clientele-panel,
.results-panel,
.work-panel,
.contact-panel {
  padding-bottom: 48px;
}

.footer-panel {
  padding-top: 48px;
  background: var(--dark);
}

.hero-shell,
.support-shell,
.capabilities-shell,
.client-logo-shell,
.results-shell,
.work-shell,
.contact-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 36px;
  min-height: calc(100svh - 148px);
  align-items: center;
}

.hero-copy {
  max-width: 500px;
  padding-bottom: 0;
}

.hero-kicker,
.section-kicker,
.approach-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-kicker {
  margin-bottom: 18px;
}

.section-intro {
  margin-bottom: 18px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text);
  text-wrap: pretty;
}

.hero-copy h1 {
  max-width: 9.2ch;
  margin: 0 0 16px;
  font-size: clamp(3rem, 6.2vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 33ch;
  margin: 0 0 22px;
  font-size: 0.9rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-primary,
.cta-secondary {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.hero-media,
.support-media {
  position: relative;
}

.hero-media {
  min-height: clamp(400px, calc(100svh - 240px), 520px);
}

.hero-media-main,
.hero-media-detail,
.support-media-primary,
.support-media-secondary,
.work-media,
.contact-visual {
  overflow: hidden;
  border: 1px solid rgba(18, 25, 43, 0.12);
  border-radius: 16px;
}

.hero-media-main,
.support-media-primary,
.support-media-secondary,
.work-media,
.contact-visual {
  position: relative;
  isolation: isolate;
}

.hero-media-main::before,
.support-media-primary::before,
.support-media-secondary::before,
.work-media::before,
.contact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
}

.hero-media-main {
  position: absolute;
  inset: 0 0 0 12%;
  background:
    linear-gradient(180deg, rgba(18, 24, 40, 0.08), rgba(18, 24, 40, 0.12)),
    url("../img/hero-brand-system-main.png") center / cover no-repeat;
  animation: hero-main-float 10s ease-in-out infinite;
  will-change: transform;
}

.hero-media-main::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
}

.hero-media-main::after {
  content: "";
  position: absolute;
  inset: auto 6% 8% auto;
  width: 34%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 72%);
}

.hero-media-detail {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(32%, 200px);
  min-height: 190px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(18, 24, 40, 0.08)),
    url("../img/hero-brand-system-detail.png") center / cover no-repeat;
  box-shadow: 0 18px 40px rgba(18, 25, 43, 0.14);
  animation: hero-detail-float 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-main-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes hero-detail-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 6px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-main,
  .hero-media-detail {
    animation: none;
  }
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.support-media {
  min-height: 440px;
}

.support-media-primary {
  position: absolute;
  inset: 0 18% 0 0;
  background:
    linear-gradient(145deg, rgba(16, 23, 38, 0.92) 0%, rgba(16, 23, 38, 0.92) 36%, rgba(16, 23, 38, 0) 36.4%),
    linear-gradient(125deg, rgba(66, 0, 144, 0.84) 0%, rgba(66, 0, 144, 0.52) 48%, #f3eef8 48.4%, #ffffff 100%);
}

.support-media-primary::after {
  content: "";
  position: absolute;
  inset: auto 10% 10% auto;
  width: 32%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
}

.support-media-secondary {
  position: absolute;
  right: 0;
  bottom: 32px;
  width: 42%;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(248, 245, 252, 0.96), rgba(235, 228, 246, 0.94)),
    linear-gradient(135deg, rgba(255, 255, 255, 0) 28%, rgba(78, 16, 170, 0.94) 28.4%, rgba(66, 0, 144, 0.96) 54%, rgba(255, 255, 255, 0) 54.4%);
}

.support-copy {
  max-width: 480px;
}

.support-copy .section-intro h2 {
  max-width: 10ch;
}

.support-lead,
.capabilities-lead,
.process-lead,
.results-lead,
.work-lead,
.contact-copy p,
.result-card p,
.work-card p {
  color: var(--muted);
}

.support-lead {
  max-width: 35ch;
  margin: 0 0 18px;
  font-size: 0.86rem;
  line-height: 1.75;
}

.support-quote {
  max-width: 22ch;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}

.capabilities-shell {
  display: grid;
  gap: 18px;
}

.capabilities-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.24fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.capabilities-context,
.capabilities-main {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.capabilities-context {
  gap: 10px;
  padding: 24px 22px;
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 14px 28px rgba(18, 25, 43, 0.08);
}

.capabilities-context .section-kicker {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.capabilities-context-copy {
  max-width: 22ch;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.74);
}

.capabilities-main {
  gap: 0;
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.96));
  box-shadow: 0 14px 28px rgba(18, 25, 43, 0.05);
}

.capabilities-main .section-kicker {
  margin-bottom: 10px;
}

.capabilities-main .section-intro {
  margin-bottom: 16px;
}

.capabilities-main .section-intro h2 {
  max-width: 14ch;
}

.capabilities-lead {
  max-width: 48ch;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.85;
}

.capabilities-grid,
.results-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.capability-block,
.process-row,
.result-card,
.results-shell,
.work-card,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 16px;
}

.capability-block,
.process-step,
.result-card,
.work-card,
.contact-box {
  background: var(--white);
}

.capability-block {
  display: grid;
  grid-template-rows: auto minmax(3.2rem, auto) 1fr auto auto;
  align-content: stretch;
  row-gap: 12px;
  min-height: 272px;
  padding: 26px;
}

.capability-block-dark,
.result-card-dark {
  background: var(--dark);
  border-color: var(--dark);
}

.capability-index,
.process-index,
.results-meta span,
.stat-label,
.work-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-index,
.process-index,
.results-meta span,
.work-tag {
  background: var(--blue-soft);
  color: var(--blue);
}

.stat-label {
  background: var(--blue-soft);
  color: var(--blue);
}

.capability-block-dark .capability-index,
.result-card-dark .stat-label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.capability-block h3,
.process-step h3,
.result-card h3,
.work-card h3 {
  margin: 18px 0 14px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
}

.capability-block h3 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.04;
  text-wrap: pretty;
}

.capability-block p,
.process-step p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--muted);
}

.capability-block-dark h3,
.result-card-dark strong,
.result-card-dark h3 {
  color: var(--white);
}

.capability-block-dark p,
.result-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.capability-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(18, 25, 43, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
}

.capability-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: inherit;
  border-bottom: 1px solid currentColor;
}

.capability-block-dark .capability-list li {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.capability-block-dark .capability-link {
  color: var(--white);
}

.process-row {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: #f5f3f8;
}

.process-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: end;
}

.process-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.approach-kicker {
  text-align: left;
}

.process-lead,
.results-lead,
.work-lead {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  min-height: 210px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.process-step h3 {
  max-width: 10ch;
  font-size: 1.2rem;
}

.results-shell {
  display: grid;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.96));
}

.results-intro {
  display: block;
}

.results-copy {
  display: grid;
  gap: 14px;
}

.results-title h2 {
  max-width: 16ch;
}

.results-title h2 span {
  color: #7d8598;
}

.results-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.results-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.result-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.94));
}

.result-card-dark {
  background: var(--dark);
}

.stat-label {
  margin-bottom: 18px;
}

.result-card strong {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(3.1rem, 6.6vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: var(--dark);
}

.result-card-dark strong {
  color: var(--white);
}

.result-card h3 {
  max-width: 15ch;
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.02;
}

.results-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
}

.results-strip p,
.results-strip span {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

.results-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.client-logo-section {
  display: grid;
  gap: 12px;
}

.client-logo-section h3 {
  margin: 0;
}

.clientele-kicker {
  margin-bottom: 0;
}

.work-shell {
  display: grid;
  gap: 20px;
}

.work-header {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 20px;
  align-items: end;
}

.work-header .section-intro {
  margin-bottom: 0;
}

.work-header .section-intro h2 {
  max-width: none;
}

.client-logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.client-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px 12px;
  border: 1px solid rgba(18, 25, 43, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.96));
}

.client-logo-slot span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8194;
}

.work-card {
  display: grid;
  gap: 0;
  min-height: 420px;
  overflow: hidden;
}

.work-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.work-media {
  min-height: 260px;
}

.work-card-featured .work-media {
  min-height: auto;
}

.work-card-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.work-card h3 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.work-card p {
  max-width: 34ch;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
}

.work-note {
  font-size: 0.72rem;
  font-weight: 700;
  color: #667085;
}

.work-card-real-estate .work-media {
  background:
    linear-gradient(145deg, rgba(14, 20, 33, 0.9) 0%, rgba(14, 20, 33, 0.9) 33%, rgba(14, 20, 33, 0) 33.4%),
    linear-gradient(135deg, rgba(66, 0, 144, 0.92) 0%, rgba(66, 0, 144, 0.58) 48%, #f2edf8 48.4%, #ffffff 100%);
}

.work-card-real-estate .work-media::after {
  content: "";
  position: absolute;
  inset: auto 10% 10% auto;
  width: 28%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 72%);
}

.work-card-saas .work-media {
  background:
    linear-gradient(180deg, rgba(17, 22, 38, 0.96), rgba(23, 28, 44, 0.96)),
    linear-gradient(135deg, rgba(82, 23, 176, 0.22), rgba(82, 23, 176, 0));
}

.work-card-saas .work-media::after {
  content: "";
  position: absolute;
  inset: 16% auto auto 10%;
  width: 42%;
  height: 44%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.work-card-ecommerce .work-media {
  background:
    linear-gradient(145deg, rgba(66, 0, 144, 0.16), rgba(66, 0, 144, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 250, 0.96));
}

.work-card-ecommerce .work-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 14% auto;
  width: 46%;
  aspect-ratio: 1.15;
  border: 1px solid rgba(66, 0, 144, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 36%, rgba(66, 0, 144, 0.88) 36.4%, rgba(66, 0, 144, 0.65) 66%, rgba(255, 255, 255, 0) 66.4%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 233, 250, 0.96));
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0;
}

.contact-kicker {
  margin: 0;
}

.contact-copy h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.contact-copy p {
  max-width: 34ch;
  margin: 0;
}

.contact-box {
  gap: 16px;
  padding: 26px;
  background: #f8f9fc;
}

.form-submit-row {
  justify-content: flex-end;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
}

.contact-list li {
  margin-bottom: 0;
}


@media (max-width: 980px) {
  .hero-panel,
  .support-panel,
  .capabilities-panel,
  .clientele-panel,
  .results-panel,
  .work-panel,
  .contact-panel {
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 44px;
  }

  .hero-shell,
  .support-shell,
  .capabilities-intro,
  .capabilities-grid,
  .process-copy,
  .process-steps,
  .results-intro,
  .client-logo-strip,
  .results-grid,
  .work-header,
  .work-grid,
  .work-card-featured,
  .contact-shell,
  .form-grid.two-up,
  .portfolio-bento-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell,
  .support-shell,
  .contact-shell {
    gap: 24px;
  }

  .capabilities-intro {
    gap: 16px;
  }

  .capability-block {
    grid-template-rows: auto;
    row-gap: 14px;
  }

  .capabilities-context {
    padding: 20px;
  }

  .capabilities-context-copy {
    max-width: none;
  }

  .client-logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .results-summary {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-media-detail {
    left: 16px;
    bottom: 16px;
    min-height: 160px;
  }

  .support-media {
    min-height: 320px;
  }

  .support-media-secondary {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .hero-panel,
  .support-panel,
  .capabilities-panel,
  .clientele-panel,
  .results-panel,
  .work-panel,
  .contact-panel {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 34px;
  }

  .hero-shell,
  .support-shell,
  .capabilities-shell,
  .results-shell,
  .work-shell,
  .contact-shell {
    gap: 16px;
  }

  .capabilities-context {
    padding: 20px;
  }

  .capabilities-main {
    padding: 18px;
  }

  .client-logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo-slot {
    min-height: 72px;
    padding: 12px 10px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero-copy p {
    margin-bottom: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  .hero-media {
    min-height: 230px;
  }

  .hero-media-main {
    inset: 0;
  }

  .hero-media-detail {
    left: 16px;
    bottom: 16px;
    width: min(34%, 132px);
    min-height: 96px;
  }

  .support-media {
    min-height: 260px;
  }

  .support-media-primary {
    inset: 0 12% 0 0;
  }

  .support-media-secondary {
    width: 42%;
    min-height: 160px;
    bottom: 18px;
  }

  .capability-block,
  .process-row,
  .results-shell,
  .work-card,
  .contact-box {
    padding: 16px;
  }

  .process-row {
    gap: 14px;
  }

  .process-step,
  .result-card {
    min-height: auto;
    padding: 16px;
  }

  .results-title h2,
  .capabilities-main .section-intro h2 {
    max-width: none;
  }

  .results-meta,
  .results-strip {
    justify-content: flex-start;
  }

  .results-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .work-card-copy {
    padding: 16px;
  }

  .contact-copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .contact-box {
    gap: 12px;
  }
}

.subpage-intro,
.subpage-summary-section,
.subpage-content-section {
  width: 100%;
}

.subpage-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.subpage-intro {
  padding: 26px 24px 20px;
  background: #ffffff;
}

.subpage-intro-block {
  display: grid;
  gap: 14px;
}

.subpage-breadcrumb {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(66, 0, 144, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.subpage-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.subpage-intro-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.subpage-lead {
  max-width: 58ch;
  margin: 14px 0 0;
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--muted);
}

.subpage-intro-meta {
  display: grid;
  gap: 12px;
}

.subpage-intro-item {
  padding: 16px 18px;
  border: 1px solid rgba(18, 25, 43, 0.08);
  border-radius: 16px;
  background: #faf8fc;
}

.subpage-intro-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--text);
}

.subpage-intro-item span {
  display: block;
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--muted);
}

.subpage-summary-section,
.subpage-content-section {
  padding: 28px 24px 0;
}

.subpage-content-section {
  padding-bottom: 28px;
}

.subpage-content-section.subtle {
  background: #faf7fd;
}

.subpage-summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: center;
  padding: 0 0 10px;
}

.subpage-summary-copy {
  padding: 0 0 6px;
}

.subpage-summary-copy h2 {
  max-width: 14ch;
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subpage-summary-copy p {
  max-width: 44ch;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.subpage-summary-figure {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.96));
}

.subpage-summary-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(18, 25, 43, 0.12);
  border-radius: 16px;
}

.subpage-content-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 30px;
  align-items: start;
}

.subpage-side {
  position: sticky;
  top: 108px;
}

.subpage-side .section-kicker {
  margin-bottom: 10px;
}

.subpage-side h2 {
  max-width: 11ch;
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subpage-side p {
  max-width: 28ch;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.85;
  color: var(--muted);
}

.subpage-main {
  min-width: 0;
}

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

.subpage-platform-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(18, 25, 43, 0.05);
}

.subpage-platform-card.meta {
  background: linear-gradient(180deg, #171c2c 0%, #21283d 100%);
  border-color: #171c2c;
}

.subpage-platform-card.meta h3,
.subpage-platform-card.meta p,
.subpage-platform-card.meta .subpage-index,
.subpage-platform-card.meta .platform-points li {
  color: var(--white);
}

.subpage-platform-card.meta p,
.subpage-platform-card.meta .platform-points li {
  color: rgba(255, 255, 255, 0.76);
}

.subpage-platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.platform-icon-mark {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.platform-icon.meta {
  background: linear-gradient(135deg, #6d2dff 0%, #420090 100%);
  color: var(--white);
}

.platform-icon.google {
  background: conic-gradient(from 210deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: var(--white);
}

.platform-icon.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #0a66c2 100%);
  color: var(--white);
}

.platform-icon.amazon {
  background: linear-gradient(135deg, #232f3e 0%, #131a22 100%);
  color: #ffb84d;
}

.subpage-index {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.subpage-platform-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.06;
  color: var(--text);
}

.subpage-platform-card p,
.subpage-copy-block p,
.subpage-bullet-list li {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--muted);
}

.platform-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.platform-points li {
  position: relative;
  padding-left: 16px;
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--muted);
}

.platform-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

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

.subpage-detail-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.detail-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f0e6fb;
  position: relative;
}

.detail-icon::before,
.detail-icon::after {
  content: "";
  position: absolute;
}

.detail-icon.strategy::before {
  inset: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.detail-icon.strategy::after {
  width: 10px;
  height: 2px;
  right: 8px;
  bottom: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}

.detail-icon.creative::before {
  left: 12px;
  top: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  transform: rotate(45deg);
}

.detail-icon.creative::after {
  left: 18px;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.detail-icon.optimize::before {
  left: 10px;
  top: 18px;
  width: 22px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 -8px 0 0 var(--blue), 0 8px 0 0 var(--blue);
}

.detail-icon.optimize::after {
  left: 22px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: -10px 8px 0 0 var(--blue), 4px 16px 0 0 var(--blue);
}

.detail-icon.report::before {
  left: 11px;
  bottom: 10px;
  width: 6px;
  height: 12px;
  background: var(--blue);
  box-shadow: 8px -6px 0 0 var(--blue), 16px -12px 0 0 var(--blue);
}

.detail-icon.report::after {
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  background: rgba(66, 0, 144, 0.25);
}

.subpage-detail-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.subpage-detail-card p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.82;
  color: var(--muted);
}

.subpage-copy-block {
  max-width: 700px;
}

.subpage-bullet-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.subpage-bullet-list li {
  position: relative;
  padding-left: 18px;
}

.subpage-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.subpage-contact-panel {
  padding-top: 10px;
}

@media (max-width: 980px) {
  .subpage-intro-row,
  .subpage-summary-layout,
  .subpage-content-layout,
  .subpage-detail-grid,
  .subpage-platform-grid {
    grid-template-columns: 1fr;
  }

  .subpage-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .subpage-intro,
  .subpage-summary-section,
  .subpage-content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .subpage-summary-figure,
  .subpage-detail-card,
  .subpage-intro-item {
    padding: 16px;
  }

  .subpage-platform-card {
    padding: 16px;
  }
}

.cta-primary:hover,
.contact-submit:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

/* ─── Work Panel & Portfolio Grid ─── */

.work-panel {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--white);
}

.work-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.portfolio-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-bento-grid .bento-item {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f5f3f8;
}

.portfolio-bento-grid .bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Global Border Radius (16px / ~15-20% roundness) ─── */

.small-pill,
.mobile-nav-toggle,
.cta-primary,
.cta-secondary,
.image-placeholder,
.hero-image-placeholder,
.problems-copy,
.info-card,
.approach-principle,
.achievements-showcase,
.achievement-stat,
.achievements-meta span,
.story-card,
.story-tag,
.author-avatar,
.stories-copy,
.contact-kicker,
.contact-point,
.contact-box,
.contact-submit,
.form-field input,
.form-field select,
.form-field textarea,
.brand-item,
.brand-index,
.brands-shell,
.mobile-drawer-cta,
.legal-hero,
.legal-section,
.legal-meta span,
.legal-note {
  border-radius: 16px;
}
