@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");

:root {
  color-scheme: light;
  --bg-0: #f5f8fc;
  --bg-1: #f8fbff;
  --bg-2: #edf3fa;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-strong: #ffffff;
  --line: #c9d8ea;
  --line-strong: #b7c7db;
  --text: #102a4c;
  --muted: #52677f;
  --muted-strong: #314c67;
  --accent: #2f7fe8;
  --accent-2: #3a86ff;
  --accent-deep: #0b2d5c;
  --shadow: 0 28px 70px rgba(11, 45, 92, 0.1);
  --shadow-soft: 0 16px 36px rgba(11, 45, 92, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f5f8fc 54%, #edf3fa 100%);
  font-family: "SUIT", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
textarea,
select {
  font-family: "SUIT", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.loading-overlay-open {
  overflow: hidden;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

.page-shell {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.page-shell::after {
  content: none;
}

.inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(11, 45, 92, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(160px, 15vw, 176px);
  height: 46px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-copy {
  margin-left: auto;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(201, 216, 234, 0.95);
  border-radius: 16px;
  background: rgba(245, 248, 252, 0.94);
  box-shadow: 0 10px 22px rgba(11, 45, 92, 0.08);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
}

.footer-meta a {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.footer-meta a:active {
  color: var(--accent-deep);
}

.footer-meta a:focus-visible {
  outline: 2px solid rgba(47, 127, 232, 0.22);
  outline-offset: 2px;
}

.topbar-link {
  color: var(--accent-deep);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(11, 45, 92, 0.24);
}

.topbar-link:hover,
.topbar-link:focus-visible {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.showcase {
  margin-top: 14px;
}

.building-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(336px, 0.9fr);
  grid-template-areas:
    "stage copy"
    "stage actions";
  gap: 10px;
  align-items: stretch;
}

.showcase-stage,
.showcase-copy-card,
.showcase-action-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.showcase-stage {
  grid-area: stage;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  box-shadow: 0 30px 68px rgba(11, 45, 92, 0.16);
  background:
    linear-gradient(135deg, rgba(245, 248, 252, 0.98) 0%, rgba(233, 241, 249, 0.98) 42%, rgba(220, 231, 245, 0.98) 100%);
}

.showcase-stage::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.2) 44%, rgba(58, 134, 255, 0.08) 68%, transparent 72%);
  opacity: 0.64;
  pointer-events: none;
  z-index: 1;
}

.showcase-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0) 0%, rgba(245, 248, 252, 0.46) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(11, 45, 92, 0.06) 0 18px,
      rgba(11, 45, 92, 0.12) 18px 26px,
      transparent 26px 48px,
      rgba(11, 45, 92, 0.05) 48px 58px,
      transparent 58px 86px
    );
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 850ms ease,
    transform 1100ms ease;
  filter: saturate(1.02) contrast(1.05) brightness(0.96);
  background-color: #d9e3ef;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image:
    linear-gradient(120deg, rgba(11, 45, 92, 0.58) 0%, rgba(11, 45, 92, 0.32) 42%, rgba(47, 127, 232, 0.16) 100%),
    var(--slide-image),
    var(--slide-fallback);
  z-index: 0;
}

.showcase-slide--01 {
  --slide-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80");
  --slide-fallback: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%201000%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%236d86a8%22%2F%3E%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%23b6c9df%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23dfe8f3%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%221600%22%20height%3D%221000%22%20fill%3D%22url(%23g)%22%2F%3E%3Crect%20x%3D%22120%22%20y%3D%22170%22%20width%3D%22300%22%20height%3D%22620%22%20rx%3D%2222%22%20fill%3D%22%2327456f%22%20fill-opacity%3D%22.42%22%2F%3E%3Crect%20x%3D%22310%22%20y%3D%22100%22%20width%3D%22420%22%20height%3D%22710%22%20rx%3D%2226%22%20fill%3D%22%235c7698%22%20fill-opacity%3D%22.48%22%2F%3E%3Crect%20x%3D%22810%22%20y%3D%22130%22%20width%3D%22620%22%20height%3D%22650%22%20rx%3D%2218%22%20fill%3D%22%23d6e1ef%22%20fill-opacity%3D%22.42%22%2F%3E%3Cg%20stroke%3D%22%23f8fbff%22%20stroke-opacity%3D%22.24%22%3E%3Cpath%20d%3D%22M375%20100v710%22%2F%3E%3Cpath%20d%3D%22M440%20100v710%22%2F%3E%3Cpath%20d%3D%22M505%20100v710%22%2F%3E%3Cpath%20d%3D%22M570%20100v710%22%2F%3E%3Cpath%20d%3D%22M635%20100v710%22%2F%3E%3Cpath%20d%3D%22M700%20100v710%22%2F%3E%3Cpath%20d%3D%22M890%20130v650%22%2F%3E%3Cpath%20d%3D%22M975%20130v650%22%2F%3E%3Cpath%20d%3D%22M1060%20130v650%22%2F%3E%3Cpath%20d%3D%22M1145%20130v650%22%2F%3E%3Cpath%20d%3D%22M1230%20130v650%22%2F%3E%3Cpath%20d%3D%22M1315%20130v650%22%2F%3E%3C%2Fg%3E%3Crect%20y%3D%22745%22%20width%3D%221600%22%20height%3D%22255%22%20fill%3D%22%23b7cade%22%20fill-opacity%3D%22.34%22%2F%3E%3C%2Fsvg%3E");
}

.showcase-slide--02 {
  --slide-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
  --slide-fallback: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%201000%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%235d7699%22%2F%3E%3Cstop%20offset%3D%2250%25%22%20stop-color%3D%22%23a3b9d3%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23d6e2ef%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%221600%22%20height%3D%221000%22%20fill%3D%22url(%23g)%22%2F%3E%3Crect%20x%3D%22150%22%20y%3D%22180%22%20width%3D%22540%22%20height%3D%22590%22%20rx%3D%2224%22%20fill%3D%22%23214066%22%20fill-opacity%3D%22.35%22%2F%3E%3Crect%20x%3D%22740%22%20y%3D%22120%22%20width%3D%22280%22%20height%3D%22660%22%20rx%3D%2218%22%20fill%3D%22%233d5d85%22%20fill-opacity%3D%22.46%22%2F%3E%3Crect%20x%3D%221020%22%20y%3D%22150%22%20width%3D%22430%22%20height%3D%22620%22%20rx%3D%2222%22%20fill%3D%22%23d7e3f0%22%20fill-opacity%3D%22.4%22%2F%3E%3Cg%20stroke%3D%22%23f5f9ff%22%20stroke-opacity%3D%22.22%22%3E%3Cpath%20d%3D%22M230%20180h390%22%2F%3E%3Cpath%20d%3D%22M230%20250h390%22%2F%3E%3Cpath%20d%3D%22M230%20320h390%22%2F%3E%3Cpath%20d%3D%22M230%20390h390%22%2F%3E%3Cpath%20d%3D%22M230%20460h390%22%2F%3E%3Cpath%20d%3D%22M230%20530h390%22%2F%3E%3Cpath%20d%3D%22M230%20600h390%22%2F%3E%3Cpath%20d%3D%22M230%20670h390%22%2F%3E%3Cpath%20d%3D%22M800%20120v660%22%2F%3E%3Cpath%20d%3D%22M865%20120v660%22%2F%3E%3Cpath%20d%3D%22M930%20120v660%22%2F%3E%3Cpath%20d%3D%22M1090%20150v620%22%2F%3E%3Cpath%20d%3D%22M1185%20150v620%22%2F%3E%3Cpath%20d%3D%22M1280%20150v620%22%2F%3E%3Cpath%20d%3D%22M1375%20150v620%22%2F%3E%3C%2Fg%3E%3Crect%20y%3D%22760%22%20width%3D%221600%22%20height%3D%22240%22%20fill%3D%22%23c2d3e5%22%20fill-opacity%3D%22.32%22%2F%3E%3C%2Fsvg%3E");
}

.showcase-slide--03 {
  --slide-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80");
  --slide-fallback: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201600%201000%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%234e6488%22%2F%3E%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%2397afcb%22%2F%3E%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23d2deec%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%221600%22%20height%3D%221000%22%20fill%3D%22url(%23g)%22%2F%3E%3Ccircle%20cx%3D%221230%22%20cy%3D%22190%22%20r%3D%2296%22%20fill%3D%22%23f5f9ff%22%20fill-opacity%3D%22.34%22%2F%3E%3Crect%20x%3D%22180%22%20y%3D%22210%22%20width%3D%22270%22%20height%3D%22560%22%20rx%3D%2218%22%20fill%3D%22%231f3a5e%22%20fill-opacity%3D%22.44%22%2F%3E%3Crect%20x%3D%22470%22%20y%3D%22140%22%20width%3D%22360%22%20height%3D%22630%22%20rx%3D%2222%22%20fill%3D%22%2333537d%22%20fill-opacity%3D%22.46%22%2F%3E%3Crect%20x%3D%22860%22%20y%3D%22170%22%20width%3D%22520%22%20height%3D%22610%22%20rx%3D%2222%22%20fill%3D%22%23d8e3ef%22%20fill-opacity%3D%22.34%22%2F%3E%3Cg%20stroke%3D%22%23f7fbff%22%20stroke-opacity%3D%22.25%22%3E%3Cpath%20d%3D%22M245%20210v560%22%2F%3E%3Cpath%20d%3D%22M300%20210v560%22%2F%3E%3Cpath%20d%3D%22M355%20210v560%22%2F%3E%3Cpath%20d%3D%22M540%20140v630%22%2F%3E%3Cpath%20d%3D%22M610%20140v630%22%2F%3E%3Cpath%20d%3D%22M680%20140v630%22%2F%3E%3Cpath%20d%3D%22M750%20140v630%22%2F%3E%3Cpath%20d%3D%22M935%20170v610%22%2F%3E%3Cpath%20d%3D%22M1025%20170v610%22%2F%3E%3Cpath%20d%3D%22M1115%20170v610%22%2F%3E%3Cpath%20d%3D%22M1205%20170v610%22%2F%3E%3Cpath%20d%3D%22M1295%20170v610%22%2F%3E%3C%2Fg%3E%3Crect%20y%3D%22760%22%20width%3D%221600%22%20height%3D%22240%22%20fill%3D%22%23aebfd4%22%20fill-opacity%3D%22.34%22%2F%3E%3C%2Fsvg%3E");
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.showcase-stage-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 5px;
  max-width: min(90%, 320px);
  padding: 12px 14px;
  border: 1px solid rgba(183, 199, 219, 0.98);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent-deep);
  box-shadow: 0 18px 34px rgba(11, 45, 92, 0.16);
  backdrop-filter: blur(10px);
}

