:root {
  --ink: #10151d;
  --paper: #ffffff;
  --paper-deep: #f1f3ef;
  --green: #249363;
  --green-deep: #176743;
  --blue: #244ca5;
  --orange: #ef6b18;
  --line: rgba(16, 21, 29, 0.16);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 21, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  width: min(190px, 42vw);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 32px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: transparent;
  padding: 11px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: #ffffff;
}

main {
  overflow: hidden;
}

section {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-panel {
  width: min(1480px, calc(100% - 36px));
  margin: 28px auto;
  padding: clamp(48px, 7vw, 108px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 147, 99, 0.08), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(239, 107, 24, 0.07), transparent 24%),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  border-radius: 0;
  overflow: hidden;
}

.hero.section-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: clamp(16px, 1.6vw, 30px) clamp(34px, 3vw, 56px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 1101px) {
  .hero {
    align-items: stretch;
  }

  .hero-copy {
    align-self: start;
    margin-top: clamp(12px, 2vh, 24px);
  }

  .hero-art {
    align-self: stretch;
    min-height: 680px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: calc(100% - clamp(48px, 8vw, 150px));
  height: clamp(92px, 11vw, 205px);
  background: url("./assets/easyfantasy-wordmark-gray.png?v=2") center bottom / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--green-deep);
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 950;
  font-style: italic;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: clamp(190px, 15vw, 260px);
  aspect-ratio: 20 / 3;
  color: transparent;
  font-size: 0;
  background: url("./assets/easyfantasy-wordmark-green.png?v=2") left center / contain no-repeat;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.4vw, 116px);
  line-height: 1.02;
  font-weight: 950;
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6.4vw, 104px);
  line-height: 0.98;
  font-weight: 950;
}

h3 {
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.1;
  font-weight: 950;
}

p {
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 800;
}

.hero-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-intro h2 {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1;
  font-weight: 950;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid var(--ink);
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-secondary {
  background: var(--paper);
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 680px;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(16, 21, 29, 0.95);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-photo-main {
  left: 7%;
  top: 3%;
  width: 84%;
  height: 62%;
  border-radius: 0 110px 0 110px;
  transform: rotate(-1.2deg);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(16, 21, 29, 0.95);
  filter: none;
}

@media (min-width: 1400px) {
  .hero.section-panel {
    width: 100%;
    max-width: none;
    padding-inline: clamp(140px, 10vw, 220px);
  }

  .hero {
    grid-template-columns: minmax(540px, 0.76fr) minmax(720px, 1.24fr);
    gap: clamp(42px, 3.5vw, 72px);
  }

  .hero-art-label {
    right: 5%;
  }
}

.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(36, 147, 99, 0.28), transparent 46%),
    linear-gradient(0deg, rgba(16, 21, 29, 0.1), transparent 42%);
  mix-blend-mode: multiply;
}

.hero-photo-side {
  right: -1%;
  bottom: 3%;
  width: 54%;
  height: 38%;
  transform: rotate(-5.5deg);
  z-index: 2;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(12px 12px 0 rgba(16, 21, 29, 0.95));
  animation: hero-orbit 6s ease-in-out infinite alternate;
}

.hero-photo-side img {
  -webkit-mask: url("./assets/nature-cutout.png") center / contain no-repeat;
  mask: url("./assets/nature-cutout.png") center / contain no-repeat;
}

.hero-graphic-chip {
  position: absolute;
  left: 31%;
  bottom: 13%;
  width: 29%;
  height: 29%;
  z-index: 1;
  pointer-events: none;
  background: url("./assets/culture.png") center bottom / contain no-repeat;
  transform: rotate(7deg);
  filter: drop-shadow(7px 8px 0 rgba(16, 21, 29, 0.92));
  animation: hero-chip-drift 7s ease-in-out infinite alternate;
}

