:root {
  --paper: #f5f6f8;
  --panel: #ffffff;
  --panel-soft: #f9fafb;
  --brand-navy: #002b5b;
  --brand-orange: #ff7a00;
  --navy: #17385d;
  --navy-deep: #0f2a45;
  --orange: #e6822a;
  --orange-soft: #fff3e8;
  --text: #111827;
  --muted: #637083;
  --line: #dde2e8;
  --soft-blue: #edf4f8;
  --sky: #2f6f9f;
  --teal: #2f7f76;
  --green: #4f8665;
  --gold: #bd8d2f;
  --rose: #aa6570;
  --lavender: #6e6a9f;
  --radius: 8px;
  --shadow: 0 14px 36px rgba(31, 48, 70, 0.12);
  --title-font: "Lora", "Pretendard", "Noto Sans KR", serif;
  --body-font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body-font);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.page-width {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.member-bar {
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--muted);
  font-size: 0.82rem;
}

.member-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 38px;
  align-items: center;
}

.member-tabs,
.member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.member-tabs a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.member-links a {
  color: var(--muted);
  font-weight: 800;
}

.member-tabs a:hover,
.member-tabs a:focus-visible,
.member-links a:hover,
.member-links a:focus-visible {
  color: var(--sky);
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.title-row {
  display: grid;
  grid-template-columns: 250px minmax(380px, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--brand-navy);
  background: var(--panel);
  color: var(--brand-orange);
  font-family: var(--title-font);
  font-size: 1.38rem;
  font-weight: 800;
}

.brand strong {
  display: block;
  color: var(--brand-navy);
  font-family: var(--title-font);
  font-size: 1.2rem;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 3px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 86px;
  min-height: 46px;
  max-width: 520px;
  width: 100%;
  justify-self: center;
  border: 2px solid #111820;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(23, 56, 93, 0.08);
}

.search-box input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--text);
  outline: 0;
}

.search-box button {
  border: 0;
  background: #05090d;
  color: #fff;
  font-weight: 900;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.header-actions a {
  display: grid;
  min-width: 96px;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

.header-actions span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.header-actions strong {
  color: var(--brand-navy);
  font-size: 0.95rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.main-nav {
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.nav-inner a,
.all-category {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
}

.all-category {
  min-width: 54px;
  justify-content: center;
  background: #f7f9fb;
  color: #111820;
  font-size: 1.25rem;
}

.nav-inner a:hover,
.nav-inner a:focus-visible {
  color: var(--sky);
  background: #f7f9fb;
}

.service-link,
.quote-link {
  color: #fff !important;
}

.nav-inner .service-link {
  margin-left: auto;
  background: #2499c8;
}

.nav-inner .quote-link {
  background: var(--brand-navy);
}

.nav-inner .service-link:hover,
.nav-inner .quote-link:hover,
.nav-inner .service-link:focus-visible,
.nav-inner .quote-link:focus-visible {
  color: #fff;
  filter: brightness(1.05);
}

.home-showcase {
  overflow: hidden;
  padding: 4px 0 22px;
  background: #fff;
}

.showcase-track {
  display: grid;
  grid-template-columns: minmax(250px, 0.43fr) minmax(680px, 1.95fr) minmax(250px, 0.43fr);
  gap: 28px;
  width: min(1960px, calc(100% + 80px));
  margin: 0 auto;
}

.side-banner,
.main-banner {
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
}

.side-banner {
  position: relative;
  display: grid;
  align-content: end;
  padding: 34px;
}

.side-banner.left {
  background: linear-gradient(135deg, #ff9b76 0%, #f17f63 100%);
}

.side-banner.right {
  background: linear-gradient(135deg, #b6f2cf 0%, #9ce7bf 100%);
}

.side-banner div {
  position: relative;
  z-index: 1;
  max-width: 230px;
}

.side-banner span,
.industry-tile span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(17, 24, 39, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
}

.side-banner h2 {
  margin-bottom: 12px;
  color: #14202a;
  font-family: var(--body-font);
  font-size: 1.85rem;
  font-weight: 900;
}

.side-banner p {
  color: rgba(17, 24, 39, 0.78);
  font-size: 1rem;
  line-height: 1.58;
}

.side-banner a,
.industry-tile span {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #14202a;
}

.side-banner img {
  position: absolute;
  right: -68px;
  bottom: -52px;
  width: 240px;
  opacity: 0.42;
}

.main-banner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  background: linear-gradient(135deg, #247fbc 0%, #1e77b7 52%, #216ea9 100%);
}

.main-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.14) 100%);
  pointer-events: none;
}

.banner-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  padding: 58px 56px 58px 20px;
}

.banner-copy p {
  color: #ffe46d;
}

.main-banner h1 {
  margin-bottom: 12px;
  color: #ffe500;
  font-family: var(--body-font);
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.main-banner strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.22;
}

.main-banner .banner-copy span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-pill {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.main-banner img {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: min(86%, 560px);
  height: auto;
  min-height: 0;
  margin-left: 24px;
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(7, 25, 44, 0.24);
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-top: 18px;
}

.showcase-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c8cdd2;
}

.showcase-dots .active {
  background: #6f7881;
}

.shop-main {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 16px;
  padding-top: 18px;
}

.category-panel,
.quick-panel,
.support-box,
.quick-categories a,
.product-card,
.deal-list article,
.industry-grid article,
.care-steps li,
.quote-form,
.recommendation {
  border: 1px solid var(--line);
  background: var(--panel);
}

.category-panel h2 {
  margin: 0;
  padding: 16px;
  background: linear-gradient(90deg, var(--navy-deep), #244d70);
  color: #fff;
  font-size: 1rem;
}

.category-panel a {
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.category-panel a::after {
  content: ">";
  color: var(--muted);
}

.category-panel a:hover,
.category-panel a:focus-visible {
  color: var(--sky);
}

.deal-copy p,
.server-inner p,
.quote-copy p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--title-font);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.1;
  word-break: keep-all;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--title-font);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  word-break: keep-all;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
}

.server-inner span,
.quote-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.72;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #c9d3dd;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.btn.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 130, 42, 0.18);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.btn.full {
  width: 100%;
}

