@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/space-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0A0A0A;
  --ink-deep: #0B0B0A;
  --blue: #1A4DFF;
  --blue-light: #6B8CFF;
  --white: #FFFFFF;
  --paper: #F4F3F1;
  --line: #E6E4E0;
  --line-dark: rgba(255,255,255,0.14);
  --mute: #6B6B68;
  --mute-dark: #8E8E88;
  --faint: #B4B4B0;
  --sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.16,1,.3,1);
  --shell: clamp(20px,5vw,64px);
  --wrap: 1360px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: var(--ink); }
a:hover { color: var(--blue); }
img { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.wrap { max-width: var(--wrap); margin: 0 auto; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
}
.section { padding: clamp(72px,9vw,148px) var(--shell); }
.section-tight { padding: 0 var(--shell) clamp(72px,9vw,148px); }
.section-dark { background: var(--ink-deep); }

.sec-head {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: clamp(20px,3vw,48px); align-items: end; margin-bottom: clamp(40px,5vw,80px);
}
.sec-title {
  font-weight: 700; font-size: clamp(32px,4.6vw,68px); line-height: 0.94;
  letter-spacing: -0.045em; color: var(--ink); max-width: 20ch; text-wrap: pretty;
}
.section-dark .sec-title { color: var(--white); }
.section-dark .eyebrow, .compare-band .eyebrow, .contact-panel .eyebrow { color: var(--blue-light); }
.sec-head-row {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; padding-bottom: clamp(28px,3.5vw,52px); border-bottom: 1px solid var(--line);
  margin-bottom: clamp(28px,3.5vw,52px);
}
.sec-head-stack { display: flex; flex-direction: column; gap: clamp(14px,1.6vw,22px); }
.link-more {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; padding-bottom: 6px; border-bottom: 1px solid var(--ink);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.link-more:hover { color: var(--blue); border-color: var(--blue); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--sans); font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  padding: 17px 28px; border-radius: 2px; border: none; cursor: pointer; text-align: center;
  transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease), border-color .45s var(--ease);
}
.btn-primary { color: var(--white); background: var(--ink); }
.btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { color: var(--blue); border-color: var(--blue); }
.btn-light { color: var(--ink); background: var(--white); }
.btn-light:hover { transform: translateY(-4px); color: var(--ink); }
.btn-sm { font-size: 14px; padding: 11px 20px; gap: 10px; }
.btn-arrow { font-family: var(--mono); font-size: 14px; }
.w-full { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--shell);
  min-height: clamp(62px,6.4vw,82px);
  display: flex; align-items: center; justify-content: space-between; gap: clamp(16px,2vw,32px);
}
.brand {
  flex-shrink: 0;
  font-weight: 700; font-size: clamp(14.5px,1.4vw,17px); letter-spacing: -0.035em;
  color: var(--ink); white-space: nowrap;
}
.brand-dot { color: var(--blue); }
.brand-logo { display: block; width: auto; max-width: 100%; flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: clamp(14px,1.4vw,22px); }
.main-nav-link {
  display: inline-flex; align-items: center; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); padding: 4px 0;
  white-space: nowrap; transition: color .3s var(--ease);
}
.main-nav-link:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: clamp(12px,1.2vw,20px); }
.header-tel {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--mute);
  white-space: nowrap; transition: color .3s var(--ease);
}
.header-tel:hover { color: var(--ink); }
.nav-toggle {
  display: none; width: 40px; height: 40px; flex-direction: column; align-items: flex-end;
  justify-content: center; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); }