.hero-art-label {
  position: absolute;
  right: 4%;
  top: 3%;
  z-index: 6;
  color: var(--orange);
  font-size: clamp(42px, 5.8vw, 90px);
  line-height: 0.82;
  font-weight: 950;
  font-style: italic;
  text-shadow: 3px 3px 0 var(--ink);
}

.hero-title-smile {
  position: absolute;
  right: -28px;
  bottom: -20px;
  z-index: 2;
  width: 92px;
  height: 70px;
  background: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  filter: drop-shadow(3px 3px 0 rgba(16, 21, 29, 0.85));
  transform-origin: 62% 58%;
  animation: hero-smile-float 5.8s ease-in-out infinite alternate;
}

.hero-art::before {
  content: none;
  position: absolute;
  left: -10%;
  top: 5%;
  width: 52%;
  height: 76%;
  background: url("./assets/nature-cutout.png") center / contain no-repeat;
  z-index: -1;
}

.hero-art::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -2%;
  width: 25%;
  height: 34%;
  background: url("./assets/innovation-cutout.png") center / contain no-repeat;
  z-index: 4;
  animation: hero-star-pulse 5s ease-in-out infinite alternate;
}

@keyframes hero-orbit {
  from {
    transform: translate3d(0, 0, 0) rotate(-5.5deg);
  }
  to {
    transform: translate3d(-8px, -10px, 0) rotate(-3.5deg);
  }
}

@keyframes hero-chip-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  to {
    transform: translate3d(6px, -7px, 0) rotate(10deg);
  }
}

@keyframes hero-star-pulse {
  from {
    transform: scale(0.96) rotate(-3deg);
  }
  to {
    transform: scale(1.04) rotate(3deg);
  }
}

@keyframes hero-smile-float {
  from {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(0.98);
  }
  to {
    transform: translate3d(-4px, -6px, 0) rotate(3deg) scale(1.04);
  }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(26px, 4vw, 54px) clamp(18px, 3vw, 36px);
  background: var(--white);
  border: 2px solid rgba(16, 21, 29, 0.12);
  box-shadow: 8px 8px 0 var(--ink);
}

.core-business-card {
  position: relative;
  min-height: 230px;
  padding: 18px clamp(18px, 2.4vw, 34px) 0;
  border-right: 1px solid rgba(16, 21, 29, 0.14);
  background: transparent;
}

.core-business-card:last-child {
  border-right: 0;
}

.core-business-card::after {
  content: "→";
  position: absolute;
  left: clamp(18px, 2.4vw, 34px);
  bottom: 0;
  font-size: 20px;
  font-weight: 950;
}

.core-business-card:last-child::after {
  content: "";
}

.core-business-card i {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  top: 10px;
  width: 68px;
  height: 68px;
  background: var(--green);
  border-radius: 19px 19px 4px 19px;
}

.core-business-card i::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--paper);
}

.core-business-leaf i::after {
  border-radius: 50%;
  transform: rotate(-24deg) scaleX(1.55);
}

.core-business-mountain i::after {
  clip-path: polygon(50% 2%, 93% 92%, 7% 92%);
}

.core-business-smile i::after {
  -webkit-mask: url("./assets/smile-logo-mark.png") center / contain no-repeat;
  mask: url("./assets/smile-logo-mark.png") center / contain no-repeat;
}

.core-business-star i::after {
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
}

.core-business-card h2 {
  margin: 78px 0 26px;
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.05;
  font-weight: 950;
}

.core-business-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}

.core-business-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 22px;
  max-width: 850px;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 850;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(32px, 5vw, 72px);
}

.section-heading p:not(.section-kicker) {
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 750;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
}

.advantage-grid div {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(24px, 3vw, 42px);
  background: #ffffff;
  border-radius: 0 48px 0 48px;
  box-shadow: 0 18px 42px rgba(16, 21, 29, 0.08);
}