.showcase-stage-caption span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showcase-stage-caption strong {
  font-size: 0.94rem;
  line-height: 1.4;
}

.showcase-copy-card {
  grid-area: copy;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 14px 12px;
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 248, 252, 0.99) 100%);
  box-shadow: 0 30px 60px rgba(11, 45, 92, 0.14);
}

.showcase-copy-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), rgba(47, 127, 232, 0));
}

.showcase-copy-card h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.86rem, 2.5vw, 2.52rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--accent-deep);
}

.showcase-title-line {
  display: block;
  white-space: nowrap;
}

.showcase-title-line + .showcase-title-line {
  margin-top: 0.14em;
}

.showcase-copy-card .lead {
  margin-bottom: 0;
  max-width: none;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.52;
}

.showcase-action-panel {
  grid-area: actions;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-self: center;
  min-height: 84px;
  padding: 9px 13px;
  border-color: var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 247, 252, 0.99) 100%);
  box-shadow: 0 22px 44px rgba(11, 45, 92, 0.12);
}

.showcase-action-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent-deep) 0%, var(--accent) 100%);
}

.showcase-action-panel .actions {
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: start;
  min-height: calc(100vh - 110px);
  margin-top: 22px;
  padding: 42px 42px 40px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.96) 56%, rgba(235, 244, 255, 0.98) 100%);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 32px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.25) 44%, rgba(58, 134, 255, 0.08) 68%, transparent 72%);
  opacity: 0.9;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: min(42%, 380px);
  height: 168px;
  background:
    linear-gradient(180deg, rgba(58, 134, 255, 0.1), rgba(58, 134, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(11, 45, 92, 0.11) 0 22px,
      rgba(11, 45, 92, 0.06) 22px 38px,
      transparent 38px 58px,
      rgba(11, 45, 92, 0.08) 58px 74px,
      transparent 74px 98px
    );
  border-radius: 28px 0 0 0;
  clip-path: polygon(0 100%, 0 46%, 8% 46%, 8% 32%, 16% 32%, 16% 58%, 26% 58%, 26% 24%, 34% 24%, 34% 50%, 44% 50%, 44% 16%, 52% 16%, 52% 62%, 64% 62%, 64% 34%, 74% 34%, 74% 54%, 84% 54%, 84% 28%, 92% 28%, 92% 66%, 100% 66%, 100% 100%);
  opacity: 0.28;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-right: 10px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 14ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-deep);
}

