:root {
  --green: #005032;
  --green-hover: #016b44;
  --green-light: #7fb49b;
  --green-soft: #e5efea;
  --ink: #0d1016;
  --dark: #33363a;
  --paper: #fafaf9;
  --white: #ffffff;
  --body: #46443b;
  --muted: #68655e;
  --quiet: #8f8d88;
  --line: #e2e2e0;
  --line-strong: #d8d6d0;
  --lime: #d3e570;
  --lavender: #edeeff;
  --lavender-hover: #c7cbff;
  --error: #b03a2e;
  --error-bg: #fbeeec;
  --success: #276044;
  --success-bg: #e7f2eb;
  --container: 1200px;
  --header-height: 74px;
  --radius-sm: 9px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(13, 16, 22, 0.08);
}

/* Legal and error pages */
.legal-content {
  max-width: 920px;
  color: var(--warm-grey);
  line-height: 1.8;
}
.legal-content__effective {
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 700;
}
.legal-content section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.legal-content p + p,
.legal-content ul + p {
  margin-top: 12px;
}
.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
}
.legal-content a {
  color: var(--espresso);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.error-page__inner {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  background: var(--paper);
  color: var(--body);
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

::selection {
  background: var(--green);
  color: var(--paper);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  background: var(--white);
  border-radius: 0 0 var(--radius-sm) 0;
  color: var(--ink);
  font-weight: 700;
  left: 0;
  padding: 12px 18px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

.section {
  padding: 108px 0;
}

.section--white {
  background: var(--white);
}

.section--paper {
  background: var(--paper);
}

.section--portfolio-list {
  background: #f1f2f0;
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--dark {
  background: var(--dark);
  color: var(--paper);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-heading__copy {
  max-width: 720px;
}

.section-heading--stacked {
  align-items: flex-start;
  display: block;
}

.section-heading--stacked .lead {
  margin-top: 14px;
}

.eyebrow {
  color: var(--green);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.section--dark .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--green-light);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
}

.section--ink h2,
.section--ink h3,
.section--dark h2,
.section--dark h3,
.page-hero h1,
.hero h1 {
  color: var(--paper);
}

.display-title {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  max-width: 62ch;
  text-wrap: pretty;
}

.section--ink .lead,
.section--dark .lead,
.page-hero .lead,
.hero .lead {
  color: #d7dad8;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-hover);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--white);
}

.btn--outline-light {
  border-color: rgba(250, 250, 249, .42);
  color: var(--paper);
}

.btn--outline-light:hover {
  background: rgba(250, 250, 249, .1);
  border-color: rgba(250, 250, 249, .72);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.site-header {
  border-bottom: 1px solid transparent;
  color: var(--paper);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
  z-index: 100;
}

.site-header.is-solid,
body.header-solid .site-header {
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(250, 250, 249, .94);
  border-bottom-color: var(--line);
  color: var(--ink);
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: flex;
  min-height: 44px;
}

.brand img {
  height: 30px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.site-nav > a:not(.btn) {
  font-size: 14px;
  font-weight: 600;
  opacity: .88;
  padding: 14px 0;
  position: relative;
}

.site-nav > a:not(.btn)::after {
  background: currentColor;
  bottom: 8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
  width: 100%;
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-toggle span {
  background: currentColor;
  height: 2px;
  transition: transform .25s ease, opacity .25s ease;
  width: 23px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  background: var(--ink);
  color: var(--paper);
  display: none;
  inset: var(--header-height) 0 auto;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 18px 40px 30px;
  position: fixed;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a:not(.btn) {
  border-bottom: 1px solid #232a33;
  display: block;
  font-size: 17px;
  min-height: 50px;
  padding: 13px 0;
}

.mobile-nav .btn {
  margin-top: 18px;
  width: 100%;
}

.hero {
  align-items: flex-end;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  min-height: 92vh;
  overflow: hidden;
  padding-top: 118px;
  position: relative;
}

.hero__media,
.hero__overlay {
  inset: 0;
  position: absolute;
}

.hero__media video,
.hero__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero__overlay {
  background: linear-gradient(180deg, rgba(13, 16, 22, .72) 0%, rgba(13, 16, 22, .42) 42%, rgba(13, 16, 22, .9) 100%);
}

.hero__content {
  padding-bottom: 78px;
  position: relative;
  z-index: 1;
}

.hero__title {
  max-width: 13ch;
}

.hero__korean {
  color: var(--paper);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-top: 22px;
}

.hero__content .lead {
  margin-top: 18px;
}

.proof-row {
  border-top: 1px solid rgba(250, 250, 249, .16);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  padding-top: 28px;
}

.proof-row strong {
  color: var(--paper);
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.proof-row span {
  color: #aeb2af;
  font-size: 13px;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.trust-strip__inner {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: center;
  text-align: center;
}

.trust-strip__label {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-strip__text {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.service-card,
.info-card,
.price-card,
.hosting-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.service-card:hover,
.info-card:hover,
.price-card:hover,
.hosting-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-kicker,
.card-number {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.service-card h3,
.info-card h3,
.price-card h3,
.hosting-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.info-card p,
.price-card p,
.hosting-card p {
  color: var(--muted);
  font-size: 15px;
}

.clean-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 22px;
}

.clean-list li {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.clean-list li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  flex: 0 0 5px;
  height: 5px;
  margin-top: 9px;
  width: 5px;
}

.card-link {
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  padding-top: 20px;
}

.feature-stack {
  background: var(--white);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(520px, 46vw, 560px);
  overflow: hidden;
}

.feature-row:nth-child(even) .feature-row__media {
  order: -1;
}

.feature-row__copy,
.feature-row__media {
  height: 100%;
  min-height: 0;
}

.feature-row__copy {
  align-items: flex-start;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 88px);
  transition: background .45s ease, color .45s ease;
}

.feature-row__copy h3,
.feature-row__copy p {
  color: inherit;
}

.feature-row__copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 18px;
}

.feature-row__copy p {
  font-size: 17px;
  max-width: 48ch;
  opacity: .82;
}

.feature-row__copy:hover {
  background: var(--lime);
  color: var(--ink);
}

.feature-row--lavender .feature-row__copy {
  background: var(--lavender);
  color: var(--ink);
}

.feature-row--lavender .feature-row__copy:hover {
  background: var(--lavender-hover);
}

.feature-row__tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 10px 24px;
  margin-top: 26px;
}

.feature-row__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.work-grid,
.portfolio-grid {
  display: grid;
  gap: 34px 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  display: block;
}

.work-card__media {
  aspect-ratio: 3 / 2;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.work-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  width: 100%;
}

.work-card__media img.work-card__image--top {
  object-position: center top;
}

.work-card:hover .work-card__media img {
  transform: scale(1.04);
}

.work-card__body {
  padding: 18px 2px 0;
}

.work-card h3 {
  font-size: 19px;
  margin-bottom: 7px;
}

.work-card__meta {
  color: var(--muted);
  display: flex;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  gap: 12px;
  letter-spacing: .03em;
}

.process-bg {
  background: var(--ink) url("../v2/parallax-bg.webp") center / cover fixed;
  position: relative;
}

.process-bg::before {
  background: rgba(13, 16, 22, .73);
  content: "";
  inset: 0;
  position: absolute;
}

.process-bg > .container {
  position: relative;
  z-index: 1;
}

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

.glass-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  min-height: 240px;
  padding: 30px 26px;
  transition: border-color .3s ease, transform .3s ease;
}

.glass-card:hover {
  border-color: var(--green-light);
  transform: translateY(-5px);
}

.glass-card__number {
  color: var(--green-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.glass-card h3 {
  color: var(--paper);
  font-size: 22px;
  margin: 36px 0 12px;
}

.glass-card p {
  color: #c9ccca;
  font-size: 14px;
}

.standard-card {
  border-top: 1px solid var(--line-strong);
  padding: 24px 0;
}

.standard-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.standard-card p {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  background: var(--green);
  color: var(--paper);
  padding: 82px 0;
}

.cta-band__inner {
  align-items: center;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(30px, 4vw, 50px);
}

.cta-band p {
  color: #d8e7de;
  margin-top: 14px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr repeat(3, 1fr);
  padding-bottom: 48px;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 18px;
  width: auto;
}

.footer-brand p,
.footer-contact,
.footer-links a {
  color: #9fa3a1;
  font-size: 14px;
}

.footer-contact {
  line-height: 1.9;
  margin-top: 18px;
}

.footer-links h3 {
  color: var(--paper);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-links ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  border-top: 1px solid #232a33;
  color: #6e7370;
  font-size: 12px;
  padding-top: 24px;
}

.footer-bottom__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  justify-content: space-between;
  margin-top: 12px;
}

.back-to-top {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  bottom: 22px;
  color: var(--ink);
  display: flex;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  width: 48px;
  z-index: 80;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.page-hero {
  align-items: end;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: var(--paper);
  display: flex;
  min-height: 66vh;
  overflow: hidden;
  padding: 160px 0 76px;
  position: relative;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(13, 16, 22, .9) 0%, rgba(13, 16, 22, .62) 55%, rgba(13, 16, 22, .35) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero::after {
  background: radial-gradient(circle, rgba(0, 80, 50, .4) 0%, rgba(0, 80, 50, 0) 68%);
  content: "";
  height: 620px;
  pointer-events: none;
  position: absolute;
  right: -8%;
  top: -20%;
  width: 620px;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  max-width: 780px;
}

.page-hero--design { background-image: url("../v2/design-hero-bg.webp"); }
.page-hero--pay { background-image: url("../v2/pay-hero-bg.webp"); }
.page-hero--hosting { background-image: url("../v2/hosting-hero-bg.webp"); }
.page-hero--portfolio { background-image: url("../v2/portfolio-hero-bg.webp"); }
.page-hero--contact { background-image: url("../v2/contact-hero-bg.webp"); }

.page-hero--design,
.page-hero--portfolio,
.page-hero--pay,
.page-hero--hosting,
.page-hero--contact {
  min-height: 52.8vh;
  padding-bottom: 61px;
  padding-top: 128px;
}

.page-hero--design::before,
.page-hero--portfolio::before,
.page-hero--pay::before,
.page-hero--hosting::before {
  background: linear-gradient(90deg, rgba(13, 16, 22, .8) 0%, rgba(13, 16, 22, .52) 55%, rgba(13, 16, 22, .25) 100%);
}

.design-page > .section > .container,
.design-page > .page-hero > .container {
  max-width: 1280px;
}

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

.capability-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .3s ease;
}

.capability-card:hover {
  border-color: var(--green);
}

.capability-card__number {
  color: var(--green);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  margin-bottom: 18px;
}

.capability-card h3 {
  font-size: 20px;
  letter-spacing: -.015em;
  margin-bottom: 6px;
}

.capability-card__english {
  color: var(--quiet);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  margin-bottom: 14px;
}

.capability-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline__item {
  border-left: 1px solid rgba(255, 255, 255, .18);
  min-height: 280px;
  padding: 26px 24px;
}

.timeline__item:last-child {
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.timeline__number {
  color: var(--green-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.timeline__item h3 {
  color: var(--paper);
  font-size: 21px;
  margin: 74px 0 12px;
}

.timeline__item p {
  color: #aeb2af;
  font-size: 14px;
}

.accordion {
  border-top: 1px solid #2b323b;
}

.accordion__item {
  border-bottom: 1px solid #2b323b;
}

.accordion__button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--paper);
  display: flex;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
  min-height: 76px;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}

.accordion__icon {
  color: var(--green-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  margin-left: 20px;
}

.accordion__panel {
  color: #b9bdbb;
  display: none;
  max-width: 76ch;
  padding: 0 60px 26px 0;
}

.accordion__button[aria-expanded="true"] + .accordion__panel {
  display: block;
}

.price-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  background: var(--white);
  position: relative;
}

.price-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.price-card--featured h3,
.price-card--featured .price-card__price {
  color: var(--paper);
}

.price-card--featured p,
.price-card--featured li {
  color: #d7dad8;
}

.price-card__badge {
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  position: absolute;
  right: 18px;
  top: 18px;
}

.price-card__price {
  color: var(--green);
  font-family: "Newsreader", Georgia, serif;
  font-size: 36px;
  line-height: 1;
  margin: 30px 0 6px;
}

.price-note {
  background: var(--green-soft);
  border-radius: var(--radius);
  color: var(--body);
  font-size: 14px;
  margin-top: 24px;
  padding: 18px 22px;
}

.estimate-guide {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr .8fr;
  padding: 38px;
}

.estimate-options {
  display: grid;
  gap: 18px;
}

.estimate-options fieldset {
  border: 0;
}

.estimate-options legend {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-pill input,
.service-chip input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.choice-pill span,
.service-chip span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  min-height: 44px;
  padding: 9px 15px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.choice-pill input:checked + span,
.service-chip input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.choice-pill input:focus-visible + span,
.service-chip input:focus-visible + span {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.estimate-result {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.estimate-result strong {
  color: var(--paper);
  font-size: 22px;
}

.estimate-result p {
  color: #b9bdbb;
  font-size: 14px;
  margin-top: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  border-left: 1px solid var(--line-strong);
  padding: 28px;
}

.metric:last-child {
  border-right: 1px solid var(--line-strong);
}

.metric strong {
  color: var(--ink);
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.filter-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 44px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--body);
  min-height: 44px;
  padding: 9px 16px;
}

.filter-button[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.filter-count {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.work-card[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-step + .form-step {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 36px;
}

.form-step__heading {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.form-step__number {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  padding-top: 5px;
}

.form-step h2,
.form-step h3 {
  font-size: 22px;
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  min-height: 48px;
  outline: 0;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 80, 50, .14);
}

.field-help {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.check-row {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 10px;
  margin-top: 24px;
}

.check-row input {
  flex: 0 0 20px;
  height: 20px;
  margin-top: 2px;
  width: 20px;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.form-status {
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 24px;
  padding: 14px 16px;
}

.form-status--error {
  background: var(--error-bg);
  color: var(--error);
}

.form-status--success {
  background: var(--success-bg);
  color: var(--success);
}

.contact-sidebar {
  align-self: start;
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: var(--paper);
  padding: 34px;
  position: sticky;
  top: 104px;
}

.contact-sidebar h2,
.contact-sidebar h3 {
  color: var(--paper);
}

.contact-sidebar h2 {
  font-size: 26px;
}

.contact-sidebar > p {
  color: #b9bdbb;
  margin-top: 12px;
}

.contact-details {
  border-bottom: 1px solid #2b323b;
  border-top: 1px solid #2b323b;
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 22px 0;
}

.contact-details a {
  color: var(--paper);
  font-weight: 600;
}

.contact-steps {
  display: grid;
  gap: 18px;
  list-style: none;
}

.contact-steps li {
  display: grid;
  gap: 12px;
  grid-template-columns: 28px 1fr;
}

.contact-steps__number {
  color: var(--green-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.contact-steps strong {
  color: var(--paper);
  display: block;
  font-size: 14px;
}

.contact-steps p {
  color: #9fa3a1;
  font-size: 13px;
}

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

.hero-subtitle {
  color: var(--paper);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -.015em;
  margin-top: 22px;
}

.hero-stats {
  border-top: 1px solid rgba(250, 250, 249, .16);
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 60px;
  padding-top: 34px;
}

.hero-stats div {
  min-width: 120px;
}

.hero-stats strong {
  color: var(--paper);
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}

.hero-stats span {
  color: #9fa3a1;
  display: block;
  font-size: 13.5px;
  margin-top: 8px;
}

.trust-marquee {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 52px 0;
}

.trust-marquee > p {
  color: var(--quiet);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  margin-bottom: 34px;
  text-align: center;
  text-transform: uppercase;
}

.trust-marquee__viewport {
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  overflow: hidden;
}

.trust-marquee__track {
  align-items: center;
  animation: marquee 42s linear infinite;
  display: flex;
  width: max-content;
}

.trust-marquee__track:hover {
  animation-play-state: paused;
}

.trust-marquee__logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: auto;
  justify-content: center;
  margin: 0 16px;
}

.trust-marquee__logo img {
  border-radius: 8px;
  display: block;
  height: auto;
  max-width: 200px;
  object-fit: contain;
  width: 200px;
}

.value-copy {
  flex: 1 1 520px;
  max-width: 680px;
}

.value-section .section-heading {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
}

.value-metrics {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  padding-top: 28px;
}

.value-metrics strong {
  color: var(--green);
  display: block;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -.02em;
  line-height: 1.1;
}

.value-metrics span {
  color: var(--muted);
  display: block;
  font-size: 13.5px;
  line-height: 1.4;
  margin-top: 6px;
}

.glass-card__english,
.price-card__caption {
  color: var(--quiet);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.price-card__caption {
  margin-top: 24px;
}

.production-grid .price-card {
  border-radius: 18px;
  padding: 38px 34px;
}

.production-grid .price-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.production-grid .price-card > p:not(.price-card__fit) {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.production-grid .price-card__caption {
  margin: 0 0 4px;
}

.production-grid .price-card__price {
  font-family: inherit;
  font-size: 24px;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 24px;
}

.production-grid .clean-list {
  margin: 0 0 26px;
}

.production-grid .clean-list li {
  font-size: 14.5px;
}

.production-grid .clean-list li::before {
  background: none;
  border-radius: 0;
  color: var(--green);
  content: "✓";
  flex: 0 0 auto;
  height: auto;
  margin-top: 0;
  width: auto;
}

.production-grid .price-card--featured .clean-list li::before {
  color: var(--green-light);
}

.production-grid .price-card__badge {
  background: var(--green);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .06em;
  padding: 5px 11px;
  right: 26px;
  top: 24px;
}

.price-card__fit {
  border-top: 1px solid var(--line);
  font-size: 13.5px !important;
  line-height: 1.55;
  margin-top: auto;
  padding-top: 18px;
}

.price-card--featured .price-card__fit {
  border-color: #232a33;
}

.included-panel,
.tools-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 40px;
  padding: 26px 30px;
}

.included-panel {
  background: var(--white);
}

.tools-panel {
  border-width: 1px 0 0;
  border-radius: 0;
  margin-top: 64px;
  padding: 40px 0 0;
}

.included-panel > span,
.tools-panel > span {
  color: var(--quiet);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 17px;
}

.included-panel p {
  color: var(--quiet);
  font-size: 13.5px;
  margin-top: 18px;
}

.included-panel a {
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
}

.visual-section {
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: var(--paper);
  padding: 120px 0;
  position: relative;
}

.visual-section::before {
  content: "";
  inset: 0;
  position: absolute;
}

.visual-section > .container {
  position: relative;
  z-index: 1;
}

.visual-section .eyebrow { color: var(--green-light); }
.visual-section h2,
.visual-section h3 { color: var(--paper); }
.visual-section .lead { color: #9fa3a1; }

.visual-section .section-heading,
.process-bg .section-heading {
  display: block;
}

.visual-section .section-heading .lead,
.process-bg .section-heading .lead {
  margin-top: 14px;
}

.visual-section .glass-card:hover,
.process-bg .glass-card:hover {
  background: rgba(255, 255, 255, .1);
}

.visual-section--design-process {
  background-image: url("../v2/design-hero-bg.webp");
  background-attachment: fixed;
}

.visual-section--design-process::before {
  background: linear-gradient(rgba(13, 16, 22, .38), rgba(13, 16, 22, .6));
}

.visual-section--pay-types {
  background-image: url("../v2/paytypes-bg.webp");
  background-attachment: fixed;
}

.visual-section--pay-types::before {
  background: linear-gradient(rgba(13, 16, 22, .28), rgba(13, 16, 22, .45));
}

.visual-section--pay-types .eyebrow {
  color: var(--green);
}

.visual-section--managed {
  background-image: url("../v2/managed-bg.webp");
  background-attachment: fixed;
}

.visual-section--managed::before {
  background: linear-gradient(rgba(13, 16, 22, .34), rgba(13, 16, 22, .52));
}

.managed-card {
  min-height: 0;
  padding: 24px 26px 22px;
}

.managed-card h3 {
  margin: 18px 0 10px;
}

.managed-card__summary {
  color: #e0e3e1 !important;
  font-size: 14px !important;
  line-height: 1.6;
}

.managed-card__points {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  gap: 6px;
  list-style: none;
  margin-top: 15px;
  padding-top: 14px;
}

.managed-card__points li {
  color: #c9ccca;
  font-size: 13px;
  line-height: 1.55;
  padding-left: 15px;
  position: relative;
}

.managed-card__points li::before {
  background: var(--green-light);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: .7em;
  width: 4px;
}

.managed-scope-note {
  color: #bdc1bf;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 28px;
}

.visual-section--parallax {
  background-image: url("../v2/parallax-bg.webp");
  background-attachment: fixed;
}

.visual-section--parallax::before {
  background: linear-gradient(rgba(13, 16, 22, .62), rgba(13, 16, 22, .82));
}

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

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

.glass-card--process {
  min-height: 220px;
  padding: 32px 26px;
}

.glass-card--process h3 {
  font-size: 18px;
  margin: 20px 0 4px;
}

.glass-card__english {
  color: #8fa39c;
  margin-bottom: 14px;
}

.glass-card--pricing {
  min-height: 350px;
}

.glass-card--pricing h3 {
  margin: 0 0 22px;
}

.glass-card__price {
  color: var(--paper);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.glass-card .clean-list {
  color: #d7dad8;
  margin-top: 28px;
}

.glass-card .clean-list li::before {
  background: var(--green-light);
}

.standard-card--accent {
  border-top: 2px solid var(--green);
}

.approach-grid {
  gap: 20px;
}

.approach-grid .standard-card {
  padding: 22px 0 0;
}

.approach-grid .standard-card p {
  font-size: 14.5px;
  line-height: 1.62;
}

.tools-panel .chip-list {
  gap: 12px;
}

.tools-panel .chip-list span {
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
}

.cost-card__rows {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
}

.cost-card__rows div {
  display: flex;
  font-size: 13px;
  justify-content: space-between;
}

.cost-card__rows dt { color: var(--muted); }
.cost-card__rows dd { color: var(--ink); font-weight: 700; }

.price-card__button {
  margin-top: auto;
  width: 100%;
}

.hosting-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  position: relative;
}

.hosting-card--featured h3,
.hosting-card--featured .price-card__price { color: var(--paper); }
.hosting-card--featured li { color: #d7dad8; }
.hosting-card--featured .card-kicker,
.hosting-card--featured .card-link { color: var(--green-light); }
.hosting-card--featured .card-link { border-color: #2b323b; }

.hosting-card .price-card__price {
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hosting-faq {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(8, 17, 27, .82), rgba(8, 14, 22, .92)),
    url("../v2/hosting-faq-bg.webp?v=20260721.3");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.operations-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr 1fr;
}

.operations-title {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 24px;
}

.migration-list {
  list-style: none;
}

.migration-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  padding: 18px 0;
}

.migration-list li > span {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.migration-list strong { color: var(--ink); }
.migration-list p { color: var(--muted); font-size: 14px; margin-top: 3px; }

.operations-metrics {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.operations-metrics div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
}

.operations-metrics strong {
  color: var(--green);
  display: block;
  font-size: 24px;
  letter-spacing: -.02em;
}

.operations-metrics span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

.accordion--light {
  border-color: var(--line);
}

.accordion--light .accordion__item { border-color: var(--line); }
.accordion--light .accordion__button { color: var(--ink); }
.accordion--light .accordion__icon { color: var(--green); }
.accordion--light .accordion__panel { color: var(--muted); }

.faq-section .container {
  max-width: 940px;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}

.work-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.work-card__media { border-radius: 0; }
.work-card__body { padding: 18px 20px 20px; }

.cta-band--light {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 0;
}

.cta-band--light h2 { color: var(--ink); }
.cta-band--light p { color: var(--muted); }

.cta-band--portfolio {
  background: var(--ink) url("../v2/parallax-bg.webp") center / cover fixed;
  padding: 132px 0;
  position: relative;
}

.cta-band--portfolio::before {
  background: linear-gradient(rgba(13, 16, 22, .48), rgba(13, 16, 22, .7));
  content: "";
  inset: 0;
  position: absolute;
}

.cta-band--portfolio > .container { position: relative; z-index: 1; }

.cta-band__inner--center {
  display: block;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.cta-band__inner--center p {
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.cta-band__inner--center .button-row {
  justify-content: center;
  margin-top: 40px;
}

.home-contact {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 116px 0;
}

.home-contact__grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-contact__intro .lead { margin-top: 18px; }

.promise-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin-top: 36px;
}

.promise-list li {
  display: grid;
  gap: 16px;
  grid-template-columns: 28px 1fr;
}

.promise-list li > span {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
}

.promise-list p { color: var(--body); font-size: 15.5px; }

.home-contact blockquote {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.7;
  margin-top: 30px;
  max-width: 440px;
  padding-top: 22px;
}

.home-contact__details {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.home-contact__details a:first-child {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

.home-contact__details span { color: var(--muted); font-size: 14px; }
.home-contact__details a:last-child { color: var(--green); font-size: 14.5px; font-weight: 700; }

.quick-quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 36px;
}

.quick-quote h3 { font-size: 21px; }
.quick-quote > p { color: var(--muted); font-size: 14px; margin: 6px 0 26px; }
.quick-quote .field textarea { min-height: 110px; }
.quick-quote .field-help { display: inline; }
.quick-quote .g-recaptcha { margin-top: 22px; }
.quick-quote .btn { margin-top: 18px; width: 100%; }

.page-hero--contact {
  background-position: center 44%;
}

.contact-section {
  padding-bottom: 110px;
  padding-top: 80px;
}

.contact-sidebar {
  background: transparent;
  border-radius: 0;
  display: grid;
  gap: 20px;
  padding: 0;
}

.contact-sidebar__direct,
.contact-sidebar__card {
  border-radius: 18px;
  padding: 32px;
}

.contact-sidebar__direct {
  background: var(--ink);
  color: var(--paper);
}

.contact-sidebar__direct h3 {
  color: var(--paper);
  font-size: 18px;
  margin-bottom: 18px;
}

.contact-sidebar__direct > a {
  color: var(--paper);
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.contact-sidebar__direct p,
.contact-sidebar__direct p a {
  color: #9fa3a1;
  font-size: 14px;
  line-height: 1.7;
}

.contact-sidebar__card {
  background: var(--white);
  border: 1px solid var(--line);
}

.sidebar-label {
  color: var(--quiet);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-sidebar__card .contact-steps {
  gap: 0;
}

.contact-sidebar__card .contact-steps li {
  gap: 16px;
  grid-template-columns: 30px 1fr;
  padding-bottom: 22px;
}

.contact-sidebar__card .contact-steps__number {
  align-items: center;
  background: var(--green-soft);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  font-weight: 600;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.contact-sidebar__card .contact-steps strong {
  color: var(--ink);
  font-size: 15px;
}

.contact-sidebar__card .contact-steps p,
.contact-sidebar__card > p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.contact-response {
  border-top: 1px solid var(--line);
  color: var(--body) !important;
  padding-top: 18px;
}

.contact-response strong { color: var(--green); }

.contact-sidebar__card .card-link {
  display: inline-block;
  margin-top: 14px;
  padding-top: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .site-nav > a:not(.btn) { font-size: 13px; }
  .feature-row__copy { padding: clamp(40px, 4.5vw, 56px); }
  .card-grid--4,
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .glass-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 88px 0; }
  .card-grid--3,
  .capability-grid,
  .work-grid,
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: 1fr; }
  .timeline__item,
  .timeline__item:last-child { border: 0; border-top: 1px solid rgba(255, 255, 255, .18); min-height: 0; }
  .timeline__item h3 { margin-top: 28px; }
  .estimate-guide,
  .contact-layout,
  .home-contact__grid,
  .operations-grid,
  .value-section .section-heading { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .section { padding: 72px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 38px; }
  .display-title { font-size: clamp(42px, 13vw, 64px); }
  .hero { min-height: 760px; }
  .hero__content { padding-bottom: 52px; }
  .proof-row { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .hero-stats { gap: 24px; margin-top: 38px; padding-top: 26px; }
  .hero-stats strong { font-size: 34px; }
  .trust-strip__inner { align-items: flex-start; flex-direction: column; gap: 8px; text-align: left; }
  .trust-marquee { padding: 42px 0; }
  .value-metrics { grid-template-columns: 1fr; }
  .card-grid--4,
  .card-grid--3,
  .card-grid--2,
  .price-grid,
  .capability-grid,
  .work-grid,
  .portfolio-grid,
  .glass-grid,
  .form-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; height: auto; overflow: visible; }
  .feature-row:nth-child(even) .feature-row__media { order: 0; }
  .feature-row__copy { height: auto; min-height: 380px; padding: 42px 24px; }
  .feature-row__media { height: 380px; min-height: 380px; max-height: 440px; }
  .cta-band { padding: 62px 0; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .cta-band__inner--center { align-items: center; }
  .cta-band--portfolio { padding: 82px 0; }
  .home-contact { padding: 78px 0; }
  .quick-quote { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero { min-height: 600px; padding-bottom: 54px; }
  .page-hero--design,
  .page-hero--portfolio,
  .page-hero--pay,
  .page-hero--hosting,
  .page-hero--contact { min-height: 480px; padding-bottom: 43px; padding-top: 128px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(3) { border-top: 1px solid var(--line-strong); }
  .metric:nth-child(4) { border-right: 1px solid var(--line-strong); border-top: 1px solid var(--line-strong); }
  .estimate-guide,
  .contact-form { padding: 26px 20px; }
  .operations-metrics { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .mobile-nav { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 480px) {
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  .metric,
  .metric:nth-child(3),
  .metric:nth-child(4),
  .metric:last-child { border: 0; border-top: 1px solid var(--line-strong); }
  .metric:last-child { border-bottom: 1px solid var(--line-strong); }
  .filter-bar { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .process-bg,
  .visual-section--design-process,
  .visual-section--pay-types,
  .visual-section--managed,
  .visual-section--parallax,
  .hosting-faq,
  .cta-band--portfolio { background-attachment: scroll; }
  .trust-marquee__track { animation: none; }
}