.nav-toggle span:last-child { width: 15px; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--line); padding: 8px var(--shell) 28px; }
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav-link {
  font-size: 19px; font-weight: 500; letter-spacing: -0.025em;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav .header-tel { padding: 18px 0 14px; }

@media (max-width: 1279px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

.hero { padding: clamp(44px,6vw,88px) var(--shell) clamp(44px,5vw,76px); }
.hero-kicker {
  display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  animation: riseIn .3s var(--ease) both;
}
.hero-kicker::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.hero-title {
  font-weight: 700; font-size: clamp(46px,8.8vw,128px); line-height: 0.89; letter-spacing: -0.048em;
  margin: clamp(22px,2.6vw,40px) 0 0; max-width: 15ch; text-wrap: pretty;
  animation: riseIn .3s var(--ease) .03s both;
}
.hero-title .brand-dot { color: var(--blue); }
.hero-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: clamp(26px,3.5vw,64px); align-items: end; margin-top: clamp(34px,4vw,60px);
}
.hero-lead {
  font-size: clamp(16px,1.35vw,19px); line-height: 1.6; color: var(--mute); max-width: 46ch;
  text-wrap: pretty; animation: riseIn .3s var(--ease) .06s both;
}
.hero-side { display: flex; flex-direction: column; gap: clamp(22px,2.4vw,32px); animation: riseIn .3s var(--ease) .09s both; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-link {
  display: inline-flex; align-items: center; font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  padding: 17px 20px; border-bottom: 1px solid var(--line);
  transition: border-color .45s var(--ease), color .45s var(--ease);
}
.hero-link:hover { color: var(--blue); border-color: var(--blue); }
.hero-note { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.shot-band { background: var(--paper); padding: clamp(36px,4.5vw,72px) var(--shell) clamp(40px,5vw,80px); }
.shot-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: clamp(22px,2.6vw,36px);
}
.showcase {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,340px),1fr));
  gap: clamp(20px,2.6vw,40px);
}
.browser {
  display: block; background: var(--white);
  border: 1px solid var(--line); border-radius: 3px; overflow: hidden;
  transition: transform .6s var(--ease);
}
.browser:hover { transform: translateY(-4px); }
.browser-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 14px clamp(12px,1.2vw,16px) 16px; border-top: 1px solid var(--line);
}
.browser-name { font-weight: 500; font-size: clamp(15px,1.2vw,17px); letter-spacing: -0.025em; }
.browser-type {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute); text-align: right;
}
.browser-bar {
  display: flex; align-items: center; gap: clamp(10px,1.5vw,16px);
  padding: 10px clamp(10px,1.2vw,14px); border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-dots i { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser-url {
  flex: 1; min-width: 0; text-align: center; background: var(--paper); border-radius: 2px;
  padding: 5px 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-spacer { width: 39px; flex-shrink: 0; }
.browser-shot { display: block; width: 100%; height: auto; }
.shot-caption {
  max-width: var(--wrap); margin: clamp(14px,1.6vw,20px) auto 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute);
}

.stats-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.stats-grid {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(36px,4vw,60px) var(--shell);
  display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: clamp(24px,3vw,40px);
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-value { font-weight: 700; font-size: clamp(32px,3.6vw,52px); line-height: 1; letter-spacing: -0.045em; }
.stat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }

.rule-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(max(290px,30%),1fr)); column-gap: clamp(24px,4vw,72px); }
.rule-grid-2 { grid-template-columns: repeat(auto-fit,minmax(max(300px,45%),1fr)); column-gap: clamp(28px,4vw,96px); }
.rule {
  border-top: 1px solid var(--line); padding: clamp(22px,2.4vw,30px) 0 clamp(26px,3vw,38px);
  display: flex; flex-direction: column; gap: 12px;
}
.rule-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--blue); }
.rule-title { font-weight: 500; font-size: clamp(20px,1.85vw,26px); line-height: 1.15; letter-spacing: -0.03em; }
.rule-text { font-size: 15.5px; line-height: 1.62; color: var(--mute); max-width: 40ch; text-wrap: pretty; }
.section-dark .rule { border-top-color: var(--line-dark); }
.section-dark .rule-num { color: rgba(255,255,255,0.55); }
.section-dark .rule-title { color: var(--white); font-size: clamp(19px,1.75vw,24px); line-height: 1.18; }
.section-dark .rule-text { color: var(--mute-dark); font-size: 15px; }

.step-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: clamp(20px,2.4vw,32px); }
.step { border-top: 1px solid var(--ink); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.step-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--blue); }
.step-title { font-weight: 500; font-size: 18px; line-height: 1.2; letter-spacing: -0.028em; }
.step-text { font-size: 14.5px; line-height: 1.6; color: var(--mute); text-wrap: pretty; }

.quote-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  column-gap: clamp(28px,4vw,72px); row-gap: clamp(32px,4vw,56px);
}
.quote { border-top: 1px solid var(--line); padding-top: clamp(24px,2.6vw,34px); display: flex; flex-direction: column; gap: clamp(24px,3vw,36px); }
.quote-text { font-size: clamp(18px,1.7vw,23px); line-height: 1.42; letter-spacing: -0.025em; text-wrap: pretty; }
.quote-who { display: flex; flex-direction: column; gap: 4px; }
.quote-name { font-weight: 500; font-size: 15px; letter-spacing: -0.02em; }
.quote-org { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }

.work-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,340px),1fr)); gap: clamp(24px,3vw,44px); }
.work-card { display: flex; flex-direction: column; gap: 16px; color: var(--ink); animation: fadeUp .4s var(--ease) both; }
.work-shot { overflow: hidden; background: var(--paper); aspect-ratio: 4/3; }
.work-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.work-card:hover .work-shot img { transform: scale(1.04); }
.work-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.work-name { font-weight: 500; font-size: clamp(17px,1.5vw,21px); letter-spacing: -0.028em; }
.work-type { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); text-align: right; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: clamp(14px,2vw,28px);
  padding-bottom: clamp(24px,3vw,40px); border-bottom: 1px solid var(--line);
  margin-bottom: clamp(28px,3.5vw,52px);
}
.filter-link {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute); padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color .3s var(--ease);
}
.filter-link:hover { color: var(--ink); }
.filter-link.is-active { color: var(--blue); border-bottom-color: var(--blue); }

.cta-band { background: var(--blue); padding: clamp(72px,9vw,150px) var(--shell); }
.cta-inner {
  max-width: var(--wrap); margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: clamp(28px,4vw,72px); align-items: end;
}
.cta-heading { font-weight: 700; font-size: clamp(36px,5.6vw,84px); line-height: 0.92; letter-spacing: -0.045em; color: var(--white); max-width: 14ch; text-wrap: pretty; }
.cta-side { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(24px,3vw,36px); }
.cta-text { font-size: clamp(15.5px,1.3vw,18px); line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 44ch; text-wrap: pretty; }