.advantage-grid div:nth-child(2) {
  background: #eef5df;
  margin-top: clamp(26px, 3vw, 54px);
  border-radius: 48px 0 48px 0;
}

.advantage-grid div:nth-child(3) {
  background: #eaf4f6;
  color: var(--ink);
  margin-top: clamp(8px, 1vw, 18px);
  border-radius: 0 48px 0 48px;
}

.advantage-grid div:nth-child(4) {
  background: #fff5ee;
  margin-top: clamp(42px, 4vw, 78px);
  border-radius: 48px 0 48px 0;
}

.advantage-grid div::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(36, 147, 99, 0.12);
}

.advantage-grid div:nth-child(2)::after {
  background: rgba(255, 106, 20, 0.14);
}

.advantage-grid div:nth-child(3)::after {
  background: rgba(28, 87, 184, 0.12);
}

.advantage-grid div:nth-child(4)::after {
  background: rgba(36, 147, 99, 0.1);
}

.service-heading {
  max-width: none;
  margin-bottom: clamp(44px, 6vw, 88px);
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border-block: 1px solid rgba(16, 21, 29, 0.12);
}

.advantage-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-weight: 700;
}

.advantage-grid span {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-bottom: clamp(24px, 3vw, 42px);
  padding-bottom: 8px;
  border-bottom: 4px solid currentColor;
  color: var(--green-deep);
  font-size: clamp(38px, 4.5vw, 78px);
  line-height: 0.9;
  font-weight: 950;
  font-style: italic;
}

.advantage-grid div:nth-child(2) span {
  color: var(--orange);
}

.advantage-grid div:nth-child(3) span {
  color: var(--blue);
}

.advantage-grid div:nth-child(4) span {
  color: var(--orange);
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 42px clamp(22px, 2.7vw, 38px) 34px;
  background: var(--white);
  border-right: 1px solid rgba(16, 21, 29, 0.12);
}

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

.service-item h3 {
  position: relative;
  z-index: 2;
  margin-top: 78px;
  margin-bottom: 28px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0;
}

.service-item i {
  position: absolute;
  right: 28px;
  top: 34px;
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 20px 20px 4px 20px;
}

.service-item i::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--paper);
  border-radius: 0;
  transform: none;
  clip-path: none;
}

.service-item-leaf i::after {
  -webkit-mask: url("./assets/nature-cutout.png") center / contain no-repeat;
  mask: url("./assets/nature-cutout.png") center / contain no-repeat;
}

.service-item-mountain i::after {
  -webkit-mask: url("./assets/culture.png") center / contain no-repeat;
  mask: url("./assets/culture.png") center / contain no-repeat;
}

.service-item-smile i::after {
  -webkit-mask: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  mask: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
}

.service-item-star i::after {
  -webkit-mask: url("./assets/innovation-cutout.png") center / contain no-repeat;
  mask: url("./assets/innovation-cutout.png") center / contain no-repeat;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.service-item b {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  font-size: 20px;
  line-height: 1;
}

.advantages {
  position: relative;
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding-block: clamp(72px, 9vw, 138px);
  background: var(--paper);
  color: var(--ink);
  overflow: visible;
}

.advantages::before {
  content: "";
  position: absolute;
  left: -10vw;
  top: clamp(52px, 7vw, 110px);
  width: min(420px, 34vw);
  height: min(420px, 34vw);
  background: var(--green);
  border-radius: 999px;
  opacity: 0.08;
  pointer-events: none;
}

.advantages + .idea-library {
  margin-top: clamp(8px, 2vw, 28px);
}

.advantages .section-kicker {
  color: var(--green-deep);
}

.advantages .section-heading p:not(.section-kicker) {
  max-width: 760px;
}

.advantage-grid strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 950;
}

.cases {
  width: min(1480px, calc(100% - 36px));
}

.cases-strip {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(74px, 8vw, 132px) 0 clamp(68px, 7vw, 112px);
  background: var(--green);
  overflow: hidden;
}