.quick-panel {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.support-box {
  padding: 18px 14px;
  border-color: #244d70;
  background: linear-gradient(160deg, var(--navy-deep) 0%, #244d70 100%);
  color: #fff;
}

.support-box span {
  color: #d9e5f1;
  font-size: 0.82rem;
  font-weight: 900;
}

.support-box strong {
  display: block;
  margin: 8px 0;
  color: #f1c46c;
  font-size: 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.support-box p {
  margin-bottom: 0;
  color: #edf3f8;
  font-size: 0.86rem;
}

.quick-panel a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.kakao-link {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid #e0cf7a;
  background: #fff8d9;
  color: #3f3520;
  font-size: 0.9rem;
  font-weight: 900;
}

.kakao-link.primary {
  border-color: #f1d34c;
  background: #fee500;
  color: #191600;
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 18px 0 22px;
}

.quick-categories a {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  align-content: start;
  gap: 12px;
  padding: 28px 34px;
  border: 0;
  border-radius: var(--radius);
  isolation: isolate;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.quick-categories a::after {
  position: absolute;
  right: -54px;
  bottom: -70px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.quick-categories a.religious,
.quick-categories a.nonprofit {
  background: linear-gradient(135deg, #ffd8e8 0%, #f6bfd6 100%);
}

.quick-categories a.office {
  background: linear-gradient(135deg, #bdebf8 0%, #94d9ef 100%);
}

.quick-categories a.education,
.quick-categories a.consulting {
  background: linear-gradient(135deg, #fff2c8 0%, #ffe4a3 100%);
}

.quick-categories a.medical {
  background: linear-gradient(135deg, #d7efbf 0%, #bfe29c 100%);
}

.quick-categories a:hover,
.quick-categories a:focus-visible {
  box-shadow: 0 14px 28px rgba(31, 48, 70, 0.12);
  transform: translateY(-2px);
}

.quick-categories strong {
  color: #1a2938;
  font-size: 1.65rem;
  line-height: 1.18;
  word-break: keep-all;
}

.quick-categories span {
  justify-self: end;
  min-height: 30px;
  margin-bottom: 0;
  padding: 0 14px;
  background: rgba(17, 24, 39, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-categories p {
  margin-bottom: 0;
  color: rgba(17, 24, 39, 0.76);
  font-size: 1rem;
  line-height: 1.62;
}

.product-section,
.search-result,
.deal-band,
.industry-section,
.care-section {
  padding-top: 42px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c7d2dd;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.75);
}

.section-title h2 span {
  color: var(--gold);
}

.section-title a,
.section-title button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(31, 48, 70, 0.05);
}

.product-card-main {
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}

.product-card-main:focus-visible {
  outline: 3px solid rgba(26, 158, 210, 0.35);
  outline-offset: -3px;
}

.product-card:hover .product-name,
.product-card-main:focus-visible .product-name {
  color: var(--sky-dark);
}

.product-media {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfd 0%, #f2f5f8 100%);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  min-width: 44px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sky);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.badge.recommend {
  background: var(--gold);
  color: #fff;
}

.badge.popular {
  background: var(--green);
}

.badge.new {
  background: var(--rose);
}

.product-body {
  padding: 15px 14px 12px;
}

.product-name {
  min-height: 46px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.product-info {
  min-height: 42px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-price {
  display: grid;
  gap: 3px;
  margin-bottom: 10px;
}

.product-price span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-price strong {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-spec {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--text);
  font-size: 0.82rem;
}

.product-spec div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px;
}

.product-spec dt {
  color: var(--muted);
  font-weight: 900;
}

.product-spec dd {
  margin: 0;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 14px 14px;
}

.product-actions button,
.product-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-actions button {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.deal-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  align-items: stretch;
}

.deal-copy {
  padding: 28px;
  background: linear-gradient(150deg, var(--navy-deep) 0%, #2b5d73 100%);
  color: #fff;
}

.deal-copy h2 {
  color: #fff;
}

.deal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.deal-list article {
  padding: 18px;
}

.deal-list span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.deal-list strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  line-height: 1.4;
}

.deal-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.industry-grid,
.care-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid article,
.care-steps li {
  padding: 20px;
}

.industry-grid span,
.care-steps span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.industry-grid p,
.care-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.server-section {
  margin-top: 48px;
  background: linear-gradient(135deg, #102b45 0%, #244b60 52%, #2f5e55 100%);
  color: #fff;
}

.server-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0;
}

.server-inner h2 {
  color: #fff;
  margin-bottom: 14px;
}

.server-inner span {
  color: #e4edf2;
}

.server-inner .btn {
  margin-top: 24px;
}

.server-inner img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.care-steps {
  padding: 0;
  list-style: none;
}

.quote-section {
  margin-top: 48px;
  padding: 54px 0 62px;
  background: linear-gradient(180deg, #edf4f8 0%, #f6f4f1 100%);
}

.detail-main {
  background: var(--paper);
}

.detail-hero {
  background: linear-gradient(135deg, #f7fbfd 0%, #edf4f8 46%, #fff7ec 100%);
  border-bottom: 1px solid var(--line);
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 38px;
  align-items: center;
  padding: 48px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--navy);
}

.detail-eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  background: var(--brand-navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.detail-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.12;
}

.detail-lead {
  max-width: 760px;
  margin-bottom: 24px;
  color: #4d5b69;
  font-size: 1.08rem;
  line-height: 1.75;
  word-break: keep-all;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-visual {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.detail-visual img {
  width: 100%;
  border-radius: var(--radius);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
  gap: 22px;
  padding: 42px 0 56px;
}

.detail-stack {
  display: grid;
  gap: 22px;
}

.detail-section,
.detail-side-card {
  border: 1px solid var(--line);
  background: #fff;
}

.detail-section {
  padding: 28px;
}

.detail-section h2,
.detail-side-card h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 1.36rem;
  font-weight: 900;
}

.detail-section p {
  color: var(--muted);
  line-height: 1.72;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-grid article,
.detail-flow li,
.deliverable-list li {
  border: 1px solid #dbe3ea;
  background: #fbfcfd;
}

.detail-grid article {
  padding: 18px;
}

.detail-grid span,
.detail-flow span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-grid h3,
.detail-flow h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.detail-grid p,
.detail-flow p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.detail-flow,
.deliverable-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.detail-flow li,
.deliverable-list li {
  padding: 18px;
}

.deliverable-list li {
  color: #4d5b69;
  font-weight: 800;
  line-height: 1.55;
}

.detail-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.detail-side-card {
  padding: 22px;
}

.detail-side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-side-card div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-side-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-side-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.detail-cta {
  padding: 24px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, #244d70 100%);
  color: #fff;
}

.detail-cta h2 {
  color: #fff;
}

.detail-cta p {
  color: #dce8f0;
  line-height: 1.65;
}

.detail-cta .btn {
  margin-top: 10px;
}

.item-main {
  background: #f4f6f8;
}

.item-shell {
  padding: 28px 0 56px;
}

.item-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.item-breadcrumb a {
  color: var(--navy);
}

.item-category-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.item-view {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.item-gallery {
  display: grid;
  gap: 14px;
  align-content: start;
}

.item-main-image {
  border: 1px solid var(--line);
  background: #f8fafc;
}

.item-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.item-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.item-thumbs button {
  min-height: 72px;
  border: 1px solid var(--line);
  background: #fff;
}

.item-thumbs img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.item-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.item-prev-next a {
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.item-buy-box {
  min-width: 0;
}

.item-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.item-buy-box h1 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 1.26;
}

.item-summary {
  margin-bottom: 18px;
  color: #566372;
  line-height: 1.7;
}

.item-spec-list {
  margin: 0 0 16px;
  border-top: 2px solid var(--navy);
}

.item-spec-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
}

.item-spec-list dt,
.item-spec-list dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
}

.item-spec-list dt {
  background: #f7f9fb;
  color: var(--muted);
  font-weight: 900;
}

.item-spec-list dd {
  color: var(--text);
  font-weight: 800;
}

.item-price {
  color: var(--brand-navy);
  font-size: 1.18rem;
  font-weight: 900;
}

.item-checks {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #3e4c5a;
  font-size: 0.92rem;
  line-height: 1.5;
}

.item-options {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #dbe3ea;
  background: #fbfcfd;
}

.item-options h2,
.item-selected h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 900;
}

.item-options label {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.item-options select {
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.item-selected {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.item-selected p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.item-buttons {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
}

.item-buttons a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}

.item-buttons .primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.item-related {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.item-related h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 900;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fbfcfd;
}

.related-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.35;
}

.related-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.item-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.item-tabs a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.item-tabs a:last-child {
  border-right: 0;
}

.item-tabs a:first-child {
  background: var(--navy);
  color: #fff;
}

.item-info-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
}

.item-info-panel h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--body-font);
  font-size: 1.35rem;
  font-weight: 900;
}

.item-info-panel h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.item-basic-desc {
  margin-bottom: 24px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #fbfcfd;
  color: #4d5b69;
  font-weight: 800;
  line-height: 1.65;
}

.item-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 26px;
}

.item-feature-grid article {
  padding: 18px;
  border: 1px solid #dbe3ea;
  background: #fbfcfd;
  text-align: center;
}

.item-feature-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--navy);
  font-weight: 900;
}

.item-feature-grid strong {
  display: block;
  color: var(--navy);
}

.item-wide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0;
  padding: 22px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #244d70 100%);
  color: #fff;
}

.item-wide-cta strong {
  color: #fff;
  font-size: 1.2rem;
}

.item-wide-cta p {
  margin: 6px 0 0;
  color: #dfeaf1;
}

.item-info-table {
  width: 100%;
  border-collapse: collapse;
  color: #4d5b69;
}

.item-info-table th,
.item-info-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.item-info-table th {
  width: 180px;
  background: #f7f9fb;
  color: var(--navy);
  font-weight: 900;
}

.item-empty {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbfcfd;
  color: var(--muted);
  line-height: 1.65;
}

.medical-category-main {
  background: #fbfcfb;
  color: #1f2933;
}

.category-title-band {
  background: #303030;
  color: #fff;
}

.category-title-band h1 {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  margin: 0;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 900;
}

.category-title-band h1::before {
  display: inline-grid;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: #fff;
  color: var(--sky-dark);
  content: ">";
  font-size: 0.9rem;
  line-height: 1;
  place-items: center;
}

.medical-shell {
  padding: 18px 0 58px;
}

.medical-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #d7e1da;
  color: #6b7785;
  font-size: 0.86rem;
  font-weight: 800;
}

.medical-breadcrumb a {
  color: #667586;
}

.medical-breadcrumb strong {
  color: #178078;
}

.medical-hero {
  margin-top: 28px;
  padding: 56px 56px 44px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, #d9edc2 0%, #edf7dc 100%);
}

.medical-hero-top {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 44px;
}

.medical-hero-top img {
  width: 220px;
  justify-self: center;
  filter: drop-shadow(0 18px 20px rgba(55, 89, 62, 0.16));
}

.medical-hero-top p {
  margin-bottom: 8px;
  color: #2a7a33;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.medical-hero-top h2 {
  margin-bottom: 18px;
  color: #2d8c3a;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
}

.medical-hero-top strong {
  display: block;
  margin-bottom: 20px;
  color: #3d4348;
  font-size: 1.48rem;
  font-weight: 900;
}

.medical-hero-top span {
  display: block;
  color: #343b41;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.68;
}

.medical-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.medical-visual-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 20px;
  background: #dce8db;
}

.medical-visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.medical-visual-grid span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

.medical-list-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px 0 16px;
  border-bottom: 1px solid #d8e2db;
  color: #6b7785;
  font-size: 0.86rem;
  font-weight: 850;
}

.medical-list-header div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.medical-list-header a {
  color: #667586;
}

.medical-product-list {
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.medical-product-list article {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid #d9e4dc;
  background: #fff;
  box-shadow: 0 8px 22px rgba(48, 72, 56, 0.05);
}

.medical-product-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #eef6e7;
  object-fit: cover;
}

.medical-product-list h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 900;
}

.medical-product-list strong {
  display: block;
  margin-bottom: 10px;
  color: #2d8c3a;
  font-size: 1.08rem;
  font-weight: 900;
}

.medical-product-list p {
  margin-bottom: 12px;
  color: #5e6972;
  line-height: 1.6;
}

.medical-product-list a {
  color: var(--sky-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.medical-strategy {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid #dbe6df;
  background: #fff;
}

.medical-strategy h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.5rem;
}

.medical-strategy table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.medical-strategy th,
.medical-strategy td {
  padding: 16px 14px;
  border: 1px solid #d8e4dc;
  line-height: 1.62;
  vertical-align: top;
}

.medical-strategy thead th {
  background: #eef6e7;
  color: #2f6f34;
  font-weight: 900;
}

.medical-strategy tbody th {
  width: 22%;
  background: #f8fbf5;
  color: #2d455d;
  font-weight: 900;
}

.medical-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  background: #26382d;
  color: #fff;
}

.medical-cta span {
  display: block;
  margin-bottom: 6px;
  color: #9fe071;
  font-size: 0.82rem;
  font-weight: 900;
}

.medical-cta h2 {
  margin-bottom: 8px;
  color: #fff;
}

.medical-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-inner {
  display: grid;
  grid-template-columns: 0.78fr 0.95fr 0.82fr;
  gap: 18px;
  align-items: start;
}

.quote-copy h2 {
  margin-bottom: 12px;
}

.quote-form,
.recommendation {
  padding: 20px;
}

.quote-form {
  display: grid;
  gap: 13px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.recommendation {
  min-height: 254px;
  background: #fff;
}

.recommendation span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.recommendation strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.4;
}

.recommendation p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  margin-top: 0;
  background: #1e2529;
  color: #8f9aa3;
}

.footer-shell {
  padding: 36px 0 46px;
}

