@font-face {
  font-family: Anton;
  src: url("assets/fonts/Anton-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
:root {
  --paper: #efeee8;
  --ink: #111;
  --muted: #66655e;
  --line: #cecdc5;
  --lime: #dbff48;
  --display: Anton, "Arial Narrow", Impact, sans-serif;
  --body:
    "Space Grotesk", Arial, "Noto Sans CJK KR", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: clip;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #6e8300;
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
.section-pad {
  padding-left: 5%;
  padding-right: 5%;
}
.mono {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  font-weight: 500;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--lime);
  padding: 14px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 85px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  z-index: 20;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-lockup .symbol {
  width: 30px;
  height: 30px;
}
.logo-lockup .wordmark {
  width: 137px;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 33px;
  margin-left: auto;
  margin-right: 50px;
}
.desktop-nav a {
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  padding: 12px 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 6px;
  left: 0;
  right: 100%;
  background: var(--lime);
  transition: right 0.2s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-demo {
  border: 1px solid #595950;
  padding: 12px 18px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.header-demo:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 23px;
  padding-bottom: 57px;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.hero-topline > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 8%;
  padding-top: 39px;
  align-items: start;
}
.hero-type h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(110px, 12.2vw, 210px);
  line-height: 0.97;
  letter-spacing: -0.015em;
  position: relative;
  margin-left: -0.005em;
}
.hero-type h1 > span {
  display: block;
  white-space: nowrap;
}
.hero-type h1 .period {
  color: var(--ink);
}
.type-star {
  font-family: Arial, sans-serif;
  display: inline-block;
  color: var(--ink);
  font-size: 0.52em;
  vertical-align: 14%;
  margin-left: 0.21em;
  transform: rotate(13deg);
}
.hero-intro {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  align-items: flex-start;
}
.intro-rule {
  height: 3px;
  background: var(--ink);
  width: 50px;
  flex-shrink: 0;
  margin-top: 13px;
}
.korean-lead {
  font-size: 23px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.7px;
  word-break: keep-all;
}
.hero-copy {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 12px;
  color: #57574f;
  word-break: keep-all;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  min-height: 49px;
  padding: 15px 21px;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.18s;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-2px);
}
.button.dark {
  background: var(--ink);
  color: var(--paper);
}
.button.dark:hover {
  background: #33352b;
}
.button.lime {
  background: var(--lime);
  color: var(--ink);
}
.button.lime:hover {
  background: #edff9b;
}
.text-link {
  border: 0;
  border-bottom: 1px solid #96968d;
  background: transparent;
  padding: 10px 0;
  font-size: 13px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.text-link span {
  font-size: 18px;
}
.hero-visual {
  position: relative;
  margin-top: 4px;
}
.photo-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 11px;
  letter-spacing: 0.8px;
}
.campaign-photo {
  position: relative;
  background: var(--ink);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.campaign-photo > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.campaign-photo:hover > img {
  transform: scale(1.025);
}
.campaign-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px #0002;
  pointer-events: none;
}
.photo-cross {
  position: absolute;
  width: 19px;
  height: 19px;
}
.photo-cross:before,
.photo-cross:after {
  content: "";
  background: var(--paper);
  position: absolute;
}
.photo-cross:before {
  height: 1px;
  width: 19px;
  top: 9px;
}
.photo-cross:after {
  width: 1px;
  height: 19px;
  left: 9px;
}
.top-left {
  top: 20px;
  left: 20px;
}
.bottom-right {
  bottom: 45px;
  right: 20px;
}
.photo-stamp {
  position: absolute;
  left: 27px;
  bottom: 51px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.photo-stamp > img {
  width: 43px;
  height: 43px;
}
.photo-stamp span {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: 0.4px;
}
.campaign-photo figcaption {
  position: absolute;
  bottom: 15px;
  left: 25px;
  color: #d8d8d1;
  font-size: 10px;
  letter-spacing: 1.6px;
}
.visual-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
  font-size: 11px;
  letter-spacing: 0.6px;
}
.visual-footer a {
  border-bottom: 1px solid #777;
  padding-bottom: 3px;
}
.visual-sticker {
  position: absolute;
  right: -28px;
  top: 33px;
  width: 108px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px;
  background: var(--lime);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
  transform: rotate(8deg);
  box-shadow: 0 5px 15px #0001;
}
.visual-sticker > span {
  font-family: var(--body);
  font-size: 13px;
  margin-top: 7px;
  font-weight: 700;
}
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  height: 87px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 43px;
  min-width: max-content;
  animation: marquee 40s linear infinite;
}
.ticker-track span {
  font-family: var(--display);
  font-size: 39px;
  letter-spacing: 0.7px;
}
.ticker-track b {
  font-size: 41px;
  line-height: 1;
  color: var(--lime);
  font-weight: 400;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.approach {
  padding-top: 88px;
  padding-bottom: 83px;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
  margin-top: 49px;
  align-items: center;
}
.approach h2 {
  font-family: var(--display);
  font-size: clamp(55px, 6vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.7px;
  font-weight: 400;
}
.muted-type {
  color: #85857d;
}
.approach-content {
  max-width: 550px;
}
.ai-services {
  margin-bottom: 28px;
}
.ai-services-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.ai-service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}
.ai-service-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.ai-service-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ai-service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.ai-service-icon .chatgpt-icon {
  width: 36px;
  height: 36px;
}
.provider-credits {
  color: #b2b2a9;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (max-width: 1100px) {
  .ai-service-list li {
    flex-direction: column;
    gap: 7px;
    font-size: 16px;
  }
}
.section-lead {
  font-size: 32px;
  letter-spacing: -1.2px;
  line-height: 1.55;
  font-weight: 500;
  word-break: keep-all;
  margin-bottom: 25px;
}
.approach-content > p:not(.section-lead) {
  font-size: 15px;
  line-height: 2;
  color: #5e5e56;
  margin-top: 20px;
  word-break: keep-all;
}
.underlined-link {
  border-bottom: 1px solid #85857d;
  display: inline-flex;
  justify-content: space-between;
  gap: 42px;
  font-size: 14px;
  padding-bottom: 11px;
  margin-top: 28px;
}
.underlined-link span {
  font-size: 20px;
}
.question-switcher {
  margin-top: 58px;
  border: 1px solid var(--ink);
  background: #f7f6f0;
  padding: 23px 28px;
}
.question-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.question-controls > .mono {
  font-size: 11px;
}
.language-tabs {
  display: flex;
  border: 1px solid var(--line);
}
.language-tabs button {
  font-size: 12px;
  letter-spacing: 1px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 8px 15px;
  min-height: 36px;
}
.language-tabs button:last-child {
  border-right: 0;
}
.language-tabs button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}
.language-tabs button:hover {
  background: #d9dfc7;
  color: var(--ink);
}
.question-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0 26px;
}
.question-body > p {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: -0.8px;
  max-width: 60%;
  word-break: keep-all;
}
.question-body > div {
  font-size: 13px;
  line-height: 1.9;
  max-width: 38%;
  color: #616159;
}
.question-body .mono {
  font-size: 11px;
  color: #7a7a71;
  display: block;
  margin-top: 5px;
  letter-spacing: 0.6px;
}
.question-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  font-size: 12px;
  color: #69695f;
}
.question-foot a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.expertise {
  background: var(--ink);
  color: var(--paper);
  padding-top: 71px;
  padding-bottom: 46px;
}
.expertise .section-label,
.platform .section-label {
  border-color: #414139;
  color: #c9c9be;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin: 42px 0;
}
.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(50px, 5.4vw, 79px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.4px;
}
.section-heading > p {
  font-size: 15px;
  color: #b4b4a9;
  line-height: 1.9;
  padding-bottom: 4px;
  word-break: keep-all;
}
.service-list {
  border-top: 1px solid #54544c;
  margin-top: 42px;
}
.service {
  display: grid;
  grid-template-columns: 0.14fr 0.85fr 1fr 0.12fr;
  gap: 35px;
  padding: 39px 0;
  border-bottom: 1px solid #414139;
  align-items: start;
}
.service:last-child {
  border: 0;
}
.service-number {
  font-size: 13px;
  color: #c6c6b9;
  padding-top: 7px;
}
.service-name h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 45px;
  line-height: 1.05;
  letter-spacing: 0.2px;
}
.service-name .mono {
  font-size: 11px;
  letter-spacing: 1.4px;
  display: block;
  color: #a3a397;
  margin-top: 14px;
}
.service-description {
  padding-top: 4px;
  max-width: 400px;
}
.service-description h4 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}
.service-description p {
  font-size: 14px;
  line-height: 1.95;
  color: #aaa99e;
  margin-top: 12px;
  word-break: keep-all;
}
.service-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.service-tags span {
  font-size: 12px;
  border: 1px solid #55554b;
  padding: 5px 9px;
  color: #c5c4b7;
}
.service-arrow {
  color: var(--lime);
  font-size: 36px;
  line-height: 1;
  padding-top: 5px;
  transition: transform 0.2s;
}
.service:hover .service-arrow {
  transform: translate(5px, -5px);
}
.sectors {
  padding-top: 76px;
  padding-bottom: 85px;
}
.sectors-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin: 39px 0;
}
.sectors-intro h2 {
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.6;
  word-break: keep-all;
}
.sectors-intro > p {
  font-size: 14px;
  line-height: 1.9;
  color: #69695f;
  word-break: keep-all;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.sector-grid > div {
  padding: 30px 19px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.sector-grid > div:first-child {
  padding-left: 0;
}
.sector-grid > div:last-child {
  border-right: 0;
}
.sector-grid .mono {
  font-size: 10px;
  letter-spacing: 0.6px;
  color: #626258;
}
.sector-grid h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 31px;
  margin-top: 13px;
}
.sector-grid h3 span {
  font-family: var(--body);
  font-size: 25px;
}
.sector-grid > div:hover {
  background: #e4e7d8;
}
.platform {
  background: #171814;
  color: var(--paper);
  padding-top: 76px;
  padding-bottom: 56px;
}
.platform-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.platform-status .signal-dot {
  background: var(--lime);
}
.platform .section-heading > div > p {
  color: #b7b7aa;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 19px;
}
.platform .section-heading {
  margin-bottom: 34px;
}
.platform-preview {
  border: 1px solid #66685a;
  background: #edeee6;
}
.preview-browser {
  height: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 0 21px;
  background: #282923;
  color: #bebfb0;
}
.preview-browser .mono {
  font-size: 11px;
  letter-spacing: 0.8px;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  border: 1px solid #8d8f7f;
}
.preview-window {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.preview-window iframe {
  width: 1400px;
  height: 920px;
  border: 0;
  transform: scale(0.8);
  transform-origin: top left;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.preview-open {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(transparent 55%, #11111118);
}
.preview-open > span {
  display: flex;
  gap: 38px;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  padding: 21px 25px;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px #1112;
  transform: translateY(20px);
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.preview-open > span > span {
  font-size: 26px;
}
.preview-open:hover > span,
.preview-open:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}
.platform-caption {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 20px;
  align-items: center;
}
.platform-caption > p {
  font-size: 14px;
}
.platform-caption > p > span {
  margin: 0 12px;
  color: var(--lime);
}
.platform-caption > span {
  font-size: 12px;
  color: #c1c2b3;
  line-height: 1.7;
}
.principles {
  padding-top: 82px;
  padding-bottom: 87px;
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 9%;
  margin-top: 44px;
}
.principles h2 {
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: -1px;
  font-weight: 500;
  word-break: keep-all;
}
.faq-list {
  margin-top: -3px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 0 19px;
  margin-bottom: 23px;
}
.faq-list summary {
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  word-break: keep-all;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  color: #646459;
  font-size: 14px;
  line-height: 1.95;
  margin-top: 15px;
  padding-right: 23px;
  word-break: keep-all;
}
.contact {
  padding-top: 48px;
  padding-bottom: 53px;
  background: var(--lime);
}
.contact .section-label {
  border-color: #a1ba31;
}
.contact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
}
.contact-heading h2 {
  font-family: var(--display);
  font-size: clamp(70px, 9.6vw, 150px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.7px;
}
.contact-heading h2 > span {
  color: var(--ink);
}
.contact-arrow {
  font-family: var(--body);
  font-size: 145px;
  border: 0;
  background: transparent;
  line-height: 1;
  padding: 0 10px;
  transition: transform 0.2s;
}
.contact-arrow:hover {
  transform: translate(7px, -7px);
}
.contact-bottom {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-bottom p {
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 39px;
  padding-bottom: 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 35px;
  padding-bottom: 34px;
  align-items: center;
}
.footer-top > p {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.6px;
  color: #dfdfd5;
}
.footer-top > p > span {
  color: #909085;
  letter-spacing: 0;
  font-size: 12px;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
  font-size: 12px;
  letter-spacing: 0.6px;
}
.footer-top a:hover {
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid #393a33;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #c3c3b8;
  font-size: 11px;
  letter-spacing: 0.8px;
}
dialog {
  width: min(620px, calc(100% - 30px));
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 28px 33px;
  max-height: 90dvh;
  overflow: auto;
}
dialog::backdrop {
  background: #111b;
  backdrop-filter: blur(5px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-button {
  background: transparent;
  border: 1px solid #aaa;
  font-size: 27px;
  line-height: 1;
  width: 39px;
  height: 39px;
}
.dialog-top .mono {
  font-size: 12px;
}
#brief-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.04;
  margin: 20px 0 14px;
}
.brief-intro {
  font-size: 14px;
  color: #67675b;
  margin-bottom: 23px;
}
#brief-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#brief-form label {
  font-size: 13px;
  line-height: 1.8;
  display: block;
}
#brief-form label > span {
  color: #667e00;
  font-size: 13px;
}
#brief-form .optional {
  color: #77776d;
  font-size: 12px;
  margin-left: 5px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #aaa99e;
  border-radius: 0;
  background: #f9f9f3;
  color: var(--ink);
  font-size: 14px;
  margin-top: 6px;
  min-height: 43px;
}
textarea {
  resize: vertical;
  line-height: 1.7;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-note {
  font-size: 12px;
  color: #727266;
  line-height: 1.7;
}
.submit-brief {
  width: 100%;
  margin-top: 2px;
}
#brief-result {
  font-size: 13px;
  line-height: 1.7;
  color: #4b6200;
}
#brief-result:empty {
  display: none;
}
@media (min-width: 1700px) {
  .section-pad {
    padding-left: max(5%, calc((100vw - 1550px) / 2));
    padding-right: max(5%, calc((100vw - 1550px) / 2));
  }
  .hero-grid {
    gap: 110px;
  }
  .hero-type h1 {
    font-size: 210px;
  }
  .site-header {
    padding-left: max(5%, calc((100vw - 1550px) / 2));
    padding-right: max(5%, calc((100vw - 1550px) / 2));
  }
  .preview-window {
    height: 575px;
  }
}
@media (max-width: 1200px) {
  .hero-grid {
    gap: 6%;
    grid-template-columns: 1.2fr 1fr;
  }
  .hero-type h1 {
    font-size: 12.2vw;
  }
  .desktop-nav {
    gap: 22px;
    margin-right: 15px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .hero-topline {
    font-size: 11px;
  }
  .hero-intro {
    margin-top: 24px;
    gap: 15px;
  }
  .korean-lead {
    font-size: 20px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
  }
  .button {
    font-size: 13px;
    padding: 14px 17px;
    gap: 23px;
  }
  .visual-sticker {
    width: 90px;
    height: 95px;
    font-size: 23px;
    right: -16px;
  }
  .hero-visual {
    margin-top: 5px;
  }
  .service {
    gap: 20px;
  }
  .service-name h3 {
    font-size: 39px;
  }
  .service-description h4 {
    font-size: 17px;
  }
  .service-description p {
    font-size: 13px;
  }
  .sector-grid h3 {
    font-size: 26px;
  }
  .preview-window {
    height: 415px;
  }
  .approach h2 {
    font-size: 6.3vw;
  }
  .section-lead {
    font-size: 28px;
  }
  .desktop-br {
    display: none;
  }
  .photo-meta,
  .visual-footer {
    font-size: 10px;
  }
  .platform .section-heading h2 {
    font-size: 5.3vw;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1.17fr 1fr;
    gap: 5%;
  }
  .hero-type h1 {
    font-size: 12.3vw;
  }
  .hero-copy {
    font-size: 14px;
  }
  .intro-rule {
    width: 30px;
  }
  .hero-intro {
    gap: 12px;
  }
  .korean-lead {
    font-size: 19px;
  }
  .hero-actions {
    gap: 11px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-topline > span:last-child {
    font-size: 10px;
  }
  .hero-visual {
    margin-top: 10px;
  }
  .photo-meta > span:last-child {
    display: none;
  }
  .visual-sticker {
    right: -15px;
    width: 77px;
    height: 84px;
    font-size: 19px;
    top: 37px;
  }
  .visual-sticker > span {
    font-size: 12px;
  }
  .visual-footer > span {
    display: none;
  }
  .visual-footer {
    justify-content: flex-end;
  }
  .hero {
    padding-bottom: 40px;
  }
  .ticker {
    height: 69px;
  }
  .ticker-track span {
    font-size: 32px;
  }
  .ticker-track {
    gap: 29px;
  }
  .ticker-track b {
    font-size: 32px;
  }
  .approach {
    padding-top: 63px;
    padding-bottom: 63px;
  }
  .approach-grid {
    gap: 6%;
  }
  .approach h2 {
    font-size: 6.5vw;
  }
  .section-lead {
    font-size: 24px;
  }
  .approach-content > p:not(.section-lead) {
    font-size: 13px;
  }
  .underlined-link {
    font-size: 12px;
    gap: 22px;
  }
  .question-switcher {
    padding: 21px;
  }
  .question-body > p {
    font-size: 23px;
  }
  .service {
    grid-template-columns: 25px 0.8fr 1fr 25px;
    gap: 17px;
  }
  .service-name h3 {
    font-size: 33px;
  }
  .service-description h4 {
    font-size: 15px;
  }
  .service-description p {
    font-size: 13px;
  }
  .service-tags span {
    font-size: 11px;
  }
  .service-name .mono {
    font-size: 10px;
  }
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sector-grid > div {
    padding: 22px !important;
  }
  .sector-grid > div:nth-child(2) {
    border-right: 0;
  }
  .sector-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .sectors-intro h2 {
    font-size: 26px;
  }
  .sectors-intro > p {
    font-size: 13px;
  }
  .platform-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .principles h2 {
    font-size: 26px;
  }
  .principles-grid {
    gap: 6%;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .footer-top {
    grid-template-columns: 1fr auto;
  }
  .footer-top > p {
    display: none;
  }
  .contact-arrow {
    font-size: 95px;
  }
  .preview-window {
    height: 330px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span {
    width: 21px;
    height: 1px;
    background: var(--paper);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 15px 5% 25px;
    border-top: 1px solid #42423a;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px #0002;
  }
  .mobile-nav > a,
  .mobile-nav > button {
    display: flex;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid #3a3a32;
    padding: 16px 0;
    color: var(--paper);
    background: transparent;
    font-size: 15px;
    text-align: left;
    letter-spacing: 0.5px;
  }
  .mobile-nav > a > span {
    color: #999;
  }
  .mobile-nav > button {
    color: var(--lime);
    font-size: 14px;
    border: 0;
  }
  .section-heading > p {
    font-size: 13px;
  }
}
@media (max-width: 620px) {
  :root {
    scroll-padding-top: 20px;
  }
  .section-pad {
    padding-left: 6%;
    padding-right: 6%;
  }
  .site-header {
    height: 72px;
    padding: 0 6%;
    gap: 10px;
  }
  .logo-lockup {
    gap: 9px;
  }
  .logo-lockup .symbol {
    width: 25px;
    height: 25px;
  }
  .logo-lockup .wordmark {
    width: 108px;
  }
  .header-demo {
    font-size: 12px;
    border: 0;
    padding: 10px 0;
    gap: 8px;
  }
  .header-actions {
    gap: 9px;
  }
  .menu-toggle {
    width: 32px;
  }
  .mobile-nav {
    top: 72px;
    padding-left: 6%;
    padding-right: 6%;
  }
  .hero {
    padding-top: 18px;
    padding-bottom: 32px;
  }
  .hero-topline {
    padding-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .hero-topline > span:last-child {
    display: none;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 29px;
    padding-top: 25px;
  }
  .hero-type {
    width: 100%;
  }
  .hero-type h1 {
    font-size: 22.5vw;
    line-height: 0.96;
    letter-spacing: -0.025em;
  }
  .hero-type h1 > span:nth-child(1) {
    display: inline;
  }
  .hero-type h1 > span:nth-child(2) {
    display: inline;
    margin-left: 0.12em;
  }
  .type-star {
    display: none !important;
  }
  .hero-type h1 > span:last-child {
    font-size: 1.24em;
    letter-spacing: -0.02em;
    margin-top: 3px;
  }
  .hero-intro {
    margin-top: 23px;
    gap: 15px;
  }
  .intro-rule {
    width: 27px;
    height: 2px;
    margin-top: 11px;
  }
  .korean-lead {
    font-size: 20px;
    line-height: 1.6;
  }
  .hero-copy {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 9px;
  }
  .hero-actions {
    flex-direction: row;
    gap: 19px;
    align-items: center;
    margin-top: 21px;
  }
  .button {
    min-height: 46px;
    padding: 13px 15px;
    font-size: 12px;
    gap: 17px;
  }
  .button span {
    font-size: 19px;
  }
  .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .hero-visual {
    width: 100%;
    margin-top: 0;
  }
  .photo-meta {
    display: flex;
    font-size: 10px;
  }
  .photo-meta > span:last-child {
    display: block;
  }
  .campaign-photo {
    aspect-ratio: 1.15;
  }
  .campaign-photo > img {
    object-position: center 42%;
  }
  .visual-sticker {
    right: -10px;
    top: 32px;
    width: 78px;
    height: 82px;
  }
  .photo-stamp {
    left: 20px;
    bottom: 36px;
    gap: 9px;
  }
  .photo-stamp > img {
    width: 30px;
    height: 30px;
  }
  .photo-stamp span {
    font-size: 20px;
  }
  .campaign-photo figcaption {
    font-size: 9px;
    left: 20px;
    bottom: 13px;
    letter-spacing: 0.9px;
  }
  .top-left {
    top: 15px;
    left: 15px;
  }
  .bottom-right {
    bottom: 34px;
    right: 16px;
  }
  .visual-footer {
    font-size: 10px;
    margin-top: 11px;
  }
  .visual-footer > span {
    display: block;
  }
  .ticker {
    height: 59px;
  }
  .ticker-track span {
    font-size: 27px;
  }
  .ticker-track b {
    font-size: 26px;
  }
  .ticker-track {
    gap: 23px;
  }
  .approach {
    padding-top: 46px;
    padding-bottom: 45px;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 0.8px;
    padding-bottom: 16px;
    gap: 18px;
  }
  .section-label > span:last-child {
    text-align: right;
    max-width: 50%;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 29px;
  }
  .approach h2 {
    font-size: 14vw;
    line-height: 1.05;
  }
  .approach-content {
    max-width: none;
  }
  .section-lead {
    font-size: 25px;
    margin-bottom: 18px;
  }
  .approach-content > p:not(.section-lead) {
    font-size: 14px;
    margin-top: 17px;
  }
  .underlined-link {
    margin-top: 24px;
    font-size: 13px;
    gap: 35px;
  }
  .question-switcher {
    margin-top: 33px;
    padding: 19px 17px;
  }
  .question-controls > .mono {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .language-tabs button {
    font-size: 12px;
    padding: 6px 11px;
    min-height: 34px;
  }
  .question-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding-top: 21px;
    padding-bottom: 20px;
  }
  .question-body > p {
    font-size: 24px;
    line-height: 1.5;
    max-width: 100%;
    letter-spacing: -0.7px;
  }
  .question-body > div {
    max-width: 100%;
    font-size: 13px;
  }
  .question-body .mono {
    font-size: 10px;
  }
  .question-foot {
    font-size: 11px;
    gap: 12px;
    align-items: flex-start;
  }
  .question-foot > span {
    max-width: 61%;
    line-height: 1.7;
  }
  .question-foot > a {
    white-space: nowrap;
  }
  .expertise {
    padding-top: 45px;
    padding-bottom: 15px;
  }
  .section-heading {
    margin: 28px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-heading h2 {
    font-size: 12vw;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .service-list {
    margin-top: 30px;
  }
  .service {
    grid-template-columns: 23px 1fr 22px;
    gap: 13px;
    padding: 28px 0;
  }
  .service-number {
    font-size: 12px;
  }
  .service-name h3 {
    font-size: 39px;
  }
  .service-name .mono {
    font-size: 10px;
    margin-top: 10px;
  }
  .service-description {
    grid-row: 2;
    grid-column: 2/4;
    max-width: 100%;
    padding-top: 9px;
  }
  .service-description h4 {
    font-size: 16px;
  }
  .service-description p {
    font-size: 13px;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1;
    font-size: 29px;
  }
  .service-tags {
    margin-top: 14px;
  }
  .service-tags span {
    font-size: 11px;
  }
  .sectors {
    padding-top: 45px;
    padding-bottom: 44px;
  }
  .sectors .section-label > span:last-child {
    font-size: 9px;
  }
  .sectors-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin: 27px 0;
  }
  .sectors-intro h2 {
    font-size: 25px;
  }
  .sectors-intro > p {
    font-size: 13px;
  }
  .sector-grid {
    margin-top: 24px;
  }
  .sector-grid > div {
    padding: 21px 10px !important;
  }
  .sector-grid h3 {
    font-size: 25px;
    gap: 6px;
    margin-top: 12px;
  }
  .sector-grid h3 > span {
    font-size: 20px;
  }
  .sector-grid .mono {
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  .platform {
    padding-top: 44px;
    padding-bottom: 33px;
  }
  .platform .section-heading h2 {
    font-size: 11.7vw;
  }
  .platform .section-heading > div > p {
    font-size: 13px;
    margin-top: 16px;
  }
  .platform .section-heading {
    gap: 21px;
    margin-bottom: 24px;
  }
  .preview-browser {
    height: 34px;
    padding: 0 12px;
    gap: 13px;
  }
  .preview-browser .mono {
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  .preview-browser > .mono:last-child {
    display: none;
  }
  .browser-dots {
    gap: 4px;
  }
  .browser-dots i {
    height: 5px;
    width: 5px;
  }
  .preview-window {
    height: 235px;
  }
  .preview-window iframe {
    width: 1250px;
  }
  .preview-open > span {
    opacity: 1;
    transform: none;
    font-size: 11px;
    padding: 14px 17px;
    gap: 16px;
  }
  .preview-open > span > span {
    font-size: 19px;
  }
  .preview-open {
    background: linear-gradient(transparent 25%, #11111140);
    align-items: flex-end;
    padding-bottom: 22px;
  }
  .platform-caption > p {
    font-size: 12px;
  }
  .platform-caption > p > span {
    margin: 0 9px;
  }
  .platform-caption > span {
    font-size: 11px;
  }
  .principles {
    padding-top: 46px;
    padding-bottom: 37px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 26px;
  }
  .principles h2 {
    font-size: 26px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details > p {
    font-size: 14px;
    padding-right: 8px;
  }
  .faq-list details {
    padding-bottom: 15px;
    margin-bottom: 18px;
  }
  .contact {
    padding-top: 27px;
    padding-bottom: 30px;
  }
  .contact .section-label > span:last-child {
    font-size: 9px;
    letter-spacing: 0.4px;
  }
  .contact-heading {
    margin-top: 26px;
    gap: 8px;
  }
  .contact-heading h2 {
    font-size: 13.6vw;
    letter-spacing: -0.4px;
  }
  .contact-arrow {
    font-size: 65px;
    padding: 0;
    margin-top: -35px;
  }
  .contact-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    margin-top: 23px;
  }
  .contact-bottom p {
    font-size: 13px;
  }
  .site-footer {
    padding-top: 29px;
    padding-bottom: 20px;
  }
  .footer-top {
    gap: 18px;
    padding-bottom: 25px;
  }
  .footer-top > div {
    font-size: 10px;
    gap: 10px;
    letter-spacing: 0.2px;
  }
  .footer-bottom {
    font-size: 9px;
    letter-spacing: 0.2px;
    gap: 15px;
    padding-top: 18px;
    flex-wrap: wrap;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  dialog {
    padding: 21px;
    max-height: 92dvh;
  }
  #brief-title {
    font-size: 53px;
  }
  .brief-intro {
    font-size: 13px;
  }
  .form-row {
    gap: 11px;
  }
  #brief-form {
    gap: 13px;
  }
  #brief-form label {
    font-size: 12px;
  }
  input,
  select,
  textarea {
    font-size: 17px;
    padding: 9px 10px;
  }
  .form-note {
    font-size: 12px;
  }
  .submit-brief {
    font-size: 14px;
  }
  .close-button {
    width: 36px;
    height: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.walkthrough {
  padding-top: 54px;
  padding-bottom: 72px;
  background: #e5e5dd;
}
.walkthrough .section-heading h2 {
  font-size: clamp(43px, 4.5vw, 70px);
}
.walkthrough .section-heading p {
  font-size: 14px;
  line-height: 1.8;
  color: #5d5e52;
  margin-top: 17px;
  word-break: keep-all;
}
.walkthrough-hint {
  font-size: 11px;
  padding-bottom: 7px;
}
.ticker {
  position: relative;
}
.ticker-toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 43px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-left: 1px solid #555;
  z-index: 1;
  font-size: 16px;
}
.ticker-paused .ticker-track {
  animation-play-state: paused;
}
.brand-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--ink);
}
.brand-questions article {
  padding: 30px 34px 30px 0;
  border-bottom: 1px solid var(--line);
}
.brand-questions article:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 34px;
  padding-right: 0;
}
.brand-questions .mono {
  color: #626257;
  font-size: 11px;
}
.brand-questions h3 {
  margin: 14px 0 11px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
  letter-spacing: -0.7px;
}
.brand-questions p {
  font-size: 15px;
  color: #595950;
  line-height: 1.9;
  word-break: keep-all;
}
.travel-evidence {
  margin-top: 42px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 28px;
  background: #e1e3d5;
  border-left: 4px solid var(--ink);
}
.evidence-intro h3 {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  margin: 14px 0 10px;
  letter-spacing: -0.5px;
  word-break: keep-all;
}
.evidence-intro > p {
  font-size: 14px;
  line-height: 1.8;
  color: #55594b;
  word-break: keep-all;
}
.evidence-number {
  padding: 0 24px;
  border-left: 1px solid #bcbfaf;
  border-right: 1px solid #bcbfaf;
}
.evidence-number > strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 85px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 17px;
}
.evidence-number > strong > span {
  font-size: 0.52em;
}
.evidence-number > p {
  font-size: 15px;
  line-height: 1.7;
}
.evidence-number > span,
.evidence-conversion > span:last-child {
  font-size: 13px;
  color: #55594b;
  line-height: 1.8;
  display: block;
  margin-top: 7px;
}
.evidence-conversion > p {
  font-size: 19px;
  line-height: 1.8;
  margin-top: 15px;
  word-break: keep-all;
}
.evidence-conversion > p strong {
  font-weight: 500;
}
.evidence-source {
  grid-column: 1 / -1;
  border-top: 1px solid #bcbfaf;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 12px;
  line-height: 1.8;
  color: #55594b;
}
.evidence-source a,
.evidence-global a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--ink);
}
.evidence-global {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.9;
  color: #54544d;
}
.evidence-global strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}
.service-demo-link {
  display: inline-block;
  font-size: 14px;
  color: var(--lime);
  margin-top: 21px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.service-description {
  max-width: 490px;
}
.service-description p {
  font-size: 15px;
}
.service-tags span {
  font-size: 12px;
}
.channel-summary {
  border-top: 1px solid #55554b;
  padding: 28px 0 12px;
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: 22px 45px;
}
.channel-summary > p {
  font-size: 21px;
  line-height: 1.7;
  font-weight: 400;
  word-break: keep-all;
}
.channel-summary > p strong {
  font-weight: 400;
  color: var(--lime);
}
.channel-summary > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-content: center;
}
.channel-summary > div span {
  border: 1px solid #66665d;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.5;
}
.channel-summary > small {
  grid-column: 1 / -1;
  color: #babaae;
  font-size: 13px;
  line-height: 1.8;
}
.platform .section-heading > div > p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 620px;
  margin-top: 20px;
  color: #d2d2c6;
  word-break: keep-all;
}
.walkthrough .section-heading p {
  font-size: 16px;
  max-width: 640px;
}
@media (max-width: 1100px) {
  .travel-evidence {
    grid-template-columns: 1fr 1fr;
  }
  .evidence-intro {
    grid-column: 1 / -1;
  }
  .evidence-intro h3 br {
    display: none;
  }
  .evidence-number {
    padding-left: 0;
    border-left: 0;
  }
  .channel-summary {
    grid-template-columns: 1fr;
  }
  .brand-questions h3 {
    font-size: 20px;
  }
}
@media (max-width: 620px) {
  .walkthrough {
    padding-top: 37px;
    padding-bottom: 39px;
  }
  .walkthrough .section-heading {
    gap: 14px;
  }
  .walkthrough .section-heading h2 {
    font-size: 10.5vw;
  }
  .walkthrough .section-heading p {
    font-size: 15px;
    margin-top: 15px;
  }
  .walkthrough-hint {
    font-size: 10px;
  }
  .ticker-toggle {
    width: 31px;
    font-size: 14px;
  }
  .brand-questions {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
  .brand-questions article,
  .brand-questions article:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }
  .brand-questions h3 {
    font-size: 20px;
  }
  .brand-questions p {
    font-size: 14px;
  }
  .travel-evidence {
    padding: 23px 20px;
    gap: 23px;
    grid-template-columns: 1fr;
  }
  .evidence-intro h3 {
    font-size: 21px;
  }
  .evidence-number {
    padding: 0;
    border: 0;
  }
  .evidence-number > strong {
    font-size: 72px;
    margin-bottom: 10px;
  }
  .evidence-conversion {
    border-top: 1px solid #bcbfaf;
    padding-top: 22px;
  }
  .evidence-conversion > p {
    font-size: 19px;
  }
  .evidence-source {
    font-size: 12px;
  }
  .evidence-global {
    gap: 6px;
  }
  .service-description h4 {
    font-size: 18px;
  }
  .service-description p {
    font-size: 14px;
  }
  .service-demo-link {
    font-size: 14px;
  }
  .channel-summary > p {
    font-size: 20px;
  }
  .platform .section-heading > div > p {
    font-size: 14px;
  }
}