.cases-strip .cases-heading {
  max-width: none;
  margin: 0 auto clamp(58px, 6vw, 92px);
  text-align: center;
  color: var(--white);
}

.cases-strip .section-kicker {
  color: rgba(255, 250, 240, 0.82);
  letter-spacing: 0.08em;
}

.cases-strip h2 {
  color: var(--white);
}

.case-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.case-filter {
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.case-filter.is-active {
  background: var(--ink);
  color: var(--white);
}

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

.cases-strip .case-grid {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  padding: 0 max(24px, calc((100vw - 1480px) / 2));
  overflow: visible;
  animation: cases-marquee 36s linear infinite alternate;
  will-change: transform;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.cases-strip .case-card {
  flex: 0 0 clamp(330px, 28vw, 520px);
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--white);
}

@keyframes cases-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw - 100%));
  }
}

.case-card:hover {
  transform: translate(-4px, -4px);
}

.cases-strip .case-card:hover {
  transform: translateY(-6px);
}

.case-card::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 86px;
  height: 68px;
  background: url("./assets/culture-cutout.png") center / contain no-repeat;
  filter: drop-shadow(3px 3px 0 var(--ink));
}

.cases-strip .case-card::before {
  content: none;
}

.case-card:nth-child(2)::before {
  width: 88px;
  background-image: url("./assets/smile-logo-cutout.png");
}

.case-card:nth-child(3)::before {
  width: 72px;
  background-image: url("./assets/innovation-cutout.png");
}

.case-card.is-hidden {
  display: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  filter: saturate(1.08) contrast(1.04);
}

.cases-strip .case-card img {
  aspect-ratio: 1 / 1.08;
  border: 0;
  filter: saturate(1.08) contrast(1.03);
}

.case-card:nth-child(1) img {
  object-position: center top;
}

.case-card:nth-child(2) img {
  object-position: 42% center;
}

.case-card:nth-child(3) img {
  object-position: center top;
}

.case-body {
  padding: 24px;
}

.cases-strip .case-body {
  padding: 24px 10px 0;
  text-align: center;
}

.case-body > p {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
}

.cases-strip .case-body > p {
  display: block;
  margin: 8px 0 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 250, 240, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.cases-strip .case-body h3 {
  min-height: 0;
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.3;
}

.case-body h3 {
  min-height: 78px;
  margin-bottom: 18px;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 18px;
}

dt {
  color: rgba(16, 21, 29, 0.58);
  font-size: 12px;
  font-weight: 950;
}

dd {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
}

.case-body span {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 780;
}

.idea-library {
  position: relative;
  display: grid;
  width: min(1480px, calc(100% - 36px));
  max-width: 1480px;
  margin: clamp(24px, 5vw, 76px) auto;
  min-height: clamp(680px, 76vw, 980px);
  padding: clamp(72px, 8vw, 132px) clamp(22px, 6vw, 104px) clamp(40px, 5vw, 72px);
  overflow: hidden;
  background: var(--green);
  color: var(--white);
  border-radius: 0 clamp(72px, 8vw, 130px) 0 clamp(72px, 8vw, 130px);
}

.idea-library::before {
  content: none;
}

.idea-library::after {
  content: "";
  position: absolute;
  left: clamp(28px, 10vw, 190px);
  top: clamp(80px, 12vw, 170px);
  width: clamp(220px, 24vw, 410px);
  height: 2px;
  background: var(--green);
  border-top: 3px solid var(--green);
  box-shadow:
    0 76px 0 var(--green),
    0 154px 0 var(--green);
  transform: rotate(-7deg);
  opacity: 0.95;
}

.idea-mark {
  position: absolute;
  right: max(-68px, -8%);
  top: clamp(38px, 5vw, 70px);
  z-index: 5;
  width: clamp(120px, 14vw, 210px);
  height: clamp(120px, 14vw, 210px);
  background: url("./assets/innovation-cutout.png") center / contain no-repeat;
  opacity: 0.98;
  filter: drop-shadow(5px 7px 0 rgba(16, 21, 29, 0.2));
  pointer-events: none;
}

.idea-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  justify-self: center;
  width: min(980px, 78vw);
  margin-top: clamp(10px, 3vw, 44px);
}