.footer-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-policy,
.footer-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #b8c2ca;
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-policy a:hover,
.footer-policy a:focus-visible,
.footer-quick a:hover,
.footer-quick a:focus-visible {
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 1fr;
  gap: 58px;
  padding-top: 32px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-company h2 {
  font-size: 1.22rem;
}

.footer-company h2 span {
  color: #d4e0e8;
  font-size: 0.78rem;
}

.footer-caption,
.footer-bank p,
.footer-service li,
.copyright {
  color: #8f9aa3;
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-caption {
  margin-bottom: 14px;
}

.footer-business {
  display: grid;
  gap: 5px;
  margin: 0;
}

.footer-business div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-business dt {
  color: #aeb8bf;
  font-weight: 900;
}

.footer-business dd {
  margin: 0;
}

.copyright {
  margin: 22px 0 0;
}

.account-number {
  color: #cbd4da;
  font-weight: 900;
}

.account-note {
  color: #6f7b84;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #35c759;
  border-radius: 999px;
  color: #35c759;
  font-size: 0.76rem;
  font-weight: 900;
}

.footer-service ul {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.footer-service li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-kakao {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 0;
  background: #fee500;
  color: #191600;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .title-row {
    grid-template-columns: 220px 1fr auto;
  }

  .showcase-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 32px, 1180px);
    gap: 16px;
  }

  .main-banner {
    grid-column: 1 / -1;
    order: -1;
    min-height: 360px;
  }

  .side-banner {
    min-height: 240px;
  }

  .main-banner h1 {
    font-size: 2.7rem;
  }

  .main-banner strong {
    font-size: 1.75rem;
  }

  .shop-main {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .quick-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, 1fr);
  }

  .support-box {
    min-height: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-inner,
  .deal-band,
  .detail-hero-inner,
  .detail-content,
  .item-view {
    grid-template-columns: 1fr;
  }

  .medical-hero {
    padding: 44px 34px 36px;
  }

  .medical-hero-top {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .detail-visual {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .member-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .title-row {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 14px 0;
  }

  .search-box,
  .header-actions {
    grid-column: 1 / -1;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-inner {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-inner a,
  .all-category {
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .nav-inner .service-link {
    margin-left: 0;
  }

  .home-showcase {
    padding-top: 14px;
  }

  .showcase-track {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
  }

  .shop-main,
  .main-banner,
  .server-inner {
    grid-template-columns: 1fr;
  }

  .banner-copy,
  .main-banner img {
    grid-column: 1;
    grid-row: auto;
  }

  .main-banner img {
    min-height: 0;
    margin-left: 0;
  }

  .category-panel {
    display: none;
  }

  .category-panel.is-open {
    display: block;
  }

  .quick-panel,
  .quick-categories,
  .industry-grid,
  .care-steps,
  .deal-list,
  .detail-grid,
  .item-feature-grid,
  .medical-hero-top,
  .medical-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .medical-product-list article {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .medical-strategy {
    overflow-x: auto;
  }

  .item-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .item-tabs a {
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .detail-hero h1 {
    font-size: 2.28rem;
  }

  .detail-content {
    padding-top: 28px;
  }
}

@media (max-width: 560px) {
  .page-width {
    width: min(100% - 24px, 1180px);
  }

  .brand small,
  .header-actions {
    display: none;
  }

  .search-box {
    grid-template-columns: 1fr 68px;
  }

  .side-banner,
  .main-banner {
    min-height: 0;
  }

  .side-banner {
    padding: 24px;
  }

  .side-banner img {
    width: 190px;
  }

  .main-banner h1 {
    font-size: 2.05rem;
  }

  .main-banner strong {
    font-size: 1.28rem;
  }

  .main-banner .banner-copy span {
    font-size: 0.96rem;
  }

  .banner-copy {
    padding: 30px 22px;
  }

  .banner-actions,
  .section-title {
    align-items: stretch;
  }

  .btn,
  .banner-actions a {
    width: 100%;
  }

  .quick-panel,
  .quick-categories,
  .product-grid,
  .product-grid.compact,
  .industry-grid,
  .care-steps,
  .deal-list,
  .quote-inner,
  .detail-grid,
  .item-feature-grid,
  .related-grid,
  .item-buttons,
  .footer-topline,
  .medical-hero-top,
  .medical-visual-grid,
  .medical-product-list article {
    grid-template-columns: 1fr;
  }

  .medical-shell {
    padding-top: 12px;
  }

  .category-title-band h1 {
    min-height: 62px;
    font-size: 1.18rem;
  }

  .medical-hero {
    margin-top: 20px;
    padding: 28px 18px;
    border-radius: 16px 16px 0 0;
  }

  .medical-hero-top {
    gap: 18px;
    margin-bottom: 26px;
  }

  .medical-hero-top img {
    width: 150px;
  }

  .medical-hero-top h2 {
    font-size: 1.86rem;
  }

  .medical-hero-top strong {
    font-size: 1.08rem;
  }

  .medical-hero-top span {
    font-size: 0.96rem;
  }

  .medical-visual-grid {
    gap: 16px;
  }

  .medical-visual-grid article,
  .medical-visual-grid img {
    min-height: 190px;
  }

  .medical-list-header,
  .medical-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .medical-product-list article,
  .medical-strategy,
  .medical-cta {
    padding: 18px;
  }

  .medical-strategy table {
    min-width: 640px;
  }

  .item-shell {
    padding-top: 18px;
  }

  .item-view,
  .item-info-panel,
  .item-related {
    padding: 18px;
  }

  .item-options label,
  .item-spec-list div {
    grid-template-columns: 1fr;
  }

  .item-spec-list dt,
  .item-spec-list dd {
    min-height: 0;
  }

  .item-tabs {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    padding: 32px 0;
  }

  .detail-hero h1 {
    font-size: 1.92rem;
  }

  .detail-section,
  .detail-side-card,
  .detail-cta {
    padding: 20px;
  }

  .product-name,
  .product-info {
    min-height: auto;
  }

  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-service li {
    white-space: normal;
  }
}

/* Visual refinement layer */
body {
  background: #f3f5f7;
  color: #182433;
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
p,
a,
button,
input,
select,
strong,
span {
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--body-font);
  word-break: keep-all;
}

p,
li,
dd,
td {
  word-break: keep-all;
}

.page-width {
  width: min(1200px, calc(100% - 36px));
}

.shop-header {
  border-bottom: 1px solid #d8dee6;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 22px rgba(18, 31, 45, 0.05);
}

.title-row {
  grid-template-columns: 260px minmax(360px, 1fr) auto;
  min-height: 84px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-width: 1px;
  background: #fbfbf9;
  font-size: 1.22rem;
}

.brand strong {
  color: #102f50;
  font-family: var(--body-font);
  font-size: 1.28rem;
  font-weight: 900;
}

.brand small {
  color: #667586;
  font-size: 0.73rem;
  font-weight: 700;
}

.search-box {
  min-height: 44px;
  max-width: 540px;
  border: 2px solid #101820;
  box-shadow: none;
}

.search-box input {
  font-size: 0.94rem;
}

.search-box button {
  background: #07111d;
  font-size: 0.94rem;
}

.header-actions a {
  min-width: 92px;
  min-height: 50px;
  background: #fff;
  box-shadow: inset 0 -2px 0 rgba(16, 47, 80, 0.04);
}

.header-actions strong {
  color: #102f50;
  font-size: 0.98rem;
}

.nav-inner a,
.all-category {
  min-height: 50px;
  padding: 0 16px;
  color: #111827;
  font-size: 0.95rem;
  font-weight: 850;
}

.nav-inner a:hover,
.nav-inner a:focus-visible {
  color: var(--sky-dark);
}

.nav-inner .service-link,
.nav-inner .quote-link {
  color: #fff;
}

.home-showcase {
  padding: 18px 0 10px;
  background: #fff;
}

.showcase-track {
  grid-template-columns: minmax(210px, 0.46fr) minmax(560px, 1.82fr) minmax(210px, 0.46fr);
  width: min(1320px, calc(100% - 40px));
  gap: 16px;
  align-items: stretch;
}

.main-banner,
.side-banner {
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(24, 36, 51, 0.08);
}

.main-banner {
  min-height: 386px;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  border: 1px solid #c8d7e2;
  background:
    linear-gradient(122deg, rgba(15, 42, 69, 0.98) 0%, rgba(23, 84, 112, 0.96) 52%, rgba(48, 127, 118, 0.92) 100%),
    #102f50;
  color: #fff;
}

.banner-copy {
  align-self: center;
  grid-column: 1;
  padding: 48px 24px 48px 54px;
}

.banner-copy p {
  margin-bottom: 12px;
  color: #9fdef2;
  font-size: 0.78rem;
  font-weight: 900;
}

.main-banner h1 {
  color: #fff;
  max-width: 600px;
  font-size: clamp(2.38rem, 3.65vw, 3.34rem);
  font-weight: 900;
  line-height: 1.09;
}

.main-banner strong {
  color: #fff5c8;
  max-width: 560px;
  font-size: 1.34rem;
  line-height: 1.36;
}

.main-banner .banner-copy span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.97rem;
  line-height: 1.7;
}

.hero-pill {
  width: fit-content;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  color: #0e304e;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.main-banner img {
  grid-column: 2;
  width: min(82%, 360px);
  max-width: 360px;
  align-self: center;
  justify-self: center;
  margin: 0 26px 0 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.2));
  box-shadow: none;
}

.side-banner {
  min-height: 386px;
  display: grid;
  align-content: end;
  padding: 24px 22px;
  border: 1px solid #d7e0e8;
  background: #f8fbfd;
}

.side-banner.left {
  background: linear-gradient(145deg, #ffe4ef 0%, #fff6fa 100%);
}

.side-banner.right {
  background: linear-gradient(145deg, #e4f3cf 0%, #f7fbef 100%);
}

.side-banner h2 {
  max-width: 190px;
  color: #172f48;
  font-size: 1.24rem;
  line-height: 1.28;
}

.side-banner p {
  max-width: 210px;
  color: #4f5f6e;
  font-size: 0.86rem;
  line-height: 1.58;
}

.side-banner img {
  top: 28px;
  right: 50%;
  bottom: auto;
  width: min(72%, 168px);
  max-height: 166px;
  transform: translateX(50%);
  object-fit: contain;
  opacity: 0.86;
  filter: drop-shadow(0 16px 18px rgba(31, 48, 70, 0.12));
  pointer-events: none;
}

.showcase-dots {
  margin-top: 14px;
}

.quick-categories {
  gap: 14px;
  padding: 28px 0 18px;
}

.quick-categories a {
  min-height: 156px;
  padding: 22px 24px;
  border: 1px solid rgba(32, 48, 64, 0.08);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(24, 36, 51, 0.06);
}

.quick-categories strong {
  font-size: 1.38rem;
  line-height: 1.24;
}

.quick-categories p {
  font-size: 0.91rem;
}

.quick-categories span {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.section-title {
  margin-bottom: 18px;
  border-bottom-color: #cbd5df;
}

.section-title h2 {
  color: #172f48;
  font-size: 1.36rem;
  font-weight: 900;
}

.section-title h2 span {
  color: #145f85;
}

.product-grid {
  gap: 14px;
}

.product-card {
  border: 1px solid #d8e0e8;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(24, 36, 51, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: #8bb4cc;
  box-shadow: 0 14px 26px rgba(24, 36, 51, 0.1);
  transform: translateY(-2px);
}

.product-media {
  display: grid;
  height: 176px;
  place-items: center;
  background: linear-gradient(180deg, #f9fbfc 0%, #edf3f6 100%);
}

.product-media img {
  width: 100%;
  height: 176px;
  padding: 18px;
  aspect-ratio: auto;
  object-fit: contain;
}

.badge {
  border-radius: 999px;
  font-size: 0.7rem;
}

.product-body {
  padding: 16px 16px 14px;
}

.product-name {
  min-height: 50px;
  color: #132f4a;
  font-size: 0.98rem;
  line-height: 1.42;
}

.product-info {
  min-height: 68px;
  color: #5e6b79;
  font-size: 0.84rem;
  line-height: 1.62;
}

.product-price span {
  font-size: 0.73rem;
}

.product-price strong {
  color: #155a7a;
  font-size: 1.08rem;
}

.product-spec {
  font-size: 0.79rem;
  line-height: 1.5;
}

.product-actions {
  padding: 0 16px 16px;
}

.product-actions button,
.product-actions a {
  min-height: 38px;
  border-radius: 4px;
  font-size: 0.82rem;
}

.deal-band,
.industry-section,
.care-section,
.quote-section {
  margin-top: 14px;
}

.deal-band,
.industry-grid article,
.care-steps li,
.recommendation,
.quote-form,
.footer-shell {
  border-radius: 6px;
}

.item-view,
.item-related,
.item-info-panel {
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(24, 36, 51, 0.05);
}

.item-main-image {
  background: linear-gradient(180deg, #fbfcfd 0%, #edf3f6 100%);
}

.item-main-image img,
.item-thumbs img,
.related-card img {
  object-fit: contain;
  padding: 12px;
}

.item-buy-box h1 {
  color: #132f4a;
  font-size: 1.72rem;
  line-height: 1.28;
}

.item-summary {
  color: #4c5f70;
  font-size: 0.98rem;
}

.medical-hero {
  border-radius: 6px 6px 0 0;
  box-shadow: 0 10px 24px rgba(48, 72, 56, 0.08);
}

.medical-visual-grid article {
  border-radius: 6px;
  background: #f7fbf4;
}

.medical-visual-grid img {
  padding: 22px;
  object-fit: contain;
}

.medical-product-list article,
.medical-strategy,
.medical-cta {
  border-radius: 6px;
}

.medical-product-list img {
  object-fit: contain;
  padding: 12px;
}

@media (max-width: 1100px) {
  .showcase-track {
    grid-template-columns: minmax(0, 1fr);
    width: min(720px, calc(100% - 32px));
  }

  .side-banner {
    min-height: 230px;
    align-content: center;
    padding-right: 210px;
  }

  .side-banner img {
    top: 50%;
    right: 34px;
    width: min(30%, 160px);
    transform: translateY(-50%);
  }

  .main-banner img {
    width: min(78%, 330px);
    margin-right: 20px;
  }

  .product-media,
  .product-media img {
    height: 164px;
  }
}

@media (max-width: 860px) {
  .title-row {
    gap: 14px;
  }

  .main-banner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .main-banner img {
    grid-column: 1;
    grid-row: 2;
    width: min(58%, 260px);
    margin: 0 auto 34px;
  }

  .banner-copy {
    grid-column: 1;
    padding: 38px 34px 24px;
    text-align: left;
  }

  .product-media,
  .product-media img {
    height: 160px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .page-width {
    width: min(100% - 24px, 1200px);
  }

  .title-row {
    grid-template-columns: 1fr auto;
    row-gap: 12px;
  }

  .search-box {
    width: 100%;
    max-width: none;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 64px;
  }

  .search-box input {
    min-width: 0;
  }

  .main-banner h1 {
    font-size: 2rem;
  }

  .main-banner strong {
    font-size: 1.12rem;
  }

  .banner-copy {
    padding: 30px 24px 18px;
  }

  .side-banner {
    min-height: 0;
    padding: 22px;
  }

  .side-banner img {
    position: static;
    transform: none;
    width: 150px;
    max-height: 140px;
    margin-top: 16px;
    justify-self: end;
  }

  .quick-categories a {
    min-height: 140px;
  }

  .product-media,
  .product-media img {
    height: 150px;
  }
}

/* Professional B2B polish layer */
body {
  background: #f2f4f7;
  color: #162334;
}

.shop-header {
  box-shadow: 0 6px 18px rgba(18, 31, 45, 0.04);
}

.home-showcase {
  padding: 16px 0 0;
  background: #ffffff;
}

.showcase-track {
  grid-template-columns: minmax(220px, 0.42fr) minmax(690px, 1.92fr) minmax(220px, 0.42fr);
  width: min(1360px, calc(100% - 36px));
  gap: 18px;
}

.main-banner,
.side-banner {
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(27, 42, 59, 0.08);
}

.main-banner {
  min-height: 392px;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  border: 1px solid #d7e1ea;
  background:
    linear-gradient(105deg, #f5f8fb 0%, #ffffff 50%, #e6eef4 100%),
    #f7fafc;
  color: #162334;
}

.main-banner::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(16, 47, 80, 0.04) 100%),
    radial-gradient(circle at 88% 18%, rgba(47, 111, 159, 0.14), transparent 32%);
}

.banner-copy {
  padding: 52px 18px 52px 56px;
}

.banner-copy p {
  color: #1d789b;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-banner h1 {
  max-width: 560px;
  color: #17243a;
  font-size: clamp(2.26rem, 3.5vw, 3.18rem);
  line-height: 1.08;
}

.main-banner strong {
  max-width: 520px;
  color: #164f68;
  font-size: 1.28rem;
  line-height: 1.42;
}

.main-banner .banner-copy span {
  max-width: 520px;
  color: #4a5a6c;
  font-size: 0.96rem;
  font-weight: 750;
}

.hero-pill {
  min-height: 46px;
  background: #102f50;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(16, 47, 80, 0.18);
}

.main-banner img {
  width: min(92%, 550px);
  max-width: 550px;
  margin: 0 34px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 24px 26px rgba(20, 34, 50, 0.18));
}

.side-banner {
  min-height: 392px;
  padding: 24px;
  border-color: #dbe4ec;
  background: #f8fafc;
}

.side-banner.left {
  background: linear-gradient(180deg, #f8f1f3 0%, #fffafb 100%);
}

.side-banner.right {
  background: linear-gradient(180deg, #f1f7ea 0%, #fbfdf7 100%);
}

.side-banner div {
  max-width: 210px;
}

.side-banner span {
  color: #5a6675;
  font-size: 0.72rem;
}

.side-banner h2 {
  max-width: 200px;
  color: #14253b;
  font-size: 1.22rem;
}

.side-banner p {
  max-width: 205px;
  color: #596878;
}

.side-banner a {
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(16, 47, 80, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.side-banner img {
  top: 30px;
  width: min(78%, 184px);
  max-height: 180px;
  opacity: 1;
}

.quick-categories {
  width: min(1200px, calc(100% - 36px));
  gap: 14px;
  padding: 28px 0 22px;
}

.quick-categories a {
  min-height: 148px;
  padding: 22px 24px;
  border: 1px solid #d8e0e8;
  border-top-width: 4px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(24, 36, 51, 0.06);
}

.quick-categories a::after {
  width: 138px;
  height: 138px;
  opacity: 0.16;
}

.quick-categories a.religious {
  border-top-color: #9b5260;
  background: linear-gradient(135deg, #fff 0%, #fbf0f3 100%);
}

.quick-categories a.office {
  border-top-color: #2f6f9f;
  background: linear-gradient(135deg, #fff 0%, #edf7fb 100%);
}

.quick-categories a.education {
  border-top-color: #c58a24;
  background: linear-gradient(135deg, #fff 0%, #fff7dd 100%);
}

.quick-categories a.medical {
  border-top-color: #4f8665;
  background: linear-gradient(135deg, #fff 0%, #f0f8ea 100%);
}

.quick-categories strong {
  color: #14253b;
  font-size: 1.22rem;
  line-height: 1.28;
}

.quick-categories p {
  max-width: 210px;
  color: #4f5f6f;
  font-size: 0.86rem;
  line-height: 1.58;
}

.quick-categories span {
  right: 20px;
  top: 20px;
  min-height: 28px;
  background: #102f50;
  color: #ffffff;
}

.section-title {
  padding-top: 4px;
}

.product-card {
  border-color: #d6e0e8;
  box-shadow: 0 10px 22px rgba(24, 36, 51, 0.055);
}

.product-media {
  height: 190px;
  background: linear-gradient(180deg, #fbfcfd 0%, #eef3f6 100%);
}

.product-media img {
  height: 190px;
  padding: 10px;
}

.product-name {
  color: #14253b;
  font-size: 0.96rem;
  font-weight: 900;
}

.product-info {
  color: #566575;
}

@media (max-width: 1100px) {
  .showcase-track {
    grid-template-columns: minmax(0, 1fr);
    width: min(760px, calc(100% - 32px));
  }

  .main-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-banner img {
    grid-column: 1;
    grid-row: 2;
    width: min(76%, 480px);
    margin: 0 auto 34px;
  }

  .side-banner {
    min-height: 220px;
  }
}

@media (max-width: 860px) {
  .banner-copy {
    padding: 38px 34px 18px;
  }

  .main-banner h1 {
    font-size: 2.26rem;
  }
}

@media (max-width: 560px) {
  .main-banner {
    min-height: 0;
  }

  .banner-copy {
    padding: 30px 24px 12px;
  }

  .main-banner h1 {
    font-size: 1.98rem;
  }

  .main-banner strong {
    font-size: 1.08rem;
  }

  .main-banner img {
    width: min(88%, 330px);
    margin-bottom: 28px;
  }

  .quick-categories a {
    min-height: 132px;
  }

  .product-media,
  .product-media img {
    height: 166px;
  }
}

/* People-led installation hero */
.main-banner {
  min-height: 430px;
  grid-template-columns: minmax(380px, 0.95fr) minmax(400px, 1.05fr);
}

.main-banner h1 {
  max-width: 520px;
  font-size: clamp(2.25rem, 3vw, 2.86rem);
  line-height: 1.08;
}

.main-banner strong {
  color: #0c6c74;
  word-break: keep-all;
}

.main-banner .banner-copy span {
  max-width: 560px;
  word-break: keep-all;
}

.banner-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 430px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.banner-points li {
  min-height: 68px;
  padding: 11px 12px;
  border: 1px solid #d6e0e8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 16px rgba(24, 36, 51, 0.055);
}

.banner-points b,
.banner-points em {
  display: block;
  letter-spacing: 0;
  word-break: keep-all;
}

.banner-points b {
  color: #102f50;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.banner-points em {
  margin-top: 5px;
  color: #5b6878;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.main-banner img[src*="hero-ai-installation"] {
  width: min(102%, 610px);
  max-width: 610px;
  margin-right: 20px;
  filter: drop-shadow(0 24px 30px rgba(20, 34, 50, 0.16));
}

@media (max-width: 1100px) {
  .main-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-banner img[src*="hero-ai-installation"] {
    width: min(92%, 560px);
  }
}

@media (max-width: 680px) {
  .banner-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .banner-points li {
    min-height: 0;
    padding: 11px 13px;
  }
}

@media (max-width: 560px) {
  .main-banner h1 {
    font-size: 1.82rem;
  }

  .banner-points {
    margin-top: 18px;
  }

  .main-banner img[src*="hero-ai-installation"] {
    width: min(94%, 350px);
  }
}

/* Full-photo hero using installation scene */
.photo-hero {
  display: block;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 18px 36px rgba(20, 34, 50, 0.1);
}

.photo-hero::after {
  display: none;
}

.photo-hero .banner-copy.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.photo-hero-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f7f9;
}

.photo-hero-link img,
.photo-hero img[src*="hero-ai-office-installation-photo"] {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  object-fit: contain;
  filter: none;
}

@media (max-width: 1100px) {
  .photo-hero {
    min-height: 0;
  }

  .photo-hero img[src*="hero-ai-office-installation-photo"] {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .photo-hero-link {
    border-radius: 8px;
  }

  .photo-hero img[src*="hero-ai-office-installation-photo"] {
    min-height: 0;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* 2026-06 academy remodel: education, consulting, portfolio */
.focus-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  background: #071829;
}

.focus-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.99) 0%, rgba(8, 20, 35, 0.94) 44%, rgba(14, 33, 52, 0.42) 70%, rgba(14, 33, 52, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 24, 38, 0.38), rgba(12, 24, 38, 0.08));
  content: "";
}

.focus-hero::after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff7a00 0%, #2f6f9f 45%, #4f8665 100%);
  content: "";
}

.focus-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 66% center;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 34%, rgba(69, 174, 226, 0.34), transparent 34%),
    radial-gradient(circle at 74% 72%, rgba(255, 122, 0, 0.24), transparent 28%),
    linear-gradient(135deg, #061626 0%, #071829 52%, #0f2a45 100%);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.16) 0%, rgba(6, 16, 29, 0) 54%, rgba(6, 16, 29, 0.1) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 96px);
  content: "";
  pointer-events: none;
}

.hero-visual-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-result-flow {
  position: absolute;
  right: max(40px, calc((100vw - 1180px) / 2));
  bottom: 74px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(116px, 1fr));
  gap: 10px;
  width: min(384px, 29vw);
  color: #fff;
  pointer-events: none;
}

.hero-result-flow span,
.hero-result-flow strong {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 16, 29, 0.38);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero-result-flow strong {
  grid-column: 1 / -1;
  min-height: 62px;
  border-color: rgba(255, 122, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.82), rgba(47, 111, 159, 0.7));
  font-size: 1rem;
}

.focus-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  min-height: 600px;
  padding: 68px 0 56px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffb35c;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.focus-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(2.56rem, 4.65vw, 4.42rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-focus-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(820px, 100%);
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-focus-list li {
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-focus-list strong,
.hero-focus-list span {
  display: block;
}

.hero-focus-list strong {
  color: #ffb35c;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-focus-list span {
  margin-top: 8px;
  color: #fff;
  font-weight: 900;
  line-height: 1.35;
}

.focus-track-strip {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.flagship-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 56px;
}

.flagship-copy,
.flagship-flow article,
.academy-months article {
  border: 1px solid #d6e0e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(24, 36, 51, 0.055);
}

.flagship-copy {
  padding: 34px;
  border-top: 5px solid var(--brand-orange);
}

.flagship-copy h2 {
  margin-bottom: 14px;
  color: #132f4a;
  font-family: var(--body-font);
  font-size: 2.1rem;
  font-weight: 900;
}

.flagship-copy strong {
  display: block;
  margin-bottom: 16px;
  color: #145f85;
  font-size: 1.1rem;
  line-height: 1.58;
}

.flagship-copy p:not(.eyebrow) {
  color: #526172;
  line-height: 1.72;
}

.flagship-copy .btn {
  margin-top: 10px;
}

.flagship-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.flagship-flow article,
.academy-months article {
  padding: 24px;
}

.flagship-flow span,
.academy-months span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef5f9;
  color: #145f85;
  font-size: 0.76rem;
  font-weight: 900;
}

.flagship-flow strong,
.academy-months strong {
  display: block;
  margin-bottom: 8px;
  color: #14253b;
  font-size: 1.08rem;
  font-weight: 900;
}

.flagship-flow p,
.academy-months p {
  margin-bottom: 0;
  color: #596878;
  font-size: 0.9rem;
  line-height: 1.65;
}

.deal-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.72;
}

.academy-months {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.academy-months article:nth-child(1),
.academy-months article:nth-child(4) {
  border-top: 4px solid #2f6f9f;
}

.academy-months article:nth-child(2),
.academy-months article:nth-child(5) {
  border-top: 4px solid #bd8d2f;
}

.academy-months article:nth-child(3),
.academy-months article:nth-child(6) {
  border-top: 4px solid #4f8665;
}

.server-section {
  background:
    linear-gradient(135deg, rgba(6, 22, 38, 0.98) 0%, rgba(16, 47, 80, 0.96) 48%, rgba(34, 92, 102, 0.92) 100%),
    #061626;
}

.quote-copy h2 {
  font-family: var(--body-font);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .focus-hero,
  .focus-hero-content {
    min-height: 520px;
  }

  .hero-result-flow {
    right: 32px;
    width: min(360px, 34vw);
  }

  .hero-focus-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 540px;
  }

  .flagship-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .member-links {
    display: none;
  }

  .member-inner {
    justify-content: flex-start;
    overflow: visible;
  }

  .focus-hero {
    min-height: 600px;
  }

  .focus-hero::before {
    background:
      linear-gradient(180deg, rgba(6, 16, 29, 0.96) 0%, rgba(6, 16, 29, 0.9) 58%, rgba(6, 16, 29, 0.62) 100%);
  }

  .focus-hero-image {
    object-position: 72% center;
  }

  .hero-result-flow {
    display: none;
  }

  .focus-hero-content {
    min-height: 600px;
    padding: 44px 0;
  }

  .focus-hero h1 {
    max-width: 360px;
    font-size: 2.34rem;
  }

  .hero-lead {
    max-width: 360px;
    font-size: 0.96rem;
  }

  .hero-focus-list {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-top: 26px;
  }

  .hero-focus-list li {
    min-height: 0;
  }

  .focus-track-strip {
    margin-top: 18px;
  }

  .flagship-section {
    padding-top: 32px;
  }

  .flagship-copy {
    padding: 24px;
  }

  .flagship-copy h2 {
    font-size: 1.6rem;
  }

  .flagship-flow,
  .academy-months {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .member-bar {
    display: none;
  }

  .title-row {
    padding: 12px 0 10px;
    gap: 12px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .search-box {
    min-height: 42px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}

/* 2026-07 atelier home: cinematic academy landing */
.atelier-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 40;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.atelier-header .title-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 50px;
  gap: 18px;
  align-items: center;
  pointer-events: none;
}

.atelier-header .brand,
.atelier-header .header-consult,
.atelier-header .menu-toggle,
.atelier-header .main-nav {
  pointer-events: auto;
}

.atelier-header .brand,
.atelier-header .header-consult,
.atelier-header .main-nav {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 10, 9, 0.58);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.atelier-header .brand {
  min-height: 50px;
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
}

.atelier-header .brand-mark {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ff9f45;
  font-size: 1rem;
}

.atelier-header .brand strong,
.atelier-header .brand small {
  color: #fff;
}

.atelier-header .brand small {
  color: rgba(255, 255, 255, 0.64);
}

.header-consult {
  display: inline-flex;
  justify-self: end;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.header-consult::after {
  margin-left: 8px;
  color: #ffb35c;
  content: "↗";
}

.atelier-header .main-nav {
  position: absolute;
  top: 2px;
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 360px);
  border-radius: 999px;
  transform: translateX(-50%);
}

.atelier-header .nav-inner {
  display: inline-flex;
  width: max-content;
  min-height: 46px;
  margin: 0;
  padding: 0 8px;
}

.atelier-header .nav-inner a {
  min-height: 42px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.atelier-header .nav-inner a:hover,
.atelier-header .nav-inner a:focus-visible {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.atelier-header .menu-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 10, 9, 0.58);
  backdrop-filter: blur(18px);
}

.atelier-header .menu-toggle span {
  background: #fff;
}

.focus-hero {
  min-height: 100svh;
  background: #030706;
}

.focus-hero::before {
  background:
    radial-gradient(circle at 68% 48%, rgba(255, 179, 92, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(3, 7, 6, 0.92) 0%, rgba(3, 7, 6, 0.72) 38%, rgba(3, 7, 6, 0.28) 70%, rgba(3, 7, 6, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 7, 6, 0.62), rgba(3, 7, 6, 0.08));
}

.focus-hero::after {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 179, 92, 0.72) 50%, transparent 100%);
}

.hero-visual {
  background: #030403;
}

.hero-visual::after {
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-image: url("assets/hero-ai-academy-diorama.webp");
  background-repeat: no-repeat;
  background-position: 64% center;
  background-size: cover;
  content: "";
  transform: scale(1.02);
  transform-origin: 64% 50%;
  animation: heroImageDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-visual::before {
  z-index: 2;
  background:
    radial-gradient(circle at 66% 48%, rgba(255, 180, 91, 0.16), transparent 30%),
    radial-gradient(circle at 18% 62%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(2, 4, 4, 0.96) 0%, rgba(2, 4, 4, 0.82) 34%, rgba(2, 4, 4, 0.38) 62%, rgba(2, 4, 4, 0.16) 100%),
    linear-gradient(0deg, rgba(2, 4, 4, 0.72), rgba(2, 4, 4, 0.08));
}

.hero-visual-canvas {
  z-index: 1;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.hero-result-flow {
  display: none;
}

.focus-hero-content {
  min-height: 100svh;
  justify-items: start;
  align-content: center;
  padding: 140px 0 72px;
  text-align: left;
}

.focus-hero .eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 210, 154, 0.94);
  backdrop-filter: blur(14px);
}

.focus-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.72rem, 5.05vw, 5.4rem);
  line-height: 1.02;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.9;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.hero-focus-list {
  width: min(760px, 100%);
  margin-top: 56px;
}

.hero-focus-list li {
  min-height: 72px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.section-kicker {
  margin: 0 0 14px;
  color: #9fc09f;
  font-family: var(--title-font);
  font-size: 0.86rem;
  font-weight: 800;
}

.atelier-statement,
.partner-section {
  padding: 110px 0;
}

.atelier-statement {
  color: #f8fbf7;
}

.atelier-statement h2,
.portfolio-heading h2,
.partner-copy h2,
.contact-shell h2 {
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 900;
  line-height: 1.16;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.statement-grid article,
.portfolio-feature {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.statement-grid article {
  min-height: 230px;
  padding: 26px;
}

.statement-grid span,
.portfolio-feature small {
  color: #ffb35c;
  font-size: 0.78rem;
  font-weight: 900;
}

.statement-grid strong,
.portfolio-feature h3 {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.34;
}

.statement-grid p,
.portfolio-feature p,
.portfolio-heading span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
}

.atelier-portfolio {
  padding: 108px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #050908;
}

.portfolio-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.portfolio-heading {
  position: sticky;
  top: 110px;
}

.portfolio-heading span {
  display: block;
  margin-top: 22px;
  font-size: 1.06rem;
}

.portfolio-feature-grid {
  display: grid;
  gap: 16px;
}

.portfolio-feature {
  min-height: 180px;
  padding: 30px;
}

.portfolio-feature.primary {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 179, 92, 0.14), rgba(91, 138, 96, 0.14)),
    rgba(255, 255, 255, 0.06);
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.atelier-contact {
  padding: 112px 0 126px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 179, 92, 0.12), transparent 34%),
    #030706;
  text-align: center;
}

.contact-shell {
  display: grid;
  justify-items: center;
}

.contact-shell h2 {
  max-width: 900px;
}

.contact-shell .btn {
  margin-top: 34px;
}

main {
  background: #030706;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .atelier-header .main-nav {
    top: 62px;
    right: 16px;
    left: 16px;
    display: none;
    width: auto;
    max-width: none;
    border-radius: 8px;
    transform: none;
  }

  .atelier-header .main-nav.is-open {
    display: block;
  }

  .atelier-header .nav-inner {
    display: grid;
    width: auto;
    gap: 2px;
    padding: 8px;
  }

  .atelier-header .nav-inner a {
    justify-content: center;
    white-space: nowrap;
  }

  .atelier-header .menu-toggle {
    display: block;
  }

  .statement-grid,
  .portfolio-shell,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .portfolio-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .atelier-header {
    top: 12px;
  }

  .atelier-header .title-row {
    grid-template-columns: 1fr auto;
  }

  .atelier-header .brand {
    width: fit-content;
  }

  .header-consult {
    display: none;
  }

  .focus-hero,
  .focus-hero-content {
    min-height: 100svh;
  }

  .focus-hero-content {
    padding: 112px 0 54px;
    text-align: left;
    justify-items: start;
  }

  .hero-visual::after {
    background-position: 66% center;
    transform: scale(1.06);
  }

  .hero-visual::before {
    background:
      radial-gradient(circle at 60% 56%, rgba(255, 180, 91, 0.12), transparent 28%),
      linear-gradient(90deg, rgba(2, 4, 4, 0.92) 0%, rgba(2, 4, 4, 0.76) 58%, rgba(2, 4, 4, 0.44) 100%),
      linear-gradient(0deg, rgba(2, 4, 4, 0.76), rgba(2, 4, 4, 0.16));
  }

  .focus-hero h1,
  .hero-lead {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-focus-list {
    width: 100%;
    margin-top: 34px;
  }

  .atelier-statement,
  .partner-section,
  .atelier-portfolio,
  .atelier-contact {
    padding: 72px 0;
  }

  .statement-grid article,
  .portfolio-feature {
    min-height: 0;
    padding: 24px;
  }
}

/* 2026-07 academy course remodel: education-sales homepage */
.academy-site {
  --academy-bg: #f3f6f8;
  --academy-ink: #111827;
  --academy-muted: #697484;
  --academy-navy: #07182c;
  --academy-blue: #002b5b;
  --academy-sky: #1f8ac0;
  --academy-orange: #ff8a1f;
  --academy-gold: #d7a94d;
  --academy-green: #2f8b68;
  --academy-line: #d8e0e8;
  --academy-card: #ffffff;
  overflow-x: hidden;
  background: var(--academy-bg);
  color: var(--academy-ink);
}

.academy-site * {
  min-width: 0;
}

.academy-site main {
  background: var(--academy-bg);
}

.academy-site .page-width {
  width: min(1220px, calc(100% - 36px));
}

.academy-site .btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
}

.academy-site .btn.primary {
  border-color: var(--academy-orange);
  background: linear-gradient(135deg, #ff9f32 0%, #ff7a00 100%);
  color: #111827;
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.24);
}

.academy-site .btn.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
}

.academy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(13, 33, 57, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(9, 22, 38, 0.08);
  backdrop-filter: blur(18px);
}

.academy-top {
  border-bottom: 1px solid var(--academy-line);
  background: #f8fafc;
  color: #5c6674;
  font-size: 0.82rem;
  font-weight: 800;
}

.academy-top-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.academy-top nav {
  display: flex;
  gap: 18px;
}

.academy-top a:hover,
.academy-top a:focus-visible {
  color: var(--academy-sky);
}

.academy-nav-shell {
  background: #fff;
}

.academy-nav-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  min-height: 82px;
}

.academy-brand {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
}

.academy-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--academy-blue);
  background: #fff;
  color: var(--academy-orange);
  font-family: var(--title-font);
  font-size: 1.38rem;
  font-weight: 800;
}

.academy-brand strong {
  display: block;
  color: var(--academy-blue);
  font-family: var(--title-font);
  font-size: 1.18rem;
  font-weight: 800;
}

.academy-brand small {
  display: block;
  margin-top: 3px;
  color: var(--academy-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.academy-main-nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  background: transparent;
}

.academy-main-nav a {
  display: inline-flex;
  min-height: 82px;
  align-items: center;
  padding: 0 15px;
  color: #162436;
  font-size: 0.94rem;
  font-weight: 900;
  white-space: nowrap;
}

.academy-main-nav a:hover,
.academy-main-nav a:focus-visible {
  color: var(--academy-sky);
}

.academy-main-nav .nav-cta {
  min-height: 48px;
  margin-left: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--academy-blue);
  color: #fff;
}

.academy-main-nav .nav-cta:hover,
.academy-main-nav .nav-cta:focus-visible {
  color: #fff;
  filter: brightness(1.08);
}

.academy-header .menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: #fff;
}

.academy-header .menu-toggle span {
  background: var(--academy-blue);
}

.academy-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: #030706;
}

.academy-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 7, 6, 0.96) 0%, rgba(3, 7, 6, 0.82) 40%, rgba(3, 7, 6, 0.42) 72%, rgba(3, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 7, 6, 0.76), rgba(3, 7, 6, 0.1));
  content: "";
}