.hero-title-line {
  display: block;
}

.lead {
  max-width: 42ch;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: 1.1rem;
  line-height: 1.72;
}

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

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.cta-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 18px 38px rgba(11, 45, 92, 0.24);
}

.cta-primary::after {
  content: "→";
  margin-left: 10px;
  font-weight: 700;
}

.cta-secondary {
  color: var(--accent-deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(11, 45, 92, 0.06);
}

.cta-primary:hover,
.cta-primary:focus-visible,
.cta-secondary:hover,
.cta-secondary:focus-visible {
  transform: translateY(-1px);
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  border-color: rgba(11, 45, 92, 0.38);
  background: rgba(47, 127, 232, 0.08);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-line li {
  position: relative;
  padding-left: 16px;
}

.trust-line li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 2px;
  background: var(--accent-deep);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.visual-frame {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
}

.summary-strip {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(220, 232, 247, 0.9);
}

.summary-kicker {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.summary-grid > div {
  min-width: 0;
  padding-top: 2px;
}

.summary-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.summary-value {
  display: block;
  margin-top: 8px;
  color: var(--accent-deep);
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 700;
}

.summary-value.accent {
  color: var(--accent);
}

.calculator-band {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 252, 0.99) 100%);
  box-shadow: 0 26px 60px rgba(11, 45, 92, 0.1);
  scroll-margin-top: 24px;
}

.section-head--calculator {
  gap: 12px;
  margin-bottom: 14px;
}

.calculator-flow {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}

.section-copy {
  margin: 0;
  max-width: 68ch;
  color: var(--muted-strong);
  font-size: 1.02rem;
  line-height: 1.72;
}

.section-copy--single-line {
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.72rem, 1.08vw, 0.96rem);
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 14px;
  align-items: stretch;
}