.idea-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 20px 0 rgba(16, 21, 29, 0.12);
}

.idea-card-primary {
  align-self: end;
  margin-top: clamp(120px, 12vw, 190px);
}

.idea-card-secondary {
  margin-top: 0;
}

.idea-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.idea-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 106, 20, 0.48);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.idea-card figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 12px rgba(16, 21, 29, 0.22);
}

.idea-smile {
  position: absolute;
  left: max(-68px, -7%);
  top: calc(clamp(120px, 12vw, 190px) + 45%);
  z-index: 4;
  width: clamp(92px, 10vw, 150px);
  height: clamp(72px, 8vw, 118px);
  background: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.idea-footer {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  width: min(1120px, 100%);
  margin: clamp(54px, 7vw, 110px) auto 0;
}

.idea-footer .section-kicker {
  margin-bottom: 12px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.22em;
  text-transform: none;
}

.idea-footer h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 72px);
}

.idea-footer a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 950;
}

.idea-triangle {
  width: 62px;
  height: 54px;
  background: url("./assets/culture.png") center / contain no-repeat;
  filter: drop-shadow(4px 5px 0 rgba(16, 21, 29, 0.32));
  transform: rotate(5deg);
  flex: 0 0 auto;
}

.idea-footer b {
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.team {
  position: relative;
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
  padding-block: clamp(74px, 9vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.idea-library + .team {
  padding-top: clamp(42px, 6vw, 84px);
}

.team::before {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 78px);
  bottom: clamp(-12px, -1vw, -4px);
  width: min(560px, 54vw);
  height: min(180px, 18vw);
  background: url("./assets/team-wordmark-watermark-custom.png") left bottom / contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.team-copy p:not(.section-kicker) {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 780;
}

.team-media {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(16, 21, 29, 0.12);
  border-radius: 110px 0 110px 0;
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.03);
}

.team-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(36, 147, 99, 0.14), transparent 44%);
  pointer-events: none;
}

.partners {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) 0 clamp(58px, 7vw, 104px);
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 120px);
  bottom: clamp(18px, 4vw, 64px);
  width: min(420px, 38vw);
  height: min(260px, 24vw);
  background: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.partners-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1480px, calc(100% - 36px));
  margin-inline: auto;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.partners-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 108px);
}

.partner-marquee {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: grid;
  grid-template-rows: repeat(4, clamp(44px, 4.2vw, 66px));
  row-gap: clamp(28px, 3vw, 44px);
  column-gap: 0;
  align-items: center;
  align-content: center;
  padding-block: 18px 38px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partner-track {
  display: flex;
  align-items: center;
  align-self: center;
  width: max-content;
  height: clamp(44px, 4.2vw, 66px);
  gap: clamp(16px, 2vw, 30px);
  animation: client-logo-marquee 44s linear infinite;
  will-change: transform;
}

.partner-track-b {
  animation-duration: 52s;
  animation-direction: reverse;
  animation-delay: -12s;
}

.partner-track-c {
  animation-duration: 48s;
  animation-delay: -22s;
}

.partner-track-d {
  animation-duration: 58s;
  animation-direction: reverse;
  animation-delay: -30s;
}

.partner-logo {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  position: relative;
  flex: 0 0 clamp(78px, 6.4vw, 122px);
  height: clamp(34px, 3.6vw, 56px);
  padding: 2px 5px;
  line-height: 0;
}

.partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-logo.is-medium-logo img {
  width: 86%;
  height: 86%;
}

.partner-logo.is-compact-logo img {
  width: 70%;
  height: 70%;
}

.partner-logo.is-compact-logo[data-logo="logo-758"] img,
.partner-logo.is-compact-logo[data-logo="logo-741"] img,
.partner-logo[data-logo="logo-758"] img,
.partner-logo[data-logo="logo-741"] img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 92%;
  max-width: 92%;
  transform: translate(-50%, -50%);
  object-position: center center;
}