.academy-site .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #030403;
}

.academy-site .hero-visual::after {
  position: absolute;
  inset: -2%;
  z-index: 0;
  background-image: url("assets/hero-ai-academy-diorama.webp");
  background-position: 64% center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  transform: scale(1.02);
  transform-origin: 64% 50%;
  animation: academyHeroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.academy-site .hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 154, 59, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(2, 4, 4, 0.92) 0%, rgba(2, 4, 4, 0.72) 42%, rgba(2, 4, 4, 0.24) 74%, rgba(2, 4, 4, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.academy-site .hero-visual-canvas {
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.academy-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 52px;
  align-items: center;
  min-height: 720px;
  padding: 72px 0;
}

.academy-hero-copy {
  max-width: 780px;
  color: #fff;
}

.hero-badge,
.section-kicker,
.consult-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 0 14px;
  color: #ffb35c;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.academy-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(2.9rem, 4.9vw, 5.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.academy-hero .hero-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  font-weight: 700;
  line-height: 1.86;
}

.academy-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(820px, 100%);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.hero-proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.quick-consult {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.quick-consult h2 {
  margin-bottom: 10px;
  color: var(--academy-blue);
  font-family: var(--body-font);
  font-size: 1.55rem;
  font-weight: 900;
}

.quick-consult p {
  margin-bottom: 20px;
  color: #5c6674;
  font-size: 0.9rem;
  line-height: 1.62;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: #25354a;
  font-size: 0.8rem;
  font-weight: 900;
}

.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  padding: 0 12px;
  outline: 0;
}

.lead-form select:focus {
  border-color: var(--academy-sky);
  box-shadow: 0 0 0 3px rgba(31, 138, 192, 0.14);
}

.lead-form button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: #fee500;
  color: #191600;
  font-weight: 900;
}