.calculator-panel,
.calculator-results {
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(11, 45, 92, 0.1);
  height: 100%;
}

.calculator-panel {
  display: grid;
  align-content: space-between;
  padding: 19px 20px 18px;
}

.calculator-results {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 19px 20px 18px;
}

.result-compare-card {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(11, 45, 92, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.98) 100%);
  box-shadow: 0 16px 30px rgba(11, 45, 92, 0.08);
}

.result-compare-card[data-state="idle"] {
  align-items: center;
  padding: 14px 16px;
}

.result-compare-card[data-state="idle"] .result-compare-copy {
  gap: 4px;
}

.result-compare-card[data-state="positive"] {
  border-color: rgba(11, 45, 92, 0.18);
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.08), rgba(47, 127, 232, 0.12));
}

.result-compare-card[data-state="negative"] {
  border-color: rgba(201, 216, 234, 0.98);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 250, 0.98));
}

.result-compare-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(47, 127, 232, 0.16);
  border-radius: 999px;
  background: rgba(47, 127, 232, 0.08);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.result-compare-card[data-state="positive"] .result-compare-badge {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
  color: var(--accent-deep);
}

.result-compare-card[data-state="negative"] .result-compare-badge {
  border-color: rgba(201, 216, 234, 0.92);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-deep);
}

.result-compare-copy {
  display: grid;
  gap: 6px;
}

.result-compare-title {
  margin: 0;
  color: var(--accent-deep);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
}

.result-compare-description {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.7;
}

.field-group {
  display: grid;
  gap: 6px;
}

