/* site.css — component + page styles extracted verbatim from yunghsu SFCs.
   data-v scoping removed; :deep() unwrapped to descendant selectors; values unchanged. */

/* ===== App shell (App.vue) ===== */
.app-shell { position: relative; min-height: 100vh; display: flex; flex-direction: column; background: var(--bg-page); }
.app-main { flex: 1; }
.app-shell--auth { height: 100vh; height: 100dvh; max-height: 100dvh; min-height: 0; overflow: hidden; overscroll-behavior: none; }
.app-shell--auth .app-main { flex: 1; min-height: 0; overflow: hidden; }

/* ===== BaseButton (.btn) ===== */
.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--spec-control-h);
  min-height: var(--spec-control-h);
  padding: 0 var(--space-3);
  border-radius: var(--radius-control);
  font-size: var(--type-body-size);
  font-weight: 500;
  line-height: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s, transform 0.15s;
}
.btn--primary { background: var(--brand-500); color: #111111; }
.btn--primary:hover:not(:disabled) { filter: brightness(1.06); }
.btn--secondary { background: var(--bg-800); border-color: var(--border-input); color: var(--text-primary); }
.btn--secondary:hover:not(:disabled) { border-color: var(--brand-500); }
.btn--inverse { background: #ffffff; color: #111111; }
.btn--inverse:hover:not(:disabled) { filter: brightness(0.96); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn--disabled, .btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:active:not(:disabled) { transform: none; }
}

/* ===== BaseInput (.field) ===== */
.field { box-sizing: border-box; display: flex; flex-direction: column; gap: var(--spec-label-input-gap); width: 100%; min-width: 0; }
.field__label { font-size: 0.875rem; line-height: 1.4; font-weight: 500; letter-spacing: -0.04em; color: var(--text-primary); }
.field__input {
  box-sizing: border-box;
  width: 100%;
  height: var(--spec-control-h);
  min-height: var(--spec-control-h);
  padding: 0 var(--space-2);
  border-radius: var(--radius-control);
  border: 1px solid var(--border-input);
  background: var(--bg-800);
  color: var(--text-primary);
  font-family: inherit;
  font-size: var(--type-body-size);
  line-height: 24px;
}
.field__input::placeholder { color: var(--text-secondary); }
.field__input--area { height: var(--spec-textarea-h); min-height: var(--spec-textarea-h); padding: var(--space-2); resize: vertical; line-height: 24px; }
.field__input:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 2px var(--brand-glow); }
.field__error { font-size: var(--type-caption-size); color: #ff6b6b; }

/* ===== BrandLogo ===== */
.brand-logo { display: inline-flex; align-items: center; gap: 9px; color: #fafafa; line-height: 1; }
.brand-logo__text { display: inline-flex; align-items: center; gap: 0.42em; font-size: 20px; font-weight: 500; line-height: 1; white-space: nowrap; }
.brand-logo-mark { flex-shrink: 0; display: block; }

/* ===== GoogleIcon ===== */
.google-icon { flex-shrink: 0; display: block; }

/* ===== FooterSocialIcons ===== */
.footer-social { display: flex; align-items: center; gap: 24px; }
.footer-social__link { display: flex; color: var(--text-secondary); transition: color 0.2s ease; }
.footer-social__link:hover { color: var(--text-primary); }
.footer-social__link:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
.footer-social__icon { display: block; }

/* ===== AppHeader ===== */
.header { position: sticky; top: 0; z-index: 100; background: var(--header-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.header__inner { display: flex; align-items: center; gap: var(--space-3); min-height: 74px; }
.header__logo { margin-right: auto; text-decoration: none; color: inherit; }
.header__nav { display: none; gap: var(--space-3); }
.header__nav a { color: var(--text-secondary); font-size: var(--type-body-sm-size); line-height: 22px; }
.header__nav > a.router-link-active { color: var(--brand-500); }
.header__dropdown { position: relative; }
.header__dropdown-trigger {
  display: inline-flex; align-items: center; gap: 6px; padding: 0; border: none; background: none; cursor: pointer;
  color: var(--text-secondary); font-size: var(--type-body-sm-size); line-height: 22px; font-family: inherit;
}
.header__dropdown-trigger--active { color: var(--brand-500); }
.header__dropdown-chevron {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.header__dropdown-menu {
  display: none; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  min-width: 145px; padding: 10px 0 8px; border-radius: var(--radius-sm);
  background: var(--bg-800); border: 1px solid var(--border-input);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); z-index: 120;
}
.header__dropdown-menu::before { content: ''; position: absolute; left: -12px; right: -12px; top: 0; height: 10px; }
.header__dropdown-item {
  display: block; padding: 12px 20px; color: var(--text-secondary); font-size: var(--type-body-sm-size); line-height: 22px;
  text-align: center; text-decoration: none; white-space: nowrap; transition: color 0.2s, background-color 0.2s;
}
.header__dropdown-item.router-link-exact-active { color: var(--brand-500); background: transparent; }
.header__dropdown-item:hover { color: var(--brand-500); background: var(--bg-900); }
.header__dropdown-item.router-link-active:not(.router-link-exact-active) { color: var(--text-secondary); background: transparent; }
.header__dropdown--open .header__dropdown-menu { display: block; }
.header__dropdown--open .header__dropdown-chevron { transform: rotate(180deg); }
.header__actions { display: none; gap: 12px; }
.header__actions .btn { height: var(--spec-control-h-sm); min-height: var(--spec-control-h-sm); border-radius: var(--radius-sm); font-size: var(--type-body-sm-size); }
.header__actions .btn--secondary { background: var(--bg-800); border-color: var(--border-input); }
.header__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.header__burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); }
@media (min-width: 1024px) {
  .header__burger { display: none; }
  .header__logo { margin-right: 0; }
  .header__nav { display: flex; flex: 1; justify-content: center; }
  .header__actions { display: flex; }
  .header__nav--open { position: static; flex-direction: row; }
  .header__dropdown:hover .header__dropdown-menu { display: block; }
  .header__dropdown:hover .header__dropdown-chevron { transform: rotate(180deg); }
}
@media (max-width: 1023px) {
  .header__nav--open {
    display: flex; flex-direction: column; align-items: stretch; gap: var(--space-1);
    position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-page);
    padding: var(--space-3); border-bottom: 1px solid var(--border-input);
  }
  .header__nav--open > a { padding: var(--space-1) 0; }
  .header__dropdown { width: 100%; }
  .header__dropdown-trigger { width: 100%; justify-content: space-between; padding: var(--space-1) 0; }
  .header__dropdown-menu {
    position: static; transform: none; display: none; min-width: 0; margin: 0; padding: 0 0 var(--space-1);
    border: none; border-radius: 0; background: transparent; box-shadow: none;
  }
  .header__dropdown-menu::before { display: none; }
  .header__dropdown--open .header__dropdown-menu { display: block; }
  .header__dropdown-item { padding: 8px 0 8px var(--space-3); text-align: left; }
  .header__dropdown-item:hover { background: transparent; }
  .header__actions { display: flex; }
  .header__actions .btn { min-height: 40px; padding: 0 var(--space-2); font-size: 14px; }
}
@media (max-width: 767px) {
  .header__inner { gap: var(--space-2); }
  .header__actions { gap: 8px; }
  .header__actions .btn { width: auto !important; padding-inline: 12px !important; }
}

/* ===== AppFooter ===== */
.footer { position: relative; background: var(--bg-900); border-top: 1px solid var(--border-input); }
.footer__inner { padding-top: clamp(40px, 4.4vw, 64px); }
.footer__main { display: grid; gap: var(--space-4); grid-template-columns: 1fr; padding-bottom: clamp(32px, 4vw, 48px); }
@media (min-width: 992px) {
  .footer__main { grid-template-columns: minmax(260px, 2.03fr) 1fr 1fr minmax(140px, 0.85fr); gap: var(--space-3) var(--space-4); align-items: start; }
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; max-width: 420px; }
.footer__logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text-primary); text-decoration: none; }
.footer__logo:hover { color: var(--text-primary); }
.footer__desc { margin-top: var(--space-2); font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line-height); color: var(--text-secondary); }
.footer__brand .footer-social { margin-top: var(--space-3); }
@media (min-width: 992px) { .footer__brand .footer-social { gap: 48px; } }
.footer__title { margin-bottom: 30px; font-size: var(--type-body-size); line-height: var(--type-body-line-height); font-weight: 400; color: var(--text-primary); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.footer__links a { font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line-height); color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; }
.footer__links a:hover { color: var(--text-primary); }
.footer__links a:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
.footer__copy {
  margin: 0; padding: 20px 0; min-height: 64px; display: flex; align-items: center; justify-content: center; text-align: center;
  border-top: 1px solid var(--border-input); font-size: var(--type-body-sm-size); line-height: var(--type-body-sm-line-height); color: var(--text-secondary);
}