.partner-logo.is-compact-logo[data-logo="logo-731"] img,
.partner-logo[data-logo="logo-731"] img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 92%;
  max-width: 96%;
  transform: translate(-50%, -50%);
  object-position: center center;
}

@keyframes client-logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  padding-bottom: clamp(84px, 10vw, 150px);
}

.contact::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: 34px;
  width: min(620px, 64vw);
  height: min(330px, 34vw);
  background: url("./assets/nature-cutout.png") center / contain no-repeat;
  z-index: -1;
}

.contact-copy p:not(.section-kicker) {
  max-width: 760px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 780;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 950;
  word-break: break-word;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(300px, 52vw);
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.site-footer span {
  font-weight: 850;
}

.subpage-main {
  padding-top: clamp(56px, 7vw, 104px);
  background: var(--paper);
}

.subpage-hero,
.case-detail-hero,
.idea-detail-hero {
  position: relative;
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto clamp(32px, 5vw, 72px);
  overflow: hidden;
}

.subpage-hero h1,
.case-detail-hero h1,
.idea-detail-hero h1 {
  max-width: 7.8em;
  margin: 0 0 18px;
  font-size: clamp(58px, 9vw, 146px);
  line-height: 0.95;
}

.subpage-hero p:not(.section-kicker),
.case-detail-hero p:not(.section-kicker),
.idea-detail-hero p:not(.section-kicker) {
  max-width: 760px;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 850;
}

.cases-list-hero::after,
.idea-detail-hero::after {
  content: "";
  position: absolute;
  right: clamp(8px, 8vw, 120px);
  bottom: 0;
  width: min(260px, 24vw);
  aspect-ratio: 1;
  background: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  opacity: 0.14;
}

.case-list-section {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto clamp(80px, 9vw, 140px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.case-list-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(310px, 34vw, 520px);
  padding: clamp(18px, 2vw, 30px);
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0 58px 0 58px;
  isolation: isolate;
  box-shadow: 0 20px 54px rgba(16, 21, 29, 0.14);
  transition:
    transform 180ms ease,
    border-radius 180ms ease;
}

.case-list-card-large {
  grid-column: span 2;
}

.case-list-card:hover,
.case-list-card:focus-visible {
  transform: translateY(-8px);
  border-radius: 58px 0 58px 0;
}

.case-list-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.case-list-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 21, 29, 0.04), rgba(16, 21, 29, 0.72));
}

.case-list-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  background: var(--orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
}

.case-list-card strong {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 44px);
  line-height: 1.05;
}

.case-detail-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.case-detail-layout {
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto clamp(82px, 9vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
}

.case-detail-media {
  min-height: clamp(420px, 48vw, 720px);
  overflow: hidden;
  border-radius: 0 96px 0 96px;
  background: #d8efe9;
}

.case-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-info {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(24px, 3vw, 46px);
  background: var(--green);
  color: #ffffff;
  border-radius: 84px 0 84px 0;
}

.case-detail-info dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0;
}

.case-detail-info dt {
  color: rgba(255, 255, 255, 0.72);
}

.case-detail-info dd {
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
}

.idea-detail-page {
  background: var(--green);
  color: #ffffff;
}

.idea-detail-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: clamp(260px, 33vw, 520px);
  padding-top: clamp(38px, 5vw, 80px);
}

.idea-detail-hero .section-kicker,
.idea-detail-hero h1,
.idea-detail-hero p {
  color: #ffffff;
}