.field-group + .field-group {
  margin-top: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.field-grid + .field-grid {
  margin-top: 12px;
}

.consultation-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.field-group label {
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.address-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.field-group input,
.field-group select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.3;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field-group textarea {
  width: 100%;
  min-width: 0;
  min-height: 116px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.55;
  outline: none;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field-group input::placeholder {
  color: rgba(82, 103, 127, 0.46);
}

.field-group select {
  color: var(--text);
}

.field-group textarea::placeholder {
  color: rgba(82, 103, 127, 0.46);
}

.field-group input:hover,
.field-group select:hover {
  border-color: rgba(47, 127, 232, 0.38);
}

.field-group textarea:hover {
  border-color: rgba(47, 127, 232, 0.38);
}

.field-group input:focus-visible,
.field-group select:focus-visible {
  border-color: rgba(11, 45, 92, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 127, 232, 0.16);
  background: #ffffff;
}

.field-group textarea:focus-visible {
  border-color: rgba(11, 45, 92, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 127, 232, 0.16);
  background: #ffffff;
}

.consultation-topic-group {
  min-width: 0;
  margin: 2px 0 0;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.consultation-topic-group legend {
  padding: 0;
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.consultation-topic-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.consultation-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.consultation-topic-chip {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.consultation-topic-chip input {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.consultation-topic-chip span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(47, 127, 232, 0.2);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 45, 92, 0.06);
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.consultation-topic-chip span::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(11, 45, 92, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.consultation-topic-chip span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-62%) rotate(45deg);
  opacity: 0;
  transition: opacity 160ms ease;
}

.consultation-topic-chip:hover span {
  border-color: rgba(47, 127, 232, 0.34);
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.08);
}

.consultation-topic-chip input:focus-visible + span {
  border-color: rgba(11, 45, 92, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 127, 232, 0.16);
}

.consultation-topic-chip input:checked + span {
  border-color: rgba(11, 45, 92, 0.42);
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.98), rgba(247, 250, 255, 0.98));
  box-shadow: 0 14px 26px rgba(11, 45, 92, 0.1);
  color: var(--accent-deep);
}

.consultation-topic-chip input:checked + span::before {
  border-color: rgba(11, 45, 92, 0.76);
  background: linear-gradient(180deg, rgba(47, 127, 232, 0.98), rgba(11, 45, 92, 0.98));
  box-shadow: 0 6px 14px rgba(11, 45, 92, 0.18);
}

.consultation-topic-chip input:checked + span::after {
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consultation-section-label {
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.consultation-upload-description {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

.consultation-upload-card {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  justify-items: stretch;
  padding: 14px;
  border: 1px solid rgba(47, 127, 232, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.99) 100%);
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.06);
  box-sizing: border-box;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.consultation-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.consultation-file-trigger,
.consultation-file-trigger:hover,
.consultation-file-trigger:focus,
.consultation-file-input:focus-visible + .consultation-file-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(11, 45, 92, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.96) 0%, rgba(47, 127, 232, 0.96) 100%);
  color: #ffffff;
  box-sizing: border-box;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    border-color 160ms ease;
}

.consultation-upload-card .consultation-file-trigger,
.consultation-upload-card .consultation-file-trigger:hover,
.consultation-upload-card .consultation-file-trigger:focus,
.consultation-upload-card .consultation-file-trigger:focus-visible,
.consultation-upload-card .consultation-file-trigger:active,
.consultation-file-input:focus-visible + .consultation-file-trigger {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.consultation-file-trigger:hover,
.consultation-file-input:focus-visible + .consultation-file-trigger {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(11, 45, 92, 0.14);
  filter: saturate(1.04);
}

.consultation-file-input:focus-visible + .consultation-file-trigger {
  border-color: rgba(11, 45, 92, 0.72);
  box-shadow:
    0 0 0 4px rgba(47, 127, 232, 0.16),
    0 14px 24px rgba(11, 45, 92, 0.14);
}

.consultation-upload-status {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.consultation-upload-status[data-state="selected"] {
  color: var(--accent-deep);
  font-weight: 600;
}

.consultation-upload-status[data-state="error"] {
  color: #8b3b1d;
  font-weight: 600;
}

.consultation-upload-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.consultation-upload-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(201, 216, 234, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-sizing: border-box;
}

.consultation-upload-item-name {
  min-width: 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.consultation-upload-item-size {
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.consultation-consent {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(201, 216, 234, 0.94);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.99) 100%);
}

.consultation-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consultation-consent-check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--accent-deep);
  flex-shrink: 0;
}

.consultation-consent-check span {
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.consultation-consent-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.consultation-hidden-fields {
  display: none;
}

.consultation-feedback {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.58;
}

.consultation-feedback--error {
  border: 1px solid rgba(139, 59, 29, 0.16);
  background: rgba(139, 59, 29, 0.08);
  color: #8b3b1d;
}

.field-group.is-invalid input,
.field-group.is-invalid select,
.field-group.is-invalid textarea,
.consultation-upload-card.is-invalid,
.consultation-consent.is-invalid,
.consultation-topic-group.is-invalid {
  border-color: rgba(139, 59, 29, 0.28);
  box-shadow: 0 0 0 4px rgba(139, 59, 29, 0.08);
}

.consultation-upload-card.is-invalid,
.consultation-consent.is-invalid,
.consultation-topic-group.is-invalid {
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.99) 0%, rgba(255, 247, 244, 0.99) 100%);
}

.consultation-topic-group.is-invalid {
  padding: 12px;
  border: 1px solid rgba(139, 59, 29, 0.24);
  border-radius: 18px;
}

.consultation-consent.is-invalid .consultation-consent-check span,
.consultation-upload-card.is-invalid .consultation-upload-status {
  color: #8b3b1d;
}

.address-lookup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(11, 45, 92, 0.18);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.98) 0%, rgba(47, 127, 232, 0.98) 100%);
  box-shadow: 0 16px 30px rgba(11, 45, 92, 0.14);
  color: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    opacity 160ms ease;
}

.address-lookup-button:hover,
.address-lookup-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 45, 92, 0.18);
  filter: saturate(1.04);
}

.address-lookup-button:focus-visible {
  outline: 2px solid rgba(47, 127, 232, 0.18);
  outline-offset: 2px;
}

.address-lookup-button:disabled {
  transform: none;
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.12);
  opacity: 0.62;
  cursor: wait;
  filter: none;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 24, 49, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.loading-overlay[hidden] {
  display: none;
}

.loading-overlay__card {
  width: min(100%, 360px);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(183, 199, 219, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 252, 0.99) 100%);
  box-shadow:
    0 28px 56px rgba(11, 45, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: center;
}