/* ===== LoopVideo ===== */
.loop-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.loop-video--fill video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.loop-video--custom video { object-fit: cover; display: block; }

/* ===== AuthShell ===== */
.auth-shell {
  position: relative; height: 100%; min-height: 100%; background: var(--bg-black); overflow: hidden; isolation: isolate;
  --auth-video-left: var(--spec-auth-media-split);
  --auth-video-top: -12.5%;
  --auth-video-width: 133.472%;
  --auth-video-height: 187.695%;
  --auth-video-object-position: 50% 46%;
}
.auth-shell__status { display: none; }
.auth-shell__video {
  position: absolute; z-index: 1; left: var(--auth-video-left); top: var(--auth-video-top);
  width: var(--auth-video-width); height: var(--auth-video-height); max-width: none; object-fit: cover;
  object-position: var(--auth-video-object-position); pointer-events: none;
}
.auth-shell__atmosphere {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, #000 0%, #000 var(--spec-auth-media-solid-end), rgba(0,0,0,0.98) var(--spec-auth-media-split), rgba(0,0,0,0.72) var(--spec-auth-media-fade-mid), rgba(0,0,0,0.28) var(--spec-auth-media-fade-soft), transparent var(--spec-auth-media-fade-out)),
    linear-gradient(180deg, #000 0%, #000 38%, rgba(0,0,0,0.96) 46%, rgba(0,0,0,0.78) 54%, rgba(0,0,0,0.42) 64%, rgba(0,0,0,0.12) 76%, transparent 88%);
}
.auth-shell__bg { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.auth-shell__glow--sphere { position: absolute; left: 98.37%; top: 84.13%; width: 78.4%; height: 128.42%; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255,158,15,0.35); filter: blur(154.633px); mix-blend-mode: plus-lighter; }
.auth-shell__glow--wide { position: absolute; left: 12.27%; top: 92.17%; width: 65.51%; height: 66.76%; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255,158,15,0.5); opacity: 0.3; filter: blur(95.095px); mix-blend-mode: plus-lighter; }
.auth-shell__glow--near { position: absolute; left: -0.49%; top: 105.21%; width: 39.95%; height: 40.72%; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255,158,15,0.5); opacity: 0.3; filter: blur(82.097px); mix-blend-mode: plus-lighter; }
.auth-shell__content {
  position: relative; z-index: 4; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start;
  gap: var(--spec-auth-title-gap); width: var(--spec-auth-column-w); max-width: 100%;
  padding-top: var(--spec-auth-content-offset); padding-left: calc(var(--spec-auth-pad-x) + var(--spec-auth-content-shift));
}
.auth-shell__header { display: flex; align-items: center; min-height: var(--spec-auth-header-h); }
.auth-shell__logo { display: inline-flex; align-items: center; text-decoration: none; color: inherit; }
.auth-shell__panel { box-sizing: border-box; width: var(--spec-auth-form-w); max-width: 100%; padding-bottom: var(--space-5); }
@media (max-width: 767px) {
  .auth-shell {
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    --auth-video-left: -85.75%;
    --auth-video-top: 83.92%;
    --auth-video-width: 274.35%;
    --auth-video-height: 79.11%;
    --auth-video-object-position: 50% 20%;
  }
  .auth-shell__status { display: none; }
  .auth-shell__bg { display: none; }
  .auth-shell__atmosphere { background: linear-gradient(180deg, #000 0%, #000 58%, rgba(0,0,0,0.92) 68%, rgba(0,0,0,0.45) 78%, transparent 90%); }
  .auth-shell__content { justify-content: flex-start; gap: 0; width: 100%; min-height: 100%; padding: 0 var(--spec-auth-m-pad-x) max(var(--space-5), env(safe-area-inset-bottom, 0px)) var(--spec-auth-m-pad-x); }
  .auth-shell__header { min-height: var(--spec-auth-m-header-h); flex-shrink: 0; }
  .auth-shell__panel { width: 100%; max-width: var(--spec-auth-m-form-w); margin-top: var(--spec-auth-m-title-offset); padding-bottom: var(--space-5); }
}
/* Register desktop field compaction (Register.vue scoped) */
@media (min-width: 768px) {
  .auth-form--register .field { gap: var(--spec-auth-label-gap-compact); }
  .auth-form--register .field__label { line-height: 1.25; }
}

/* ============================================================
   PAGE STYLES (appended per page below this marker)
   ============================================================ */
/* ===== HighlightTag (.tag) — shared ===== */
.tag {
  box-sizing: border-box; display: inline-flex; align-items: center;
  height: var(--spec-tag-h); min-height: var(--spec-tag-h); padding: 0 14px;
  border-radius: var(--radius-tag); background: var(--bg-800); border: 1px solid var(--border-input);
  color: var(--brand-500); font-size: var(--type-body-sm-size); font-weight: 500; line-height: 1;
}

/* ===== TestimonialCard (.quote) — shared ===== */
.quote { padding: var(--space-4); border-radius: var(--radius-lg); background: var(--bg-900); border: 1px solid var(--border-input); }
.quote__text { font-size: var(--type-body-size); line-height: 24px; color: var(--text-secondary); margin-bottom: var(--space-2); }
.quote__author { font-size: var(--type-body-sm-size); color: var(--brand-500); }

/* ===== FaqItem (.faq) — shared ===== */
.faq { min-height: 64px; border-radius: var(--radius-lg); background: var(--bg-800); border: 1px solid var(--border-input); overflow: hidden; }
.faq--open { min-height: 140px; }
.faq__head { width: 100%; min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); padding: 0 16px 0 24px; background: transparent; border: none; color: var(--text-primary); font: inherit; text-align: left; cursor: pointer; }
.faq__head:focus-visible { outline: 2px solid var(--brand-500); outline-offset: -2px; }
.faq__q { font-size: var(--type-body-size); font-weight: 500; line-height: 24px; }
.faq__toggle { flex: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-control); border: 1px solid var(--border-input); background: var(--bg-900); color: var(--brand-500); }
.faq__chevron { width: 18px; height: 18px; transition: transform 0.2s ease; }
.faq--open .faq__chevron { transform: rotate(0deg); }
.faq:not(.faq--open) .faq__chevron { transform: rotate(180deg); }
.faq:not(.faq--open) .faq__body { display: none; }
.faq__body { padding: 0 24px 22px; color: var(--text-secondary); font-size: var(--type-body-sm-size); line-height: 22px; max-width: 52ch; }