.idea-detail-smile {
  flex: 0 0 min(220px, 24vw);
  aspect-ratio: 1.28;
  background: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.idea-detail-grid {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(82px, 9vw, 140px);
  display: grid;
  gap: clamp(18px, 3vw, 42px);
}

.idea-detail-grid article {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
  min-height: clamp(280px, 28vw, 440px);
}

.idea-detail-grid article:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
}

.idea-detail-grid article:nth-child(even) img {
  order: 2;
}

.idea-detail-grid img {
  width: 100%;
  height: clamp(260px, 32vw, 480px);
  object-fit: cover;
  border-radius: 0 70px 0 70px;
}

.idea-detail-grid div {
  max-width: 640px;
}

.idea-detail-grid span {
  color: var(--orange);
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 950;
  font-style: italic;
}

.idea-detail-grid h2 {
  margin: 8px 0 14px;
  color: #ffffff;
}

.idea-detail-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 820;
}

.consult-page {
  overflow: hidden;
}

.consult-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 82px);
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 138px) 0 clamp(42px, 6vw, 80px);
}

.consult-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-size: clamp(58px, 10vw, 148px);
  line-height: 0.92;
}

.consult-hero p:not(.section-kicker) {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
}

.consult-shape {
  width: clamp(110px, 18vw, 260px);
  aspect-ratio: 1;
  background: url("./assets/smile-logo-cutout.png") center / contain no-repeat;
  opacity: 0.14;
}

.consult-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 4vw, 72px);
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(80px, 9vw, 140px);
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 52px);
  background: #f4f8f2;
  border-radius: 0 72px 0 72px;
  box-shadow: 0 22px 54px rgba(16, 21, 29, 0.1);
}

.consult-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.consult-form span {
  color: var(--green-deep);
  font-size: 14px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  background: #ffffff;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
}

.consult-form textarea {
  resize: vertical;
}

.consult-form-wide,
.consult-submit {
  grid-column: 1 / -1;
}