.course-nav-band {
  position: relative;
  z-index: 5;
  margin-top: -34px;
  padding-bottom: 44px;
}

.course-nav-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(15, 42, 69, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(10, 25, 42, 0.14);
}

.course-nav-list a {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid var(--academy-line);
  color: #172338;
  font-weight: 900;
  text-align: center;
}

.course-nav-list a:last-child {
  border-right: 0;
}

.course-nav-list a:hover,
.course-nav-list a:focus-visible {
  background: #edf7fb;
  color: var(--academy-sky);
}

.academy-intro,
.program-section,
.curriculum-section,
.portfolio-section,
.mentor-section,
.partner-section {
  padding: 72px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  margin: 0;
  color: #0d2035;
  font-family: var(--body-font);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.16;
}

.section-kicker {
  color: var(--academy-sky);
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--academy-line);
  border-radius: 999px;
  background: #fff;
  color: var(--academy-blue);
  font-weight: 900;
  white-space: nowrap;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.problem-grid article,
.course-card,
.portfolio-card,
.mentor-grid article {
  border: 1px solid var(--academy-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 37, 59, 0.07);
}

.problem-grid article {
  min-height: 230px;
  padding: 26px;
}

.problem-grid span,
.course-card span,
.portfolio-card small,
.mentor-grid span,
.curriculum-steps span {
  color: var(--academy-orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-grid strong {
  display: block;
  margin-top: 16px;
  color: #0d2035;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.35;
}

.problem-grid p,
.course-card p,
.portfolio-card p,
.mentor-grid p,
.curriculum-steps p,
.portfolio-note {
  color: var(--academy-muted);
  line-height: 1.72;
}

.program-section {
  background: #eaf0f5;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.course-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 26px;
}

.course-card::after {
  position: absolute;
  right: -80px;
  bottom: -92px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
}

.course-card h3 {
  position: relative;
  z-index: 1;
  min-height: 72px;
  margin: 16px 0 12px;
  color: #0d2035;
  font-size: 1.54rem;
  font-weight: 900;
  line-height: 1.22;
}

.course-card p,
.course-card ul {
  position: relative;
  z-index: 1;
}

.course-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.course-card li {
  display: flex;
  gap: 8px;
  color: #26364a;
  font-size: 0.9rem;
  font-weight: 800;
}

.course-card li::before {
  color: var(--academy-sky);
  content: "-";
}

.course-card.basic {
  background: linear-gradient(135deg, #fff4d4 0%, #ffe1aa 100%);
}

.course-card.automation {
  background: linear-gradient(135deg, #dff4ff 0%, #b9e7f9 100%);
}

.course-card.webapp {
  background: linear-gradient(135deg, #d9ecff 0%, #b9d6f7 100%);
}

.course-card.contents {
  background: linear-gradient(135deg, #ffe0ec 0%, #f8c4da 100%);
}

.course-card.corporate {
  background: linear-gradient(135deg, #dff2cf 0%, #bfe2a1 100%);
}

.curriculum-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-steps li {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--academy-line);
  border-top: 5px solid var(--academy-blue);
  border-radius: 8px;
  background: #fff;
}

.curriculum-steps li:nth-child(2) {
  border-top-color: var(--academy-sky);
}

.curriculum-steps li:nth-child(3) {
  border-top-color: var(--academy-orange);
}

.curriculum-steps li:nth-child(4) {
  border-top-color: var(--academy-green);
}

.curriculum-steps strong {
  display: block;
  margin: 20px 0 10px;
  color: #0d2035;
  font-size: 1.28rem;
  font-weight: 900;
}

.portfolio-section {
  background: #07111f;
  color: #fff;
}

.portfolio-section .section-heading h2,
.portfolio-section .portfolio-note {
  color: #fff;
}

.portfolio-section .portfolio-note {
  opacity: 0.72;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-card {
  min-height: 260px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.portfolio-card.featured {
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.22), rgba(31, 138, 192, 0.16)),
    rgba(255, 255, 255, 0.06);
}

.portfolio-card h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.32;
}

.portfolio-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mentor-grid article {
  min-height: 260px;
  padding: 30px;
}

.mentor-grid h3 {
  margin: 18px 0 12px;
  color: #0d2035;
  font-size: 1.7rem;
  font-weight: 900;
}

.academy-site .partner-section {
  display: block;
  padding-top: 44px;
}

.academy-site .partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.academy-site .partner-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--academy-line);
  border-radius: 999px;
  background: #fff;
  color: #172338;
  font-weight: 900;
}

.final-cta {
  padding: 84px 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 138, 31, 0.18), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0d2d4e 100%);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
}

.academy-site .site-footer {
  background: #111820;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  gap: 8px;
}

.floating-cta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(6, 16, 29, 0.18);
  font-size: 0.88rem;
  font-weight: 900;
}