/* ===== DecisionStepIcon — shared ===== */
.decision-step-icon { position: relative; flex: none; border-radius: 12px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.decision-step-icon__bg { display: block; width: 100%; height: 100%; object-fit: cover; }
.decision-step-icon__glyph { position: absolute; inset: 0; display: block; pointer-events: none; }

/* ===== CaseStudyChart (.case-chart) — shared ===== */
.case-chart { width: 100%; height: auto; display: block; }
.case-chart__badge { font-family: var(--font-sans); font-size: 24px; font-weight: 500; letter-spacing: -0.04em; }
.case-chart__line-flow { stroke-dasharray: 10 90; filter: drop-shadow(0 0 6px rgba(255, 183, 77, 0.75)); animation: case-chart-line-flow 3.2s linear infinite; }
@keyframes case-chart-line-flow { to { stroke-dashoffset: -100; } }
.case-chart__dot-outer { transform-box: fill-box; transform-origin: center; animation: case-chart-dot-breathe 2.4s ease-in-out infinite; }
@keyframes case-chart-dot-breathe { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.22); opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) {
  .case-chart__line-flow { animation: none; opacity: 0; }
  .case-chart__dot-outer { animation: none; }
}

/* ===== JoinSection (.join) — shared ===== */
.join { position: relative; min-height: clamp(600px, 60.42vw, 870px); padding-block: 0; overflow: hidden; background: var(--bg-page); }
.join__bg-wrap { position: absolute; left: 50%; transform: translateX(-50%); top: clamp(40px, 4.17vw, 60px); width: min(100%, var(--bp-desktop)); height: clamp(450px, 56.25vw, 810px); z-index: 0; overflow: hidden; }
.join__bg { width: 100%; height: 100%; object-fit: cover; object-position: center 92%; }
.join__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, #000000 0%, #000000 32%, rgba(0, 0, 0, 0.94) 46%, rgba(0, 0, 0, 0.5) 62%, transparent 78%), radial-gradient(ellipse 90% 45% at 50% 108%, rgba(255, 183, 77, 0.22) 0%, transparent 58%), radial-gradient(120% 90% at 50% 100%, rgba(17, 17, 17, 0.25) 0%, rgba(0, 0, 0, 0.88) 72%); }
.join__frame { position: relative; z-index: 2; width: min(100%, var(--bp-desktop)); margin-inline: auto; padding-inline: clamp(var(--space-2), 6.94vw, 100px); padding-bottom: clamp(var(--space-5), 6.94vw, 80px); }
.join__content { padding-top: clamp(60px, 7.85vw, 113px); text-align: center; display: flex; flex-direction: column; align-items: center; }
.join__title { margin-top: 44px; max-width: 612px; font-size: clamp(28px, 3.75vw, 54px); line-height: 1.37; font-weight: 500; letter-spacing: -0.04em; }
.join__sub { margin-top: clamp(40px, 5.69vw, 82px); max-width: 612px; font-size: var(--type-body-size); line-height: var(--type-body-line-height); }
.join__cta { margin-top: 31px; width: var(--spec-btn-cta-w); flex-shrink: 0; }
.subscribe { margin-top: clamp(100px, 16.39vw, 236px); width: min(100%, var(--spec-newsletter-w)); margin-inline: auto; box-sizing: border-box; border-radius: var(--radius); background: var(--overlay-80); backdrop-filter: var(--blur-glass); border: 1px solid var(--border-input); overflow: hidden; }
.subscribe__title { font-size: 24px; line-height: 1; font-weight: 500; letter-spacing: -0.04em; color: var(--text-primary); }
.subscribe__desc { margin-top: 13px; font-size: var(--type-body-size); line-height: var(--type-body-line-height); max-width: 575px; }
.subscribe__form { display: flex; flex-direction: column; gap: var(--space-2); }
.subscribe__input { box-sizing: border-box; width: 100%; height: var(--spec-control-h); padding: 0 var(--space-3); border-radius: var(--radius-control); background: var(--bg-800); border: 1px solid var(--border-input); color: var(--text-primary); font: inherit; font-size: var(--type-body-size); }
.subscribe__input::placeholder { color: var(--text-secondary); }
.subscribe__input:focus-visible { outline: none; border-color: var(--brand-500); box-shadow: var(--shadow-input-focus); }
@media (min-width: 1024px) {
  .join__title { font-size: 54px; line-height: 74px; }
  .subscribe { width: min(100%, var(--spec-newsletter-w)); height: var(--spec-newsletter-h); padding: 0; display: grid; grid-template-columns: minmax(0, 1fr) 558px; align-items: start; }
  .subscribe__copy { padding: 37px 0 0 34px; max-width: 575px; min-width: 0; }
  .subscribe__form { padding: 34px 34px 0 0; display: grid; grid-template-columns: minmax(0, 1fr) var(--spec-btn-subscribe-w); gap: var(--spec-form-gap-input-btn); align-items: center; width: min(558px, 100%); max-width: 558px; box-sizing: border-box; min-width: 0; }
  .subscribe__input { width: 100%; max-width: var(--spec-input-newsletter-w); height: var(--spec-control-h); }
  .subscribe__btn { padding-inline: 0; }
}
@media (max-width: 1023px) {
  .subscribe { padding: var(--space-3); }
  .subscribe__title { font-size: 20px; }
}