.loading-overlay__spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(47, 127, 232, 0.16);
  border-top-color: var(--accent);
  border-right-color: var(--accent-deep);
  border-radius: 50%;
  animation: loading-overlay-spin 1.05s linear infinite;
}

.loading-overlay__title {
  color: var(--accent-deep);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
}

.loading-overlay__description {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.65;
}

@keyframes loading-overlay-spin {
  to {
    transform: rotate(360deg);
  }
}

.field-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.field-note strong {
  color: var(--muted-strong);
  font-weight: 700;
}

#building-status {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted-strong);
  box-shadow: none;
  font-size: 0.92rem;
  line-height: 1.55;
}

#building-status[data-source="building-ledger"] {
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  box-shadow: none;
}

#building-status[data-source="mock"] {
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  box-shadow: none;
}

#building-status[data-source="manual"] {
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  box-shadow: none;
}

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

.metric-card {
  min-width: 0;
  padding: 15px 16px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.99) 100%);
  box-shadow: 0 12px 26px rgba(11, 45, 92, 0.08);
}

.metric-card--highlight {
  grid-column: 1 / -1;
  border-color: rgba(11, 45, 92, 0.28);
  background:
    linear-gradient(135deg, rgba(11, 45, 92, 0.08), rgba(47, 127, 232, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 255, 0.99) 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.metric-card--highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-deep), var(--accent));
}

.metric-label {
  display: block;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
}

.metric-value {
  display: block;
  margin-top: 8px;
  color: var(--accent-deep);
  font-size: 1.42rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.metric-value.accent {
  color: var(--accent-deep);
}

.metric-card--highlight .metric-label {
  color: var(--accent-deep);
}

.metric-card--highlight .metric-value {
  font-size: 1.62rem;
}

.metric-card--highlight[data-state="negative"] {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.99) 100%);
  box-shadow: var(--shadow-soft);
}

.metric-card--highlight[data-state="negative"]::before {
  background: linear-gradient(180deg, rgba(82, 103, 127, 0.32), rgba(47, 127, 232, 0.42));
}

.metric-card--highlight[data-state="negative"] .metric-label {
  color: var(--accent-deep);
}

.metric-card--highlight[data-state="negative"] .metric-value {
  margin-top: 6px;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 700;
}

.calculator-message {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.7;
}

.consultation-promo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 45, 92, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.08), rgba(47, 127, 232, 0.14));
  box-shadow: 0 16px 34px rgba(11, 45, 92, 0.08);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.consultation-promo::after {
  content: "";
  flex-shrink: 0;
  align-self: center;
  width: 11px;
  height: 11px;
  margin-left: 12px;
  border-right: 2px solid rgba(11, 45, 92, 0.72);
  border-bottom: 2px solid rgba(11, 45, 92, 0.72);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.consultation-promo:hover,
.consultation-promo:focus-visible {
  border-color: rgba(11, 45, 92, 0.24);
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.1), rgba(47, 127, 232, 0.17));
  box-shadow: 0 20px 38px rgba(11, 45, 92, 0.12);
  transform: translateY(-1px);
}

.consultation-promo:focus-visible {
  outline: 2px solid rgba(47, 127, 232, 0.18);
  outline-offset: 2px;
}

.consultation-promo[aria-expanded="true"] {
  border-color: rgba(11, 45, 92, 0.24);
  box-shadow: 0 18px 36px rgba(11, 45, 92, 0.1);
}

.consultation-promo[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.consultation-promo[data-state="positive"] {
  border-color: rgba(11, 45, 92, 0.18);
  background: linear-gradient(135deg, rgba(11, 45, 92, 0.1), rgba(47, 127, 232, 0.18));
}

.consultation-promo[data-state="neutral"] {
  border-color: rgba(11, 45, 92, 0.14);
}

.consultation-promo-copy {
  display: grid;
  gap: 6px;
  max-width: none;
}

.consultation-promo-copy h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-deep);
}

.consultation-promo-description {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.62;
}

.consultation-form-panel {
  overflow: clip;
}

.consultation-form-panel[hidden] {
  display: none;
}

.consultation-form-panel.is-open .consultation-form-card {
  animation: consultation-form-reveal 220ms ease;
}

@keyframes consultation-form-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consultation-band {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 252, 0.99) 100%);
  box-shadow: 0 26px 60px rgba(11, 45, 92, 0.1);
  scroll-margin-top: 24px;
}

.section-head--consultation {
  margin-bottom: 14px;
}

.management-band {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 252, 0.99) 100%);
  box-shadow: var(--shadow-soft);
}

.section-head--management {
  margin-bottom: 16px;
}

.management-title-line {
  display: block;
}