.consult-submit {
  justify-self: start;
  min-width: 160px;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.consult-side {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 10px 10px 0 var(--orange);
}

.consult-side strong {
  font-size: clamp(24px, 3vw, 38px);
}

.consult-side a,
.consult-side span {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 850;
}

.floating-cta {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 30;
  display: grid;
  gap: 2px;
  min-width: 138px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  background: var(--orange);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.floating-cta span {
  font-size: 12px;
  font-weight: 950;
  font-style: italic;
}

.floating-cta strong {
  font-size: 18px;
  font-weight: 950;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
    font-size: 12px;
  }

  .hero,
  .team,
  .partners-heading,
  .case-detail-layout,
  .contact,
  .layout-split {
    grid-template-columns: 1fr;
  }

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

  .case-detail-hero,
  .idea-detail-hero {
    display: grid;
  }

  .idea-detail-grid article,
  .idea-detail-grid article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .idea-detail-grid article:nth-child(even) img {
    order: 0;
  }

  .partners-heading {
    display: grid;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero::before {
    left: 50%;
    bottom: 18px;
    width: calc(100% - 28px);
    height: clamp(48px, 12vw, 76px);
    background: url("./assets/easyfantasy-wordmark-gray.png?v=2") center bottom / contain no-repeat;
    transform: translateX(-50%);
  }

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

  .hero-art {
    min-height: 620px;
  }

  .service-grid,
  .advantage-grid,
  .case-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idea-library {
    min-height: auto;
  }

  .idea-stage {
    width: min(760px, 88vw);
    gap: 24px;
  }

  .cases-strip .case-grid {
    overflow: visible;
    padding-inline: 18px;
  }

  .cases-strip .case-card {
    flex-basis: min(72vw, 360px);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 65px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    font-size: 15px;
    color: var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .consult-hero,
  .consult-form-section,
  .consult-form {
    grid-template-columns: 1fr;
  }

  .consult-shape {
    display: none;
  }

  .consult-form {
    border-radius: 0 42px 0 42px;
  }

  section,
  .section-panel,
  .cases {
    width: min(100% - 24px, 1480px);
  }

  .advantages,
  .team,
  .partners,
  .idea-library {
    width: min(100% - 24px, 1480px);
  }

  .section-panel {
    padding: 34px 18px;
    margin: 16px auto;
  }

  .hero.section-panel {
    width: 100%;
    margin: 0;
    padding: 14px 18px 24px;
    border: 0;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  h1 {
    max-width: 9em;
    white-space: normal;
    font-size: clamp(54px, 17vw, 82px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .hero-subtitle,
  .about-copy {
    font-size: 18px;
  }

  .hero-intro h2 {
    font-size: 18px;
  }

  .hero-art {
    width: calc(100% + 36px);
    margin-inline: -18px;
    box-shadow: none;
    min-height: 460px;
  }

  .hero-photo-main {
    left: 0;
    top: 0;
    width: 100%;
    height: 52%;
  }

  .hero-photo-side {
    right: -4%;
    bottom: 5%;
    width: 68%;
    height: 34%;
  }

  .hero-graphic-chip {
    left: 19%;
    bottom: 13%;
    width: 35%;
    height: 27%;
  }

  .brand-shape-fill {
    width: 100%;
    height: 56%;
  }

  .brand-shape-outline {
    right: -2%;
    top: 8%;
    width: 48%;
    height: 30%;
  }

  .hero-art-label {
    right: 3%;
    top: 3%;
    font-size: clamp(34px, 12vw, 62px);
  }

  .hero-title-smile {
    right: -18px;
    bottom: -14px;
    width: 66px;
    height: 52px;
  }

  .service-grid,
  .advantage-grid,
  .case-grid,
  .case-list-section,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .case-list-card-large {
    grid-column: auto;
  }

  .subpage-hero h1,
  .case-detail-hero h1,
  .idea-detail-hero h1 {
    font-size: clamp(48px, 15vw, 82px);
  }

  .case-detail-media {
    min-height: 360px;
    border-radius: 0 56px 0 56px;
  }

  .case-detail-info {
    border-radius: 56px 0 56px 0;
  }

  .cases-strip {
    padding: 56px 0 68px;
  }

  .cases-strip .case-grid {
    gap: 10px;
  }

  .cases-strip .case-card {
    flex-basis: 78vw;
  }

  .service-item,
  .advantage-grid div {
    min-height: auto;
  }

  .advantage-grid div,
  .advantage-grid div:nth-child(2),
  .advantage-grid div:nth-child(3),
  .advantage-grid div:nth-child(4) {
    margin-top: 0;
    border-radius: 0 34px 0 34px;
  }

  .case-body h3 {
    min-height: 0;
  }

  .case-card::before {
    width: 44px;
    height: 44px;
    border-radius: 0 22px 22px 22px;
  }

  .team-media {
    border-radius: 70px 0 70px 0;
    box-shadow: 0 14px 36px rgba(16, 21, 29, 0.12);
  }

  .partner-logo {
    flex-basis: 74px;
    height: 34px;
    padding: 2px 4px;
  }

  .partner-logo img {
    max-height: 100%;
  }

  .partner-marquee {
    grid-template-rows: repeat(4, 44px);
    row-gap: 30px;
  }

  .partner-track {
    height: 44px;
  }

  .idea-library {
    padding-top: 72px;
    border-radius: 0 46px 0 46px;
  }

  .idea-library::after {
    display: none;
  }

  .idea-stage {
    grid-template-columns: 1fr;
    width: min(420px, 86vw);
  }

  .idea-card-primary {
    margin-top: 0;
  }

  .idea-smile {
    left: max(-44px, -8%);
    top: 24%;
  }

  .idea-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  dl {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 22px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    min-width: 118px;
    padding: 11px 14px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