/* ===== Home page (scoped under .home) ===== */
.home .hero { position: relative; margin-top: -74px; height: clamp(600px, 60.42vw, 870px); overflow: hidden; background: var(--bg-page); }
.home .hero__bg-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.home .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 80%; will-change: opacity; }
.home .hero__glow { position: absolute; left: 50%; top: 80%; z-index: 1; width: min(108%, 1560px); height: 35%; transform: translate(-50%, -50%); pointer-events: none; background: radial-gradient(ellipse at center, rgba(255, 158, 15, 0.5) 0%, transparent 70%); mix-blend-mode: plus-lighter; }
.home .community__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.home .hero__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 32%), linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.35) 72%, #000000 88%); }
.home .hero__content { position: relative; z-index: 2; height: 100%; padding-top: calc(74px + clamp(48px, 4.72vw, 68px)); text-align: center; display: flex; flex-direction: column; align-items: center; }
.home .hero__title { margin-top: var(--space-3); max-width: 772px; font-size: clamp(34px, 4.44vw, 64px); line-height: 1.15; font-weight: var(--type-h1-weight); letter-spacing: var(--type-h1-letter-spacing); }
.home .hero__sub { margin: var(--space-3) auto 0; max-width: 560px; color: #b3b3b3; font-size: var(--type-body-size); line-height: var(--type-body-line-height); }
.home .hero__actions { margin-top: var(--space-4); display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }
.home .why__head { display: grid; gap: var(--space-3); grid-template-columns: 1fr; margin-bottom: var(--space-5); }
.home .why__intro { max-width: 560px; font-size: var(--type-body-sm-size); line-height: 22px; }
.home .why__grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.home .why-card { border-radius: var(--radius-lg); background: var(--bg-900); border: none; overflow: hidden; }
.home .why-card__art { display: block; width: 100%; height: auto; aspect-ratio: 298 / 200; object-fit: cover; }
.home .why-card__body { padding: var(--space-3) var(--space-4) var(--space-4); }
.home .why-card__title { font-size: var(--type-h4-size); font-weight: 500; margin-bottom: var(--space-1); }
.home .why-card__desc { font-size: var(--type-body-sm-size); line-height: 22px; }
.home .decision__intro { margin-bottom: var(--space-5); max-width: 720px; }
.home .decision__lead { margin-top: var(--space-3); font-size: var(--type-body-sm-size); line-height: 22px; }
.home .decision__body { display: grid; gap: var(--space-5); grid-template-columns: 1fr; align-items: center; }
.home .steps { list-style: none; max-width: 558px; }
.home .step { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.home .step:first-child { padding-top: 0; }
.home .step:last-child { border-bottom: none; padding-bottom: 0; }
.home .step__copy { flex: 1; min-width: 0; padding-top: 4px; }
.home .step__title { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.25; font-weight: 500; margin-bottom: 8px; }
.home .step__desc { font-size: var(--type-body-sm-size); line-height: 22px; }
.home .decision__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-950); border: 1px solid var(--border-input); aspect-ratio: 612 / 515; }
.home .decision__video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 40%; }
.home .product__eyebrow { text-align: center; color: var(--brand-500); font-size: var(--type-body-sm-size); letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: var(--space-2); }
.home .product__grid { margin-top: var(--space-5); display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.home .product-card { padding: var(--space-5) var(--space-4); border-radius: var(--radius-lg); background: var(--bg-800); border: 1px solid var(--border-input); text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.home .product-card__icon { width: 64px; height: 64px; margin-bottom: var(--space-3); display: flex; align-items: center; justify-content: center; color: var(--brand-500); }
.home .product-card__icon svg { width: 40px; height: 40px; }
.home .product-card__title { font-size: var(--type-h4-size); font-weight: 500; }
.home .product-card__rule { width: 32px; height: 2px; border-radius: 2px; background: var(--brand-500); margin: var(--space-2) 0 var(--space-3); }
.home .product-card__desc { font-size: var(--type-body-sm-size); line-height: 24px; }
@media (hover: hover) {
  .home .product-card:hover { border-color: var(--brand-500); background: var(--bg-900); box-shadow: var(--glow-amber); }
  .home .product-card:hover .product-card__rule { background: var(--brand-300); }
}
.home .case { display: grid; gap: var(--space-4); grid-template-columns: 1fr; padding: var(--space-5); border-radius: var(--radius-lg); background: linear-gradient(135deg, #1a1a1a 0%, #111 100%); border: 1px solid var(--border-input); align-items: center; }
.home .case__title { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; font-weight: 500; letter-spacing: -0.04em; }
.home .case__desc { margin: var(--space-3) 0 var(--space-4); max-width: 440px; }
.home .case__chart { position: relative; min-height: clamp(180px, 28vw, 371px); }
.home .community { position: relative; padding-block: clamp(var(--space-6), 10vw, 120px); overflow: hidden; }
.home .community__veil { position: absolute; inset: 0; z-index: 1; background: rgba(10,10,10,0.7); }
.home .community__content { position: relative; z-index: 2; }
.home .community__eyebrow { text-align: center; font-size: var(--type-body-sm-size); margin-bottom: var(--space-2); }
.home .community__grid { margin-top: var(--space-5); display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.home .faq-sec { display: grid; gap: var(--space-5); grid-template-columns: 1fr; align-items: start; }
.home .faq-sec__card { position: relative; margin-top: 38px; width: 100%; min-height: 271px; border-radius: var(--radius-lg); background: var(--bg-800); border: 1px solid var(--border-input); overflow: hidden; }
.home .faq-sec__card-glow { position: absolute; top: 3px; right: -70px; width: 146px; height: 146px; background: radial-gradient(ellipse at center, rgba(255, 173, 53, 0.35) 0%, transparent 70%); pointer-events: none; }
.home .faq-sec__card-body { position: relative; z-index: 1; padding: 34px; max-width: 315px; display: flex; flex-direction: column; gap: var(--space-2); align-items: flex-start; }
.home .faq-sec__card-title { font-size: var(--type-h3-size); line-height: var(--type-h3-line-height); font-weight: 500; }
.home .faq-sec__card-desc { font-size: var(--type-body-sm-size); line-height: 22px; margin-bottom: var(--space-1); }
.home .faq-sec__card .btn { min-width: 144px; min-height: 54px; border-radius: var(--radius); color: var(--bg-black); }
.home .faq-sec__headset { position: absolute; top: 34px; right: -15px; z-index: 1; pointer-events: none; }
.home .faq-sec__headset svg { width: 204px; height: 203px; }
.home .faq-sec__list { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 768px) {
  .home .why__head { grid-template-columns: 1fr 1fr; align-items: center; }
  .home .why__grid { grid-template-columns: repeat(4, 1fr); }
  .home .decision__body { grid-template-columns: minmax(0, 558px) minmax(0, 1fr); gap: var(--space-6); align-items: center; }
  .home .product__grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
  @media (hover: hover) {
    .home .product-card:hover { transform: translateY(-16px); }
  }
  .home .case { grid-template-columns: 1.1fr 1fr; padding: var(--space-6); }
  .home .community__grid { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }
  .home .faq-sec { grid-template-columns: minmax(0, 566fr) minmax(0, 638fr); gap: 26px; max-width: 1230px; }
}
@media (max-width: 767px) {
  .home .faq-sec__card { margin-top: var(--space-4); }
  .home .faq-sec__card-body { max-width: none; padding-bottom: 88px; }
  .home .faq-sec__headset { top: auto; right: var(--space-3); bottom: var(--space-3); }
  .home .faq-sec__headset svg { width: 96px; height: 96px; }
}
@media (min-width: 1024px) {
  .home .community__grid { grid-template-columns: repeat(4, 1fr); max-width: none; }
}

/* ===== About page (scoped under .about) ===== */
.about .about-hero { position: relative; margin-top: -74px; height: clamp(600px, 60.42vw, 870px); overflow: hidden; background: var(--bg-page); }
.about .about-hero__bg-wrap { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.about .about-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 71%; will-change: opacity; transform: translateZ(0); }
.about .about-hero__glow { position: absolute; left: 50%; top: 71%; z-index: 1; width: min(1392px, 96.7vw); height: min(348px, 40vw); transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255, 158, 15, 0.3); filter: blur(72px); pointer-events: none; }
.about .about-hero__veil { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 32%), linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.35) 72%, #000000 88%); }
.about .about-hero__content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: calc(74px + clamp(48px, 4.72vw, 68px)); box-sizing: border-box; }
.about .about-hero__title { margin: clamp(28px, 3.1vw, 45px) 0 0; max-width: 720px; font-size: clamp(40px, 5vw, 72px); line-height: 1.11; font-weight: 500; letter-spacing: -0.01em; }
.about .about-hero__sub { margin: clamp(20px, 3.1vw, 45px) auto 0; max-width: 560px; color: #b3b3b3; font-size: var(--type-body-size); line-height: var(--type-body-line-height); }
.about .about-story { position: relative; display: flex; flex-direction: column; min-height: clamp(560px, 61.4vw, 884px); overflow: hidden; background: var(--bg-page); }
.about .about-story__content { flex: 1 1 auto; padding-top: clamp(80px, 12vw, 140px); padding-bottom: clamp(24px, 4vw, 48px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.about .about-story__wave { flex: 0 0 auto; width: 100%; aspect-ratio: 2100 / 424; max-height: 424px; position: relative; overflow: hidden; pointer-events: none; }
.about .about-story__wave::before { content: ''; position: absolute; inset: 0 0 auto; height: 42%; z-index: 1; pointer-events: none; background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.6) 45%, transparent 100%); }
.about .about-story__bg { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transform: translateZ(0); }
.about .about-story__text { width: 100%; max-width: 900px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); font-size: clamp(18px, 2.2vw, 28px); line-height: 1.55; font-weight: 400; color: var(--text-secondary); }
.about .about-story__text p { margin: 0; text-align: center; }
.about .about-story__lead { color: var(--text-primary); font-size: clamp(20px, 2.5vw, 32px); line-height: 1.45; font-weight: 500; letter-spacing: -0.03em; }
.about .about-goals { padding-bottom: clamp(var(--space-6), 10vw, 100px); }
.about .about-goals__head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: var(--space-5); }
.about .about-goals__title { font-size: clamp(32px, 4.5vw, var(--type-h2-size)); line-height: 1.15; font-weight: var(--type-h2-weight); letter-spacing: var(--type-h2-letter-spacing); }
.about .about-goals__intro { margin-top: var(--space-2); font-size: var(--type-body-sm-size); line-height: 22px; }
.about .about-goals__panel { max-width: 1240px; margin-inline: auto; border-radius: 20px; background: var(--bg-900); border: 1px solid var(--border-input); overflow: hidden; }
.about .about-goals__visual { position: relative; aspect-ratio: 1240 / 775; background: #0e0b08; overflow: hidden; }
.about .about-goals__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; display: block; }
.about .about-goals__visual-glow { position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.95) 100%); pointer-events: none; }
.about .about-goals__cards { display: grid; gap: 0; grid-template-columns: 1fr; border-top: 1px solid var(--border-input); }
.about .goal-card { padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 32px); border-bottom: 1px solid var(--border-input); display: flex; flex-direction: row; gap: 24px; align-items: flex-start; }
.about .goal-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.about .goal-card:last-child { border-bottom: none; }
.about .goal-card__icon { flex-shrink: 0; }
.about .goal-card__title { font-size: var(--type-h4-size); line-height: var(--type-h4-line-height); font-weight: 500; }
.about .goal-card__desc { font-size: var(--type-body-sm-size); line-height: 22px; max-width: 320px; }
@media (min-width: 768px) {
  .about .about-goals__cards { grid-template-columns: repeat(3, 1fr); }
  .about .goal-card { border-bottom: none; border-right: 1px solid var(--border-input); }
  .about .goal-card:last-child { border-right: none; }
}