.floating-cta a:first-child {
  background: var(--academy-blue);
  color: #fff;
}

.floating-cta a:last-child {
  background: #fee500;
  color: #191600;
}

@keyframes academyHeroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .academy-site .hero-visual::after {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .academy-nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .academy-header .menu-toggle {
    display: block;
  }

  .academy-main-nav {
    position: absolute;
    top: 107px;
    right: 18px;
    left: 18px;
    display: none;
    height: auto;
    min-height: 0;
    padding: 10px;
    border: 1px solid var(--academy-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(12, 28, 46, 0.16);
  }

  .academy-main-nav.is-open {
    display: grid;
  }

  .academy-main-nav a,
  .academy-main-nav .nav-cta {
    min-height: 44px;
    margin: 0;
    justify-content: center;
  }

  .academy-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 92px 0 84px;
  }

  .quick-consult {
    max-width: 520px;
  }

  .course-nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-grid,
  .curriculum-steps,
  .mentor-grid {
    grid-template-columns: 1fr;
  }

  .curriculum-steps li,
  .problem-grid article,
  .mentor-grid article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .academy-top {
    display: none;
  }

  .academy-nav-row {
    min-height: 64px;
  }

  .academy-main-nav {
    top: 76px;
  }

  .academy-brand {
    min-width: 0;
  }

  .academy-brand-mark {
    width: 42px;
    height: 42px;
  }

  .academy-brand small {
    display: none;
  }

  .academy-header .menu-toggle {
    display: block;
    width: 44px;
    height: 44px;
    padding: 9px;
  }

  .academy-header .menu-toggle span {
    width: 22px;
  }

  .academy-hero {
    min-height: 0;
  }

  .academy-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 7, 6, 0.94) 0%, rgba(3, 7, 6, 0.78) 62%, rgba(3, 7, 6, 0.4) 100%),
      linear-gradient(0deg, rgba(3, 7, 6, 0.78), rgba(3, 7, 6, 0.1));
  }

  .academy-site .hero-visual::after {
    background-position: 66% center;
    transform: scale(1.08);
  }

  .academy-hero-grid {
    gap: 30px;
    padding: 74px 0 56px;
  }

  .academy-hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .academy-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.4vw, 2.86rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .academy-hero .hero-lead {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.72;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .academy-hero .hero-actions,
  .quick-consult,
  .lead-form,
  .lead-form select,
  .course-nav-list {
    width: 100%;
    max-width: 100%;
  }

  .academy-hero .hero-actions,
  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .academy-hero .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .quick-consult {
    padding: 22px;
  }

  .course-nav-band {
    margin-top: 0;
    padding: 16px 0 28px;
  }

  .course-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-nav-list a {
    min-height: 58px;
  }

  .academy-intro,
  .program-section,
  .curriculum-section,
  .portfolio-section,
  .mentor-section,
  .partner-section {
    padding: 48px 0;
  }

  .section-heading.split {
    display: block;
  }

  .text-link {
    margin-top: 18px;
  }

  .course-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    min-height: 0;
  }

  .floating-cta {
    display: none;
  }
}

/* 2026-07 academy portal: Korea AI Academy inspired structure */
.academy-portal {
  --portal-bg: #050505;
  --portal-panel: #111111;
  --portal-panel-2: #1b1b1b;
  --portal-card: #ffffff;
  --portal-line: rgba(255, 255, 255, 0.12);
  --portal-soft-line: rgba(255, 255, 255, 0.07);
  --portal-text: #ffffff;
  --portal-muted: #a5adb8;
  --portal-orange: #ff663d;
  --portal-orange-2: #ff8a1f;
  --portal-blue: #002b5b;
  --portal-navy: #07182c;
  --portal-lime: #c4f457;
  --portal-max: 1560px;
  overflow-x: hidden;
  background: var(--portal-bg);
  color: var(--portal-text);
  font-family: var(--body-font);
}

.academy-portal * {
  min-width: 0;
}

.academy-portal a {
  color: inherit;
}

.academy-portal img {
  max-width: 100%;
}

.portal-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 292px;
  padding: 30px 28px;
  border-right: 1px solid var(--portal-line);
  background: #000;
  color: #fff;
}

.portal-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.portal-logo-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  color: var(--portal-orange-2);
  font-family: var(--title-font);
  font-size: 1.42rem;
  font-weight: 800;
}

.portal-logo strong {
  display: block;
  color: #fff;
  font-family: var(--title-font);
  font-size: 1.22rem;
  line-height: 1;
}

.portal-logo small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portal-side-nav {
  display: grid;
  align-content: start;
  gap: 3px;
  margin-top: 44px;
}

.portal-side-nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 900;
}

.portal-side-nav a:hover,
.portal-side-nav a:focus-visible {
  color: #fff;
}

.portal-side-nav span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 5px;
}

.portal-side-nav span::after {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.portal-center {
  display: grid;
  gap: 10px;
  align-content: start;
}

.portal-center span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 900;
}

.portal-center strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.portal-center p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.portal-center a {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 7px;
  background: var(--portal-orange);
  color: #fff;
  font-weight: 900;
}

.portal-center a.kakao {
  background: #fee500;
  color: #191600;
}

.portal-mobile-header,
.portal-mobile-nav {
  display: none;
}

.portal-main,
.portal-footer {
  margin-left: 292px;
}

.portal-main {
  background: #000;
}

.portal-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, #000 100%),
    radial-gradient(circle at 75% 22%, rgba(112, 68, 255, 0.42), transparent 34%),
    linear-gradient(135deg, #120b34 0%, #271366 50%, #050505 100%);
}

.portal-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 38%);
  content: "";
}

.portal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.portal-hero-bg::before {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-image:
    linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(133, 209, 255, 0.26) 52%, rgba(255, 154, 246, 0.34) 76%, rgba(255, 255, 255, 0) 100%),
    url("assets/hero-ai-academy-diorama.webp");
  background-position: center, 68% 42%;
  background-repeat: no-repeat;
  background-size: 120% 120%, cover;
  filter: saturate(1.15) contrast(1.04);
  opacity: 0.82;
  transform: rotate(-3deg) scale(1.08);
  content: "";
}

.portal-hero-bg::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 68% 6%, rgba(184, 144, 255, 0.54), transparent 38%),
    repeating-linear-gradient(116deg, transparent 0 44px, rgba(255, 255, 255, 0.08) 45px 47px, transparent 48px 92px);
  mix-blend-mode: screen;
  opacity: 0.48;
  content: "";
}

.academy-portal .hero-visual-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.portal-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--portal-max), calc(100% - 80px));
  margin: 0 auto;
  padding: 94px 0 120px;
}

.portal-kicker {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.portal-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.portal-hero p:not(.portal-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.72;
}

.portal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.portal-btn,
.portal-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 7px;
  font-weight: 900;
}

.portal-btn.primary {
  background: var(--portal-orange);
  color: #fff;
  box-shadow: 0 18px 30px rgba(255, 102, 61, 0.24);
}

.portal-btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.portal-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.portal-hero-stats li {
  width: 132px;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.portal-hero-stats strong,
.portal-hero-stats span {
  display: block;
}

.portal-hero-stats strong {
  color: var(--portal-orange-2);
  font-size: 1.12rem;
  font-weight: 900;
}

.portal-hero-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-course-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--portal-max), calc(100% - 80px));
  margin: -78px auto 0;
}

.portal-course-strip a {
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 30%),
    #121212;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

.portal-course-strip a:hover,
.portal-course-strip a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 102, 61, 0.72);
}

.portal-course-strip small {
  color: var(--portal-orange);
  font-size: 0.74rem;
  font-weight: 900;
}

.portal-course-strip strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.15;
}

.portal-course-strip span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.portal-section {
  width: min(var(--portal-max), calc(100% - 80px));
  margin: 0 auto;
  padding: 92px 0;
}