.site-footer { background: var(--ink-deep); padding: clamp(64px,8vw,120px) var(--shell) 0; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; }
.footer-brand {
  display: block; font-weight: 700; font-size: clamp(30px,6.4vw,92px); line-height: 0.95;
  letter-spacing: -0.045em; color: var(--white); padding-bottom: clamp(40px,5vw,72px);
  border-bottom: 1px solid var(--line-dark); overflow-wrap: anywhere;
}
.footer-brand:hover { color: var(--white); }
.footer-logo { display: block; width: 100%; max-width: 880px; height: auto; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: clamp(32px,4vw,56px); padding: clamp(40px,5vw,64px) 0;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.footer-link { font-size: 14.5px; color: var(--mute-dark); transition: color .3s var(--ease); }
.footer-link:hover { color: var(--white); }
.footer-text { font-size: 15px; line-height: 1.65; color: var(--mute-dark); max-width: 34ch; text-wrap: pretty; }
.footer-addr { font-size: 14.5px; line-height: 1.6; color: var(--mute-dark); }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.16); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--mute-dark);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.social-link:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.footer-bottom {
  max-width: var(--wrap); margin: 0 auto; border-top: 1px solid var(--line-dark);
  padding: 22px 0 30px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: #8E8E88;
}
.footer-bottom a { color: #8E8E88; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

.page-hero {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: clamp(40px,5.5vw,84px) var(--shell) clamp(40px,5vw,72px);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
  animation: riseIn .3s var(--ease) both;
}
.breadcrumb a { color: var(--mute); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-current { color: var(--blue); }
.page-hero-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: clamp(22px,3vw,56px); align-items: end; margin-top: clamp(22px,2.6vw,40px);
}
.page-title {
  font-weight: 700; font-size: clamp(38px,6.4vw,92px); line-height: 0.92; letter-spacing: -0.048em;
  max-width: 17ch; text-wrap: pretty; animation: riseIn .3s var(--ease) .03s both;
}
.page-sub {
  font-size: clamp(15.5px,1.3vw,18px); line-height: 1.62; color: var(--mute); max-width: 46ch;
  text-wrap: pretty; animation: riseIn .3s var(--ease) .06s both;
}

.page-body { padding: clamp(48px,6vw,100px) var(--shell) clamp(72px,9vw,148px); }
.page-content { max-width: var(--wrap); margin: 0 auto; }
.page-content > p, .page-content > ul, .page-content > ol {
  font-size: clamp(15.5px,1.25vw,17.5px); line-height: 1.65; color: var(--mute); max-width: 68ch; margin: 0 0 20px;
}
.page-content > h2 { font-weight: 700; font-size: clamp(28px,3.4vw,48px); line-height: 0.98; letter-spacing: -0.042em; margin: clamp(36px,4vw,64px) 0 20px; max-width: 18ch; text-wrap: pretty; }
.page-content > h3 { font-weight: 500; font-size: clamp(20px,1.85vw,26px); line-height: 1.15; letter-spacing: -0.03em; margin: 28px 0 12px; }
.compare-band { background: var(--ink-deep); padding: clamp(32px,4vw,64px); margin-top: clamp(48px,6vw,88px); }
.compare-band .eyebrow { display: block; margin-bottom: 16px; }
.compare-band h2 { font-weight: 700; font-size: clamp(26px,3.2vw,44px); line-height: 0.98; letter-spacing: -0.042em; color: var(--white); margin-bottom: clamp(28px,3.5vw,48px); max-width: 18ch; }
.page-content a:not(.btn) { color: var(--blue); }
.page-content strong { color: var(--ink); }

.split {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
  gap: clamp(28px,4vw,72px); align-items: start;
}
.split-stack { display: flex; flex-direction: column; gap: clamp(16px,1.8vw,24px); }
.split-title { font-weight: 700; font-size: clamp(28px,3.4vw,48px); line-height: 0.98; letter-spacing: -0.042em; max-width: 16ch; text-wrap: pretty; }
.split-lead { font-size: clamp(15.5px,1.25vw,17.5px); line-height: 1.62; color: var(--mute); max-width: 46ch; text-wrap: pretty; }
.split-shot { overflow: hidden; background: var(--paper); aspect-ratio: 4/3; }
.split-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.split:hover .split-shot img { transform: scale(1.03); }
.stack-lg { display: flex; flex-direction: column; gap: clamp(56px,7vw,120px); }

.ticks { list-style: none; margin: clamp(4px,1vw,12px) 0 0; padding: 0; display: flex; flex-direction: column; }
.ticks li {
  display: flex; align-items: flex-start; gap: 14px; padding: 13px 0;
  border-top: 1px solid var(--line); font-size: 15px; line-height: 1.5; color: var(--ink);
}
.ticks li::before { content: '+'; font-family: var(--mono); font-size: 11px; color: var(--blue); flex-shrink: 0; padding-top: 2px; }
.ticks-plain li { border-top: none; padding: 5px 0; }

.plan-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); column-gap: clamp(28px,4vw,72px); }
.plan {
  border-top: 1px solid var(--ink); padding: clamp(22px,2.4vw,30px) 0 clamp(32px,4vw,48px);
  display: flex; flex-direction: column; gap: clamp(20px,2.4vw,28px);
}
.plan-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.plan-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.plan-flag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.plan-price-row { display: flex; align-items: baseline; gap: 10px; }
.plan-price { font-weight: 700; font-size: clamp(40px,4.6vw,66px); line-height: 1; letter-spacing: -0.05em; }
.plan-unit { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.plan-tag { font-size: 15px; line-height: 1.55; color: var(--mute); max-width: 32ch; text-wrap: pretty; }
.plan .ticks li { padding: 12px 0; font-size: 14.5px; }

.compare { overflow-x: auto; }
.compare table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare th {
  font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); padding: 0 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.24); text-align: center;
}
.compare th:first-child { text-align: left; padding-left: 0; }
.compare td { font-size: 14.5px; color: var(--mute-dark); padding: 16px 12px; border-bottom: 1px solid rgba(255,255,255,0.12); text-align: center; }
.compare td:first-child { font-size: 15px; font-weight: 500; color: var(--white); padding-left: 0; text-align: left; }

.contact-grid {
  max-width: var(--wrap); margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: clamp(40px,5vw,96px); align-items: start;
}
.contact-panel { background: var(--ink-deep); padding: clamp(28px,3.4vw,44px); }
.contact-list { display: flex; flex-direction: column; margin-top: clamp(24px,3vw,36px); }
.contact-item { display: flex; flex-direction: column; gap: 6px; padding: clamp(16px,1.8vw,22px) 0; border-top: 1px solid var(--line-dark); }
.contact-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute-dark); }
.contact-value { font-size: 17px; line-height: 1.5; letter-spacing: -0.02em; color: var(--white); word-break: break-word; }
a.contact-value { transition: color .3s var(--ease); }
a.contact-value:hover { color: var(--blue); }