/* ===== PageHero (.page-hero) — shared ===== */
.page-hero { position: relative; margin-top: -74px; height: clamp(600px, 60.42vw, var(--hero-h, 870px)); overflow: hidden; background: var(--bg-page); padding-block: 0; }
.page-hero__bg-wrap { position: absolute; top: -20.69%; left: max(6.8vw, calc((100vw - var(--bp-desktop)) / 2 + 98px)); width: min(1704px, 118.33vw); height: 110.23%; z-index: 0; overflow: hidden; }
.page-hero__bg-wrap--full { top: 0; left: 0; width: 100%; height: 100%; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-video-position, 58% 68%); }
.page-hero__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 32%), linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.35) 72%, #000000 88%); }
.page-hero__frame { position: relative; z-index: 2; width: 100%; max-width: var(--bp-desktop); height: 100%; margin-inline: auto; padding-inline: clamp(var(--space-2), 6.94vw, 100px); padding-top: clamp(86px, 11.11vw, 160px); padding-bottom: var(--space-5); }
.page-hero__content { width: 100%; max-width: 550px; display: flex; flex-direction: column; align-items: flex-start; }
.page-hero__title { margin-top: 44px; font-size: clamp(40px, 5vw, 72px); line-height: 1.11; font-weight: 500; letter-spacing: -0.01em; white-space: pre-line; word-break: keep-all; max-width: 489px; }
.page-hero__sub { margin-top: var(--space-3); max-width: 550px; font-size: var(--type-body-size); line-height: var(--type-body-line-height); }
.page-hero__bullets { list-style: none; margin-top: var(--space-4); display: flex; flex-direction: column; gap: 12px; }
.page-hero__bullets li { display: flex; align-items: center; gap: 12px; font-size: 18px; line-height: 24px; color: var(--text-primary); }
.page-hero__extra { margin-top: var(--space-3); }
.hero-bullet-check { flex: none; display: block; }