.management-title-line--accent {
  color: var(--accent-deep);
}

.management-copy {
  margin: 0;
  max-width: none;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.78;
}

.month-picker-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.month-picker-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  color: var(--accent-deep);
  box-shadow: 0 10px 20px rgba(11, 45, 92, 0.06);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.month-picker-button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.month-picker-button:hover,
.month-picker-button:focus-visible {
  border-color: rgba(47, 127, 232, 0.36);
  box-shadow: 0 14px 24px rgba(11, 45, 92, 0.1);
  background: rgba(47, 127, 232, 0.04);
  transform: translateY(-1px);
}

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

.management-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 255, 0.99) 100%);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.management-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(11, 45, 92, 0.65), rgba(47, 127, 232, 0.8));
}

.management-card--accent {
  border-color: rgba(47, 127, 232, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 255, 0.99) 100%);
  box-shadow: var(--shadow-soft);
}

.management-card:hover,
.management-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(47, 127, 232, 0.3);
  background:
    linear-gradient(135deg, rgba(11, 45, 92, 0.08), rgba(47, 127, 232, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 255, 0.99) 100%);
  box-shadow: var(--shadow);
}

.management-card:hover::before,
.management-card:focus-within::before {
  width: 4px;
  background: linear-gradient(180deg, rgba(11, 45, 92, 0.65), rgba(47, 127, 232, 0.8));
}

.management-card:hover .management-card-icon,
.management-card:focus-within .management-card-icon {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  box-shadow: 0 14px 24px rgba(11, 45, 92, 0.18);
}

.management-card:hover h3,
.management-card:focus-within h3 {
  color: var(--accent-deep);
}

.management-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
  color: #ffffff;
  line-height: 0;
  box-shadow: 0 10px 20px rgba(11, 45, 92, 0.14);
  flex-shrink: 0;
  overflow: hidden;
}

.management-card-icon svg {
  display: block;
  width: 27px;
  height: 27px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.management-card h3 {
  margin: 0;
  color: var(--accent-deep);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
}

.management-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.72;
}

.consultation-form-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(11, 45, 92, 0.08);
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.consultation-submit-button {
  min-width: 200px;
}

.consultation-fineprint {
  flex: 1 1 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.consultation-success {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(11, 45, 92, 0.16);
  border-radius: 18px;
  background: rgba(47, 127, 232, 0.08);
  color: var(--accent-deep);
  font-size: 0.98rem;
  line-height: 1.6;
}

.steps-band {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 252, 0.99) 100%);
  box-shadow: 0 26px 60px rgba(11, 45, 92, 0.1);
}

.site-footer {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 14px;
  padding-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 248, 252, 0.99) 100%);
  box-shadow: 0 26px 60px rgba(11, 45, 92, 0.1);
}

.footer-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(11, 45, 92, 0.07);
}

.footer-logo {
  display: block;
  width: clamp(150px, 16vw, 176px);
  height: 44px;
  object-fit: contain;
  object-position: center center;
  flex-shrink: 0;
}

.footer-meta {
  display: grid;
  gap: 6px;
  width: 100%;
  min-width: 0;
  justify-items: center;
}

.footer-meta p {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  line-height: 1.45;
  white-space: normal;
  text-align: center;
}

.footer-company {
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-rights {
  color: var(--muted);
}

.footer-contact {
  white-space: nowrap;
  justify-self: center;
}

.section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-deep);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-item {
  padding-top: 18px;
  border-top: 1px solid rgba(201, 216, 234, 0.98);
}