.form { display: flex; flex-direction: column; gap: clamp(22px,2.6vw,32px); }
.form-group { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: clamp(20px,2.4vw,32px); }
.form-group-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.field-input, .field-textarea, .field-select {
  width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid var(--line);
  background: transparent; color: var(--ink); font-family: var(--sans); font-size: 16px;
  outline: none; border-radius: 0; transition: border-color .3s var(--ease);
}
.field-textarea { line-height: 1.55; resize: vertical; }
.field-input:focus, .field-textarea:focus, .field-select:focus { border-bottom-color: var(--blue); }
.field-input::placeholder, .field-textarea::placeholder { color: var(--faint); }
.field-hint { font-size: 13px; line-height: 1.5; color: var(--mute); }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; }
.field-upload { font-family: var(--sans); font-size: 14px; color: var(--mute); }
.req { color: var(--blue); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: clamp(4px,1vw,12px); }
.form-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.form-error { font-size: 14.5px; line-height: 1.55; color: #C2261B; }
.form-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 8px; }
.form-link, .form-back { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); }
.form-link:hover, .form-back:hover { color: var(--blue); }
.form-ad, .detail-ad, .listing-ad { margin: 24px 0; }
.form-captcha { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.captcha-img img { display: block; border: 1px solid var(--line); }
.form-captcha input[type="text"] {
  width: 160px; padding: 12px 0; border: none; border-bottom: 1px solid var(--line);
  background: transparent; font-family: var(--sans); font-size: 16px; outline: none; border-radius: 0;
}
.form-captcha input[type="text"]:focus { border-bottom-color: var(--blue); }
.form-terms, .form-tos { font-size: 14px; line-height: 1.6; color: var(--mute); max-height: 220px; overflow-y: auto; border: 1px solid var(--line); padding: 16px; }
.form-tos-title { font-weight: 500; margin-bottom: 8px; color: var(--ink); }

.auth { max-width: 560px; margin: 0 auto; }
.auth-card { border-top: 1px solid var(--ink); padding-top: clamp(24px,2.6vw,34px); }
.auth-title { font-weight: 700; font-size: clamp(28px,3.4vw,48px); line-height: 0.98; letter-spacing: -0.042em; margin-bottom: 12px; }
.auth-title-sub { font-size: 15.5px; line-height: 1.62; color: var(--mute); margin-bottom: 28px; }
.auth-required { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }

.notice { border-top: 1px solid var(--ink); padding: clamp(24px,2.6vw,34px) 0; display: flex; flex-direction: column; gap: 12px; max-width: 70ch; }
.notice-title { font-weight: 700; font-size: clamp(24px,2.8vw,38px); line-height: 1; letter-spacing: -0.04em; }
.notice-body { font-size: 15.5px; line-height: 1.62; color: var(--mute); }
.notice-success { border-top-color: var(--blue); }
.notice-error { border-top-color: #C2261B; }
.notice-nav, .notice-payment { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

.listing-list, .result-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,380px),1fr)); gap: clamp(24px,3vw,44px); list-style: none; margin: 0; padding: 0; }
.listing-card, .result-card { display: flex; flex-direction: column; gap: 16px; }
.listing-thumb { display: block; overflow: hidden; background: var(--paper); aspect-ratio: 4/3; }
.listing-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.listing-card:hover .listing-thumb img { transform: scale(1.04); }
.listing-body, .result-detail { display: flex; flex-direction: column; gap: 8px; }
.listing-title a, .result-title a { font-weight: 500; font-size: clamp(17px,1.5vw,21px); letter-spacing: -0.028em; }
.listing-company, .listing-addr, .listing-tel, .listing-url, .listing-visits, .result-url, .result-tel {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--mute);
}
.listing-desc, .result-desc { font-size: 15px; line-height: 1.6; color: var(--mute); text-wrap: pretty; }
.listing-actions, .result-actions, .detail-actions, .subcat-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 4px; }
.listing-report, .result-report, .listing-edit-link, .listing-admin, .map-link {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute);
}
.listing-report:hover, .result-report:hover, .map-link:hover { color: var(--blue); }
.featured .listing-title a, .featured .result-title a { color: var(--blue); }