/* ===== Features page (scoped under .features) ===== */
.features .platform { display: grid; gap: var(--space-5); grid-template-columns: 1fr; align-items: center; padding-bottom: var(--space-6); }
.features .platform__title { font-size: clamp(32px, 3.75vw, 54px); line-height: 1.22; font-weight: 500; letter-spacing: -0.01em; }
.features .platform__intro { margin-top: var(--space-2); max-width: 500px; font-size: var(--type-body-sm-size); line-height: 22px; }
.features .platform__grid { margin-top: var(--space-4); display: grid; gap: 24px 24px; grid-template-columns: 1fr; max-width: 612px; }
.features .platform__item { display: flex; gap: 24px; align-items: flex-start; }
.features .platform__item-copy { flex: 1; min-width: 0; padding-top: 2px; }
.features .platform__item-title { font-size: var(--type-body-size); line-height: 22px; font-weight: 500; margin-bottom: 4px; }
.features .platform__item-desc { font-size: var(--type-body-sm-size); line-height: 22px; }
.features .platform__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-input); aspect-ratio: 1494 / 840; background: var(--bg-900); min-height: 280px; }
.features .platform__media video { width: 100%; height: 100%; object-fit: cover; object-position: 18% center; display: block; }
@media (min-width: 1024px) {
  .features .platform { grid-template-columns: minmax(0, 526px) minmax(0, 1fr); gap: var(--space-4); align-items: start; }
  .features .platform__grid { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .features .platform__media { margin-top: 48px; }
}

/* ===== Developer DEMO (scoped under .developer-demo) ===== */
.developer-demo .demo { display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center; }
.developer-demo .demo__title { position: relative; padding-left: 17px; font-size: var(--type-h3-size); line-height: 1.4; font-weight: 500; color: var(--text-primary); }
.developer-demo .demo__title::before { content: ''; position: absolute; top: 8%; left: 0; width: 2px; height: 80%; background: var(--brand-500); }
.developer-demo .demo__desc { margin-top: var(--space-3); font-size: var(--type-body-sm-size); line-height: 30px; }
.developer-demo .demo__actions { margin-top: var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-2); }
.developer-demo .demo__media { position: relative; aspect-ratio: 16 / 9; min-height: 240px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-input); }
.developer-demo .demo__video { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .developer-demo .demo { grid-template-columns: 1fr 1fr; }
}