.portal-section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.portal-section-head.split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.portal-section-head p,
.inquiry-copy p {
  margin: 0 0 10px;
  color: var(--portal-orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.portal-section-head h2,
.inquiry-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(1.9rem, 2.9vw, 3.25rem);
  font-weight: 900;
  line-height: 1.18;
}

.portal-section-head span,
.inquiry-copy span {
  display: block;
  max-width: 780px;
  margin-top: 14px;
  color: var(--portal-muted);
  line-height: 1.72;
}

.portal-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-about-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--portal-soft-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}

.portal-about-grid b {
  color: var(--portal-orange);
}

.portal-about-grid strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.portal-about-grid p {
  margin: 14px 0 0;
  color: var(--portal-muted);
  line-height: 1.7;
}

.portal-text-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1c1c1c;
  color: #fff;
  white-space: nowrap;
}

.portal-class-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portal-class-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--portal-soft-line);
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.class-thumb {
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.class-thumb img {
  width: min(74%, 240px);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.2));
}

.basic-thumb {
  background: linear-gradient(135deg, #fff1c5 0%, #f8c85f 100%);
}

.senior-thumb {
  background: linear-gradient(135deg, #e2f6ff 0%, #9eddf4 100%);
}

.teacher-thumb {
  background: linear-gradient(135deg, #dff2cf 0%, #9ed276 100%);
}

.creator-thumb {
  background: linear-gradient(135deg, #ffe0ef 0%, #ef9fc7 100%);
}

.class-copy {
  display: grid;
  align-content: center;
  padding: 30px;
}

.class-copy span {
  color: var(--portal-orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.class-copy h3 {
  margin: 12px 0;
  color: #07182c;
  font-size: 2rem;
  font-weight: 900;
}

.class-copy p {
  margin: 0;
  color: #4b5563;
  line-height: 1.64;
}

.class-copy ul {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.class-copy li {
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 800;
}

.class-copy li::before {
  margin-right: 8px;
  color: var(--portal-orange);
  content: "-";
}

.class-copy > strong {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #07182c;
  color: #fff;
  font-size: 0.82rem;
}

.portal-facilities {
  padding-top: 40px;
}

.facility-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.facility-row article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: #141414;
}

.facility-row img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.9;
}

.facility-row strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  min-height: 48px;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.portal-banner {
  display: flex;
  width: min(var(--portal-max), calc(100% - 80px));
  min-height: 152px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 34px auto 20px;
  padding: 32px 58px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #ff663d 0%, #ff7a00 100%);
  color: #fff;
}

.portal-banner span,
.portal-banner strong {
  display: block;
}

.portal-banner span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.portal-banner strong {
  margin-top: 6px;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 900;
  line-height: 1.05;
}

.portal-banner a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 30px;
  border-radius: 8px;
  background: #fff;
  color: #07182c;
  font-weight: 900;
  white-space: nowrap;
}

.portfolio-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-item {
  display: block;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--portal-soft-line);
  border-radius: 8px;
  background: #111;
}

.portfolio-item.highlight {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 102, 61, 0.22), transparent 32%),
    #141414;
}

.portfolio-item small {
  color: var(--portal-orange);
  font-weight: 900;
}

.portfolio-item strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.32;
}

.portfolio-item span {
  display: block;
  margin-top: 14px;
  color: var(--portal-muted);
  line-height: 1.72;
}

.portal-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.52fr);
  gap: 54px;
  width: min(var(--portal-max), calc(100% - 80px));
  margin: 0 auto;
  padding: 88px 0 104px;
  border-top: 1px solid var(--portal-soft-line);
}

.portal-form {
  display: grid;
  gap: 18px;
}

.portal-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.portal-form legend,
.name-field span {
  width: 100%;
  margin-bottom: 4px;
  color: var(--portal-orange);
  font-weight: 900;
}

.portal-form label {
  color: #fff;
  font-weight: 900;
}

.portal-form fieldset label {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  background: #202020;
}

.portal-form input[type="radio"] {
  accent-color: var(--portal-orange);
}

.name-field {
  display: grid;
  gap: 8px;
}

.name-field input {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  outline: 0;
}

.portal-form button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--portal-orange);
  color: #fff;
  font-weight: 900;
}

.portal-footer {
  padding: 48px 68px 34px;
  border-top: 1px solid var(--portal-soft-line);
  background: #050505;
  color: #fff;
}

.portal-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 48px;
}

.portal-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
}

.portal-footer p,
.portal-footer dd {
  color: rgba(255, 255, 255, 0.6);
}

.portal-footer dl {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
}

.portal-footer dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.portal-footer dt {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 900;
}

.portal-footer dd {
  margin: 0;
}

.portal-footer .account-number {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
}

.portal-footer a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fee500;
  color: #191600;
  font-weight: 900;
}

.portal-footer .copyright {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.38);
}

.portal-floating {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 55;
  display: grid;
  gap: 10px;
}

.portal-floating a {
  display: grid;
  min-width: 126px;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  font-weight: 900;
}

.portal-floating a:first-child {
  background: var(--portal-orange);
  color: #fff;
}

.portal-floating a:last-child {
  background: #fee500;
  color: #191600;
}

@media (max-width: 1180px) {
  .portal-sidebar {
    width: 250px;
    padding: 24px 22px;
  }

  .portal-main,
  .portal-footer {
    margin-left: 250px;
  }

  .portal-course-strip,
  .portal-section,
  .portal-banner,
  .portal-inquiry,
  .portal-hero-inner {
    width: min(var(--portal-max), calc(100% - 44px));
  }

  .portal-course-strip,
  .portfolio-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-class-grid,
  .facility-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .portal-sidebar {
    display: none;
  }

  .portal-main,
  .portal-footer {
    margin-left: 0;
  }

  .portal-mobile-header {
    position: sticky;
    top: 0;
    z-index: 70;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid var(--portal-soft-line);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
  }

  .portal-mobile-header .portal-logo-mark {
    width: 42px;
    height: 42px;
  }

  .portal-mobile-header .portal-logo small {
    display: none;
  }

  .portal-mobile-header .menu-toggle {
    display: block;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .portal-mobile-header .menu-toggle span {
    background: #fff;
  }

  .portal-mobile-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    z-index: 80;
    display: none;
    padding: 10px;
    border: 1px solid var(--portal-line);
    border-radius: 8px;
    background: #111;
  }

  .portal-mobile-nav.is-open {
    display: grid;
  }

  .portal-mobile-nav a {
    min-height: 42px;
    padding: 0 12px;
    color: #fff;
    font-weight: 900;
  }

  .portal-hero-inner {
    padding: 74px 0 104px;
  }

  .portal-hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.35rem);
  }

  .portal-course-strip {
    grid-template-columns: 1fr;
    margin-top: -48px;
  }

  .portal-about-grid,
  .portfolio-list,
  .portal-inquiry,
  .portal-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .portal-section,
  .portal-inquiry {
    padding: 58px 0;
  }

  .portal-section-head.split,
  .portal-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-banner {
    padding: 28px;
  }

  .portal-class-card {
    grid-template-columns: 1fr;
  }

  .class-thumb {
    min-height: 220px;
  }

  .portal-footer {
    padding: 40px 22px;
  }

  .portal-footer dl div {
    grid-template-columns: 92px 1fr;
  }

  .portal-floating {
    display: none;
  }
}

@media (max-width: 540px) {
  .portal-hero p:not(.portal-kicker) {
    font-size: 0.95rem;
  }

  .portal-hero-actions {
    display: grid;
  }

  .portal-btn {
    width: 100%;
  }

  .portal-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-hero-stats li {
    width: auto;
  }

  .portal-course-strip a {
    min-height: 132px;
  }

  .portal-section-head h2,
  .inquiry-copy h2 {
    font-size: 1.9rem;
  }

  .class-copy {
    padding: 24px;
  }

  .class-copy h3 {
    font-size: 1.72rem;
  }
}

/* 2026-07 portfolio case page: Onbit StudyLab */
.onbit-case-page {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: var(--body-font);
}

.case-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 102, 61, 0.18), transparent 26%),
    radial-gradient(circle at 20% 24%, rgba(0, 43, 91, 0.36), transparent 30%),
    #050505;
}

.case-nav {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.case-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.case-brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #fff;
  color: #ff8a1f;
  font-family: var(--title-font);
  font-weight: 800;
}

.case-brand strong,
.case-nav > a:last-child {
  font-weight: 900;
}

.case-nav > a:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.case-hero,
.case-summary,
.case-cover,
.case-section,
.case-flow,
.case-stack,
.case-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.case-cover {
  margin-bottom: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.case-cover img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top left;
}

.case-cover figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.maximum-k-case-page .case-main {
  background:
    radial-gradient(circle at 78% 12%, rgba(214, 168, 62, 0.18), transparent 28%),
    radial-gradient(circle at 18% 26%, rgba(34, 55, 103, 0.58), transparent 32%),
    #0d1834;
}

.maximum-k-case-page .case-hero p,
.maximum-k-case-page .case-kicker,
.maximum-k-case-page .case-summary small,
.maximum-k-case-page .case-flow span {
  color: #d6a83e;
}

.maximum-k-case-page .case-cta a {
  color: #0d1834;
  background: #d6a83e;
}

.case-hero {
  padding: 84px 0 54px;
}

.case-hero p,
.case-kicker {
  margin: 0 0 12px;
  color: #ff8a1f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  font-weight: 900;
  line-height: 1.06;
}

.case-hero span {
  display: block;
  max-width: 840px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.78;
}

.case-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 72px;
}

.case-summary article,
.case-flow article,
.case-stack article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.case-summary article {
  min-height: 150px;
  padding: 24px;
}

.case-summary small,
.case-flow span {
  color: #ff8a1f;
  font-weight: 900;
}

.case-summary strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.case-summary span,
.case-section p,
.case-flow p,
.case-stack span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.74;
}

.case-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}

.case-section h2,
.case-stack h2,
.case-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  font-weight: 900;
  line-height: 1.16;
}

.case-section p {
  margin: 0;
  font-size: 1.04rem;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0 76px;
}

.case-flow article {
  min-height: 230px;
  padding: 24px;
}

.case-flow strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
}

.case-stack {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-stack > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.case-stack article {
  min-height: 124px;
  padding: 22px;
}

.case-stack strong,
.case-stack span {
  display: block;
}

.case-stack strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.case-stack span {
  margin-top: 10px;
}

.case-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 72px 0 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-cta h2 {
  max-width: 760px;
}

.case-cta a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 26px;
  border-radius: 8px;
  background: #ff663d;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .case-summary,
  .case-section,
  .case-section.reverse,
  .case-flow,
  .case-stack > div {
    grid-template-columns: 1fr;
  }

  .case-hero {
    padding-top: 56px;
  }

  .case-section,
  .case-flow,
  .case-stack,
  .case-cta {
    padding: 48px 0;
  }

  .case-cover {
    margin-bottom: 48px;
  }

  .case-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .case-cta a {
    justify-content: center;
  }
}

/* 2026-07 studio rebuild: product / portfolio split with visual effects */
.studio-site {
  --studio-bg: #050505;
  --studio-ink: #f7f7f4;
  --studio-muted: rgba(247, 247, 244, 0.68);
  --studio-faint: rgba(247, 247, 244, 0.1);
  --studio-line: rgba(247, 247, 244, 0.14);
  --studio-orange: #ff7a00;
  --studio-gold: #d6a83e;
  --studio-cyan: #62d5ff;
  --studio-green: #72df9a;
  --studio-navy: #002b5b;
  margin: 0;
  background: var(--studio-bg);
  color: var(--studio-ink);
  font-family: var(--body-font);
}

.studio-site * {
  box-sizing: border-box;
}

.studio-site a {
  color: inherit;
  text-decoration: none;
}

.studio-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(1180px, calc(100% - 36px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.studio-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
}

.studio-brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--studio-ink);
  color: var(--studio-orange);
  font-family: var(--title-font);
  font-size: 1.35rem;
  font-weight: 800;
}

.studio-brand strong {
  color: var(--studio-ink);
  font-size: 0.96rem;
  font-weight: 950;
}

.studio-menu {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.studio-menu a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(247, 247, 244, 0.72);
  font-size: 0.88rem;
  font-weight: 850;
}

.studio-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.studio-nav .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.studio-nav .menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: #fff;
}

.studio-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  align-items: center;
  padding: 124px 0 74px;
  background:
    linear-gradient(110deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.86) 44%, rgba(4, 23, 36, 0.78) 100%),
    #050505;
}