.step-index {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.step-item h3 {
  margin: 14px 0 10px;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--accent-deep);
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.eyebrow,
.step-index {
  text-transform: none;
}

@media (max-width: 980px) {
  .inner {
    width: min(1180px, calc(100% - 36px));
  }

  .topbar {
    padding: 14px 16px;
  }

  .building-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage"
      "actions";
    gap: 12px;
  }

  .showcase-stage {
    min-height: 304px;
    border-radius: 28px;
  }

  .showcase-copy-card {
    padding: 16px 16px 14px;
    border-radius: 28px;
  }

  .showcase-copy-card h1 {
    max-width: none;
    font-size: clamp(1.9rem, 4.4vw, 2.55rem);
  }

  .showcase-action-panel {
    align-self: stretch;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 24px;
  }

  h1 {
    max-width: 14ch;
    font-size: 3.2rem;
  }

  .lead {
    max-width: 48ch;
  }

  .address-lookup-row {
    grid-template-columns: 1fr;
  }

  .address-lookup-button {
    width: 100%;
  }

  .summary-grid,
  .field-grid,
  .metric-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-band,
  .management-band,
  .consultation-band,
  .steps-band {
    padding: 24px;
    border-radius: 28px;
  }

  .site-footer {
    padding: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-radius: 28px;
  }

  .footer-card {
    gap: 8px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .footer-logo {
    width: clamp(132px, 34vw, 156px);
    height: 40px;
  }

  .footer-meta {
    gap: 5px;
  }

  .footer-meta p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .calculator-panel,
  .calculator-results {
    padding: 20px;
    border-radius: 24px;
  }

  .consultation-band {
    padding: 20px;
  }

  .consultation-form-card {
    padding: 18px;
    border-radius: 24px;
  }

  .consultation-topic-grid {
    grid-template-columns: 1fr;
  }

  .consultation-promo {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 24px;
  }

  .consultation-promo-copy {
    max-width: none;
  }

  .consultation-promo-description {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.72;
  }

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

@media (max-width: 640px) {
  .inner {
    width: min(100%, calc(100% - 28px));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 15px;
    margin-top: 14px;
    border-radius: 22px;
  }

  .brand {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-logo {
    width: clamp(132px, 40vw, 145px);
    height: 38px;
  }

  .brand-copy {
    margin-left: 0;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
  }

  .showcase {
    margin-top: 16px;
  }

  .showcase-stage {
    min-height: 208px;
    border-radius: 24px;
  }

  .showcase-stage::before {
    width: 102px;
    height: 102px;
    top: 12px;
    right: 12px;
  }

  .showcase-stage-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .showcase-stage-caption strong {
    font-size: 0.92rem;
  }

  .showcase-copy-card {
    padding: 14px 14px 13px;
    border-radius: 24px;
    gap: 8px;
  }

  .showcase-copy-card h1 {
    max-width: none;
    font-size: clamp(1.7rem, 9vw, 2.1rem);
    line-height: 1.04;
  }

  .showcase-title-line + .showcase-title-line {
    margin-top: 0.12em;
  }

  .showcase-action-panel {
    align-self: stretch;
    min-height: 0;
    padding: 12px;
    border-radius: 20px;
  }

  h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  .lead {
    margin-bottom: 22px;
    font-size: 1.02rem;
  }

  .calculator-flow {
    white-space: normal;
    font-size: 0.88rem;
  }

  .consultation-field-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    gap: 12px;
  }

  .loading-overlay {
    padding: 18px;
  }

  .loading-overlay__card {
    width: min(100%, 332px);
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  .loading-overlay__spinner {
    width: 48px;
    height: 48px;
  }

  .loading-overlay__title {
    font-size: 0.98rem;
  }

  .loading-overlay__description {
    font-size: 0.9rem;
  }

  .showcase-action-panel .trust-line {
    gap: 10px;
    font-size: 0.88rem;
  }

  .showcase-action-panel .trust-line li {
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .summary-value {
    font-size: 1.05rem;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .section-copy {
    font-size: 0.98rem;
  }

  .section-copy--single-line {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.88rem;
    letter-spacing: -0.02em;
  }

  .management-band {
    padding: 24px;
  }

  .management-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .management-copy {
    font-size: 0.96rem;
    line-height: 1.72;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .management-card {
    padding: 18px 16px 16px;
    gap: 12px;
    border-radius: 20px;
  }

  .management-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .management-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .management-card h3 {
    font-size: 1.02rem;
  }

  .management-card p {
    font-size: 0.92rem;
  }

  .result-compare-card {
    padding: 16px;
    border-radius: 18px;
  }

  .result-compare-title {
    font-size: 1rem;
  }

  .result-compare-description {
    font-size: 0.92rem;
  }

  .calculator-band {
    padding: 20px;
  }

  .management-band,
  .consultation-band,
  .steps-band {
    padding: 18px;
  }

  .site-footer {
    margin-top: 22px;
    margin-bottom: 10px;
    padding: 14px;
    padding-bottom: 10px;
    border-radius: 24px;
  }

  .footer-card {
    gap: 7px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .footer-logo {
    width: clamp(128px, 42vw, 150px);
    height: 38px;
  }

  .footer-meta {
    gap: 4px;
  }

  .footer-meta p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .metric-value {
    font-size: 1.2rem;
  }

  .calculator-message {
    font-size: 0.95rem;
  }

  .consultation-submit-button {
    width: 100%;
  }

  .consultation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consultation-fineprint {
    flex-basis: auto;
    font-size: 0.9rem;
  }

  .consultation-upload-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .consultation-upload-item-size {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loading-overlay {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .loading-overlay__spinner {
    animation-duration: 2.8s;
  }

  .address-lookup-button,
  .month-picker-button,
  .cta-primary,
  .cta-secondary {
    transition: none;
  }
}