.subcat, .search-results, .account, .detail { max-width: var(--wrap); margin: 0 auto; }
.subcat-head, .search-head, .account-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(28px,3.5vw,52px); }
.subcat-title, .search-title, .card-title, .account-section-title {
  font-weight: 700; font-size: clamp(28px,3.4vw,48px); line-height: 0.98; letter-spacing: -0.042em;
}
.subcat-desc, .search-subhead, .page-intro { font-size: 15.5px; line-height: 1.62; color: var(--mute); max-width: 60ch; }
.subcat-toolbar, .l-sort, .sort { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: clamp(24px,3vw,40px); }
.sort-link, .subcat-nav-link, .search-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.sort-link:hover, .subcat-nav-link:hover, .search-cat:hover { color: var(--blue); }
.subcat-nav, .search-cats, .search-cat-list, .deep-links { display: flex; flex-wrap: wrap; gap: 16px; }
.pagging { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(32px,4vw,56px); padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; }
.be-first { font-size: 15.5px; line-height: 1.62; color: var(--mute); }

.detail-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: clamp(32px,4vw,64px); }
.detail-hero { overflow: hidden; background: var(--paper); }
.detail-hero-shot { display: block; width: 100%; height: clamp(240px,34vw,460px); object-fit: cover; object-position: top center; }
.detail-hero-body { padding: clamp(22px,2.6vw,34px) 0 0; display: flex; flex-direction: column; gap: 12px; }
.detail-title { font-weight: 700; font-size: clamp(30px,4vw,58px); line-height: 0.96; letter-spacing: -0.045em; }
.detail-subtitle, .detail-desc { font-size: clamp(15.5px,1.25vw,17.5px); line-height: 1.65; color: var(--mute); max-width: 64ch; text-wrap: pretty; }
.detail-cat-chip, .detail-meta-item { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.detail-meta { display: flex; flex-wrap: wrap; gap: 18px; }
.side-card, .detail-card, .cta-card, .get-listed-cta, .account-card, .attachment-box {
  border-top: 1px solid var(--line); padding: clamp(22px,2.4vw,30px) 0;
  display: flex; flex-direction: column; gap: 14px;
}
.side-card-head, .cta-title, .get-listed-title, .account-user {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
}
.info-row { display: flex; gap: 14px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14.5px; line-height: 1.5; }
.info-row-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); min-width: 110px; }
.account-table { width: 100%; border-collapse: collapse; }
.account-table th, .account-table td { text-align: left; padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.account-table th { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-row .social-link { border-color: var(--line); color: var(--mute); }
.social-row .social-link:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.detail-map iframe, .detail-video iframe { width: 100%; border: none; aspect-ratio: 16/9; }

.remark { padding: 14px var(--shell); font-size: 14.5px; line-height: 1.55; }
.remark-above-header { background: var(--ink); color: var(--white); }
.remark-above-header a { color: var(--white); }
.remark-below-header, .remark-above-footer { background: var(--paper); border-bottom: 1px solid var(--line); }
.remark-sidebar { padding: 0 0 32px; }
.site-utility {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  background: var(--ink); color: var(--white); padding: 9px var(--shell);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
}
.site-utility a { color: rgba(255,255,255,0.72); }
.site-utility a:hover { color: var(--white); }
.site-utility-links { display: flex; flex-wrap: wrap; gap: 16px; }

.info, .info_div, .status { font-size: 14.5px; line-height: 1.6; color: var(--mute); }
.sub { font-size: 13px; color: var(--mute); }

.page-lead { font-size: clamp(17px,1.5vw,21px); line-height: 1.55; color: var(--ink); max-width: 52ch; margin-bottom: clamp(32px,4vw,56px); text-wrap: pretty; }

/* engine hide flag: {*_disp} tokens resolve to this class when a field is empty */
.do_not_disp { display: none !important; }

@media (max-width: 700px) {
  .showcase {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; margin: 0 calc(var(--shell) * -1); padding: 0 var(--shell) 6px;
    -webkit-overflow-scrolling: touch;
  }
  .showcase .browser { flex: 0 0 82vw; scroll-snap-align: start; }
  .work-grid, .listing-list, .result-list { grid-template-columns: 1fr; }
  .footer-brand { font-size: clamp(26px,8vw,44px); }
  .hero-actions .btn, .hero-actions .hero-link { width: 100%; }
  .form-actions .btn { width: 100%; }
  .info-row { flex-direction: column; gap: 4px; }
  .info-row-label { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; transition-duration: .01ms !important; }
}