/* ===== Developer SDK (scoped under .developer-sdk) ===== */
.developer-sdk .sdk__list { display: grid; grid-template-columns: 1fr; gap: var(--space-6) var(--space-4); list-style: none; padding-bottom: var(--space-4); }
.developer-sdk .sdk__item { position: relative; min-height: 178px; padding: var(--space-4); border-radius: var(--radius-lg); background: var(--bg-900); border: 1px solid var(--border-input); }
.developer-sdk .sdk__lang { font-size: var(--type-h4-size); line-height: var(--type-h4-line-height); font-weight: 500; color: var(--text-primary); }
.developer-sdk .sdk__tag { position: absolute; top: var(--space-4); right: var(--space-4); font-size: var(--type-caption-size); color: var(--brand-500); letter-spacing: 1px; }
.developer-sdk .sdk__btn { position: absolute; left: 50%; bottom: -27px; transform: translateX(-50%); display: block; width: 139px; height: var(--spec-control-h); line-height: var(--spec-control-h); text-align: center; font-size: var(--type-body-size); color: var(--bg-900); background: var(--brand-500); border-radius: var(--radius-control); text-decoration: none; transition: filter 0.2s; }
.developer-sdk .sdk__btn:hover { filter: brightness(1.08); }
@media (min-width: 768px) {
  .developer-sdk .sdk__list { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Developer Document (scoped under .developer-document) ===== */
.developer-document .docs { display: grid; grid-template-columns: 1fr; gap: var(--space-4); padding-top: var(--space-5); padding-bottom: var(--space-6); }
.developer-document .docs-nav ul { display: flex; flex-wrap: wrap; gap: var(--space-1); list-style: none; }
.developer-document .docs-nav li a { display: block; height: 45px; line-height: 45px; padding: 0 var(--space-2); border-radius: var(--radius-control); border: 1px solid var(--border-input); background: var(--bg-900); color: var(--text-secondary); font-size: var(--type-body-sm-size); text-align: center; text-decoration: none; transition: color 0.2s, background-color 0.2s, border-color 0.2s; white-space: nowrap; }
.developer-document .docs-nav li a:hover { color: var(--brand-500); border-color: var(--brand-500); }
.developer-document .docs-nav li.on a { background: var(--brand-500); border-color: var(--brand-500); color: var(--bg-900); }
.developer-document .docs-main { min-width: 0; display: flex; flex-direction: column; gap: var(--space-5); }
.developer-document .docs-mod { scroll-margin-top: 90px; }
.developer-document .docs-hd { border-bottom: 1px solid var(--border-input); padding-bottom: var(--space-2); font-size: var(--type-h4-size); line-height: var(--type-h4-line-height); font-weight: 500; color: var(--text-primary); }
.developer-document .docs-bd { padding-top: var(--space-3); }
.developer-document .docs-para { font-size: var(--type-body-sm-size); line-height: 30px; margin-bottom: var(--space-2); }
.developer-document .docs-pre { margin: var(--space-2) 0; padding: var(--space-2); border-radius: var(--radius-sm); background: var(--bg-800); border: 1px solid var(--border-input); color: var(--text-secondary); font-size: var(--type-caption-size); line-height: 1.5; overflow-x: auto; white-space: pre-wrap; word-break: break-all; }
.developer-document .docs-meta { font-size: var(--type-body-sm-size); line-height: 22px; color: var(--text-secondary); margin-bottom: var(--space-1); }
.developer-document .docs-table-wrap { margin-top: var(--space-3); overflow-x: auto; }
.developer-document .docs-table-caption { font-size: var(--type-body-sm-size); font-weight: 500; color: var(--text-primary); margin-bottom: var(--space-1); }
.developer-document .api-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: var(--type-body-sm-size); }
.developer-document .api-table th, .developer-document .api-table td { border: 1px solid var(--border-input); padding: var(--space-2); text-align: center; color: var(--text-secondary); }
.developer-document .api-table th { background: var(--bg-900); color: var(--text-primary); font-weight: 500; }
.developer-document .api-table td:first-child { text-align: left; color: var(--text-primary); }
.developer-document .docs-note { margin-top: var(--space-2); font-size: var(--type-body-sm-size); line-height: 22px; color: var(--text-secondary); }
.developer-document .docs-note--warn { color: var(--brand-500); }
@media (min-width: 1024px) {
  .developer-document .docs { grid-template-columns: 235px 1fr; align-items: start; }
  .developer-document .docs-nav { position: sticky; top: 90px; }
  .developer-document .docs-nav ul { flex-direction: column; flex-wrap: nowrap; }
  .developer-document .docs-nav li { margin-bottom: var(--space-2); }
  .developer-document .docs-nav li a { padding: 0 var(--space-3); }
}

/* ===== Contact page (scoped under .contact-page) ===== */
.contact-page { background: var(--bg-page); }
.contact-page .contact-main { position: relative; margin-top: -74px; min-height: clamp(600px, 58.68vw, 845px); padding-top: clamp(86px, 12.08vw, 174px); padding-bottom: 0; overflow: hidden; background: var(--bg-page); }
.contact-page .contact-main__glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.contact-page .contact-main__glow--a { top: 38%; right: max(4%, calc((100vw - var(--bp-desktop)) / 2 + 20px)); width: min(400px, 30vw); height: min(400px, 30vw); background: radial-gradient(circle, rgba(255, 173, 53, 0.4) 0%, rgba(255, 173, 53, 0.14) 42%, transparent 70%); filter: blur(64px); }
.contact-page .contact-main__glow--b { top: 40%; right: max(3%, calc((100vw - var(--bp-desktop)) / 2 + 8px)); width: min(340px, 26vw); height: min(340px, 26vw); opacity: 0.3; background: radial-gradient(circle, rgba(255, 173, 53, 0.55) 0%, transparent 65%); filter: blur(48px); }
.contact-page .contact-main__frame { position: relative; z-index: 1; width: 100%; max-width: var(--bp-desktop); margin-inline: auto; padding-inline: clamp(var(--space-2), 6.94vw, 100px); display: grid; gap: clamp(32px, 7.78vw, 112px); grid-template-columns: minmax(0, 418px) minmax(0, var(--spec-contact-form-w)); align-items: start; }
.contact-page .contact-main__title { margin-top: 44px; font-size: clamp(40px, 5vw, 72px); line-height: 1.11; font-weight: 500; letter-spacing: -0.01em; max-width: 418px; }
.contact-page .contact-main__rows { margin-top: clamp(48px, 7.85vw, 113px); display: flex; flex-direction: column; gap: 34px; }
.contact-page .contact-row { display: flex; gap: 24px; align-items: flex-start; }
.contact-page .contact-row__copy { display: flex; flex-direction: column; gap: 4px; padding-top: 2px; }
.contact-page .contact-row__label { font-size: 14px; line-height: 22px; }
.contact-page .contact-row__value { font-size: 20px; font-weight: 500; line-height: 1.2; letter-spacing: -0.04em; }
.contact-page .contact-form { box-sizing: border-box; width: 100%; max-width: var(--spec-contact-form-w); min-height: var(--spec-contact-form-h); padding: var(--spec-contact-form-pad); border-radius: 29px; background: var(--bg-900); border: 1px solid var(--border-input); display: flex; flex-direction: column; gap: var(--spec-field-gap); justify-self: end; overflow: hidden; }
.contact-page .contact-form__row { display: grid; gap: var(--spec-name-col-gap); grid-template-columns: 1fr 1fr; width: 100%; min-width: 0; }
.contact-page .contact-form .field { width: 100%; min-width: 0; box-sizing: border-box; }
.contact-page .contact-form .field__input { width: 100%; height: var(--spec-control-h); min-height: var(--spec-control-h); }
.contact-page .contact-form .field__input--area { height: var(--spec-textarea-h); min-height: var(--spec-textarea-h); }
.contact-page .contact-form__submit { align-self: flex-start; width: var(--spec-btn-contact-w); max-width: 100%; flex-shrink: 0; }
@media (max-width: 1023px) {
  .contact-page .contact-main__frame { grid-template-columns: 1fr; gap: var(--space-5); }
  .contact-page .contact-form { justify-self: stretch; width: 100%; min-height: 0; }
  .contact-page .contact-form__row { grid-template-columns: 1fr; width: 100%; }
}

/* ===== Blog page (scoped under .blog-page) ===== */
.blog-page .blog-hero { position: relative; margin-top: -74px; height: clamp(400px, 42vw, 600px); overflow: hidden; }
.blog-page .blog-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.blog-page .blog-hero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, #000 100%); }
.blog-page .blog-hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: 74px; text-align: center; align-items: center; }
.blog-page .blog-hero__title { margin-top: var(--space-3); font-size: clamp(36px, 4.5vw, 54px); line-height: 1.15; font-weight: 500; }
.blog-page .blog-hero__sub { margin-top: var(--space-2); max-width: 520px; font-size: var(--type-body-sm-size); }
.blog-page .blog-list__filters { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-bottom: var(--space-5); }
.blog-page .blog-filter { min-height: 44px; padding: 0 18px; border-radius: var(--radius-control); border: 1px solid var(--border-input); background: transparent; color: var(--text-secondary); font: inherit; font-size: var(--type-body-sm-size); cursor: pointer; }
.blog-page .blog-filter--active { border-color: var(--brand-500); color: var(--brand-500); }
.blog-page .blog-grid { display: grid; gap: var(--space-3); grid-template-columns: 1fr; }
.blog-page .blog-card { padding: var(--space-4); border-radius: var(--radius-lg); background: var(--bg-900); border: 1px solid var(--border-input); display: flex; flex-direction: column; gap: var(--space-2); min-height: 551px; }
.blog-page .blog-card__thumb { height: 200px; border-radius: var(--radius); overflow: hidden; margin-bottom: var(--space-2); background: #1a1a1a; }
.blog-page .blog-card__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.blog-page .blog-card__tag { font-size: var(--type-caption-size); color: var(--brand-500); }
.blog-page .blog-card__title { font-size: var(--type-h4-size); line-height: var(--type-h4-line-height); font-weight: 500; }
.blog-page .blog-card__excerpt { font-size: var(--type-body-sm-size); line-height: 22px; flex: 1; }
.blog-page .blog-card__date { font-size: var(--type-caption-size); color: var(--text-tertiary); }
.blog-page .blog-list__more { margin-top: var(--space-5); text-align: center; }
@media (min-width: 768px) {
  .blog-page .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* @@PAGE_STYLES@@ */