.studio-hero::before,
.studio-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.studio-hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
  opacity: 0.62;
}

.studio-hero::after {
  right: -16%;
  bottom: 8%;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 213, 255, 0.8), rgba(255, 122, 0, 0.92), transparent);
  box-shadow:
    0 -92px 0 rgba(98, 213, 255, 0.1),
    0 92px 0 rgba(255, 122, 0, 0.12),
    0 0 34px rgba(255, 122, 0, 0.58);
  transform: rotate(-18deg);
  animation: studioPulseLine 4.2s ease-in-out infinite;
}

.studio-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.studio-site .hero-visual-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(255, 255, 255, 0.025) 40px 41px),
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(255, 255, 255, 0.025) 40px 41px);
  opacity: 0.52;
  transform: perspective(700px) rotateX(58deg) translateY(20%);
  transform-origin: center bottom;
}

.studio-hero-content,
.studio-signal-panel,
.studio-orbit {
  position: relative;
  z-index: 5;
}

.studio-hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.studio-kicker,
.studio-section-head p,
.contact-panel p,
.product-topline small,
.class-grid span,
.consult-flow span,
.proof-card small {
  margin: 0;
  color: var(--studio-orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-hero h1 {
  max-width: 850px;
  margin: 20px 0 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: 5.2rem;
  font-weight: 950;
  line-height: 1.05;
}

.studio-hero-content > p:not(.studio-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(247, 247, 244, 0.78);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.82;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.studio-btn,
.studio-text-link,
.product-card a,
.studio-form button,
.studio-footer a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 950;
}

.studio-btn {
  padding: 0 24px;
}

.studio-btn.primary,
.studio-form button,
.studio-footer a {
  background: var(--studio-orange);
  color: #121212;
  box-shadow: 0 0 34px rgba(255, 122, 0, 0.28);
}

.studio-btn.ghost,
.studio-text-link,
.product-card a {
  border: 1px solid var(--studio-line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.studio-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 30px rgba(98, 213, 255, 0.1);
  backdrop-filter: blur(12px);
  animation: studioFloat 6s ease-in-out infinite;
}

.chip-academy {
  top: 25%;
  right: 24%;
}

.chip-ax {
  top: 42%;
  right: 11%;
  animation-delay: -1.2s;
}

.chip-voice {
  right: 31%;
  bottom: 20%;
  animation-delay: -2.4s;
}

.chip-proof {
  top: 18%;
  right: 7%;
  animation-delay: -3.2s;
}

.chip-dict {
  right: 19%;
  bottom: 34%;
  animation-delay: -4s;
}

.studio-signal-panel {
  display: grid;
  width: min(980px, calc(100% - 36px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 58px auto 0;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.studio-signal-panel article {
  min-height: 128px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent 44%),
    rgba(5, 5, 5, 0.76);
}

.studio-signal-panel span {
  color: var(--studio-cyan);
  font-size: 0.78rem;
  font-weight: 950;
}

.studio-signal-panel strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 950;
}

.studio-signal-panel p {
  margin: 8px 0 0;
  color: var(--studio-muted);
  line-height: 1.6;
}

.studio-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  scroll-margin-top: 96px;
  background: #050505;
}

.studio-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--studio-line), transparent);
  content: "";
  transform: translateX(-50%);
}

.studio-section-head,
.product-grid,
.class-grid,
.consult-flow,
.proof-grid,
.contact-panel,
.studio-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.studio-section-head {
  margin-bottom: 34px;
}

.studio-section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.studio-section-head h2,
.contact-panel h2 {
  max-width: 860px;
  margin: 12px 0 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: 3.1rem;
  font-weight: 950;
  line-height: 1.12;
}

.studio-section-head span,
.contact-panel span {
  display: block;
  max-width: 780px;
  margin-top: 16px;
  color: var(--studio-muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.78;
}

.studio-text-link {
  padding: 0 18px;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}

.product-card,
.class-grid article,
.consult-flow article,
.proof-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.product-card::before,
.class-grid article::before,
.consult-flow article::before,
.proof-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(98, 213, 255, 0.2), transparent),
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(255, 255, 255, 0.025) 19px 20px);
  opacity: 0;
  content: "";
  transform: translateX(-70%);
  transition: opacity 0.25s ease;
}

.product-card:hover::before,
.class-grid article:hover::before,
.consult-flow article:hover::before,
.proof-card:hover::before {
  opacity: 1;
  animation: studioScan 1.8s ease-out;
}

.product-card {
  padding: 30px;
}

.product-primary {
  background:
    linear-gradient(135deg, rgba(0, 43, 91, 0.72), rgba(5, 5, 5, 0.72) 55%),
    rgba(255, 255, 255, 0.05);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-topline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  color: var(--studio-cyan);
  font-weight: 950;
}

.product-card h3,
.class-grid h3,
.consult-flow strong,
.proof-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 24px 0 0;
  color: #fff;
  font-size: 1.72rem;
  font-weight: 950;
  line-height: 1.18;
}

.product-card p,
.product-card li,
.class-grid p,
.consult-flow p,
.proof-card span {
  position: relative;
  z-index: 1;
  color: var(--studio-muted);
  font-weight: 700;
  line-height: 1.72;
}

.product-card p {
  margin: 18px 0 0;
}

.product-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding-left: 18px;
}

.product-card li::before {
  position: absolute;
  margin-left: -18px;
  color: var(--studio-orange);
  content: "•";
}

.product-card a {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 16px;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.class-grid article {
  min-height: 278px;
  padding: 26px;
}

.class-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(114, 223, 154, 0.12), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.class-grid article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(98, 213, 255, 0.13), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.class-grid article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(214, 168, 62, 0.14), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.consulting-section {
  background:
    linear-gradient(180deg, #050505 0%, #071018 100%);
}

.consult-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.consult-flow article {
  min-height: 248px;
  padding: 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.proof-card {
  display: block;
  min-height: 300px;
  padding: 28px;
}

.proof-feature {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(0, 43, 91, 0.36) 56%, rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
}

.contact-section {
  padding-bottom: 116px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 42px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.05);
}

.studio-form {
  display: grid;
  gap: 14px;
}

.studio-form label {
  display: grid;
  gap: 8px;
}

.studio-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 850;
}

.studio-form input,
.studio-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.studio-form option {
  background: #111;
  color: #fff;
}

.studio-form button {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.studio-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 28px;
  align-items: start;
  padding: 46px 0 62px;
  border-top: 1px solid var(--studio-line);
}

.studio-footer strong,
.studio-footer span {
  display: block;
}

.studio-footer strong {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 950;
}

.studio-footer span,
.studio-footer dd,
.studio-footer dt {
  color: var(--studio-muted);
  font-weight: 700;
}

.studio-footer dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.studio-footer dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.studio-footer dt,
.studio-footer dd {
  margin: 0;
}

.studio-footer a {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

@keyframes studioFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes studioPulseLine {
  0%,
  100% {
    opacity: 0.38;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes studioScan {
  0% {
    transform: translateX(-76%);
  }
  100% {
    transform: translateX(76%);
  }
}

@media (max-width: 1100px) {
  .studio-hero h1 {
    font-size: 4.1rem;
  }

  .product-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .class-grid,
  .consult-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orbit-chip {
    opacity: 0.72;
  }
}

@media (max-width: 820px) {
  .studio-nav {
    top: 10px;
    width: calc(100% - 24px);
  }

  .studio-nav .menu-toggle {
    display: block;
  }

  .studio-menu {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
    height: auto;
    display: none;
    padding: 10px;
    border: 1px solid var(--studio-line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
  }

  .studio-menu.is-open {
    display: grid;
  }

  .studio-menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .studio-hero {
    min-height: auto;
    padding: 118px 0 52px;
  }

  .studio-hero h1 {
    font-size: 3.05rem;
  }

  .studio-hero-content > p:not(.studio-kicker) {
    font-size: 1rem;
  }

  .studio-orbit {
    display: none;
  }

  .studio-signal-panel,
  .class-grid,
  .consult-flow,
  .contact-panel,
  .studio-footer {
    grid-template-columns: 1fr;
  }

  .studio-signal-panel {
    margin-top: 36px;
  }

  .studio-section {
    padding: 74px 0;
  }

  .studio-section-head.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-section-head h2,
  .contact-panel h2 {
    font-size: 2.25rem;
  }

  .product-card,
  .proof-card {
    min-height: auto;
  }

  .contact-panel {
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .studio-brand {
    min-width: 0;
  }

  .studio-brand strong {
    font-size: 0.9rem;
  }

  .studio-hero h1 {
    font-size: 2.42rem;
  }

  .studio-actions {
    display: grid;
  }

  .studio-btn,
  .studio-text-link {
    width: 100%;
  }

  .studio-section-head h2,
  .contact-panel h2 {
    font-size: 1.9rem;
  }

  .studio-footer dl div {
    grid-template-columns: 92px 1fr;
  }
}

/* ============================================================
   THE RUMEN — 포트폴리오 확장 + 가격 섹션 (2026-07-27 패치)
   styles.css 맨 아래에 그대로 붙여넣기
   ============================================================ */

/* --- 포트폴리오 카드: 외부 링크 표시 + 가격 한 줄 --- */
.proof-card .proof-price {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--studio-gold);
}
.proof-card .proof-price del {
  margin-right: 8px;
  color: rgba(247, 247, 244, 0.4);
  font-weight: 600;
}
.proof-card .proof-live {
  display: inline-block;
  margin-top: 10px;
  color: var(--studio-orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- 교회 프로젝트 상품 진입부 --- */
.church-project-strip {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  min-height: 142px;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 16px auto 0;
  padding: 28px 30px;
  border: 1px solid rgba(214, 168, 62, 0.42);
  border-radius: 8px;
  background: #0b1d33;
  color: #fff;
}

.church-project-strip > span {
  color: var(--studio-gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.church-project-strip strong,
.church-project-strip p {
  display: block;
}

.church-project-strip strong {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
}

.church-project-strip p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  line-height: 1.65;
}

.church-project-strip em {
  color: var(--studio-orange);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .church-project-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }
}

/* --- 가격 섹션 --- */
.pricing-section .price-rows {
  display: grid;
  gap: 12px;
}
.price-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid var(--studio-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 50%),
    rgba(255, 255, 255, 0.04);
}
.price-row strong {
  color: var(--studio-ink);
  font-size: 1.02rem;
  font-weight: 900;
}
.price-row strong small {
  display: block;
  margin-top: 4px;
  color: var(--studio-muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.price-market {
  color: rgba(247, 247, 244, 0.45);
  font-size: 0.9rem;
  font-weight: 600;
}
.price-market del {
  text-decoration-color: rgba(255, 122, 0, 0.7);
  text-decoration-thickness: 2px;
}
.price-market span {
  display: block;
  font-size: 0.72rem;
  color: rgba(247, 247, 244, 0.35);
}
.price-rumen {
  font-family: var(--title-font);
  color: var(--studio-gold);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}
.price-rumen small {
  display: block;
  font-family: var(--body-font);
  color: var(--studio-muted);
  font-size: 0.74rem;
  font-weight: 700;
}
.price-badge {
  justify-self: end;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--studio-orange);
  color: #050505;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pricing-note {
  margin-top: 22px;
  color: var(--studio-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.pricing-note a {
  color: var(--studio-cyan);
  font-weight: 800;
}
.pricing-quote {
  margin: 34px 0 0;
  border-left: 3px solid var(--studio-orange);
  padding: 6px 20px;
  color: var(--studio-ink);
  font-family: var(--title-font);
  font-size: 1.25rem;
}
@media (max-width: 860px) {
  .price-row {
    grid-template-columns: 1fr auto;
    row-gap: 8px;
  }
  .price-market { grid-column: 1 / -1; }
}

/* --- 케이스 페이지: 캡처 갤러리 + 라이브 버튼 --- */
.case-shots {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 60px;
}
.case-shots h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
}
.case-shots h2 small {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 700;
}
.case-shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.case-shots-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}
.case-shots-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}
.case-shots-grid figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}
.case-live-btn {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--studio-orange, #ff7a00);
  color: #050505;
  font-size: 0.98rem;
  font-weight: 950;
}
.case-live-btn:hover {
  filter: brightness(1.08);
}
@media (max-width: 720px) {
  .case-shots-grid {
    grid-template-columns: 1fr;
  }
}
