:root {
  --ink: var(--h2-studio-ink, #12202b);
  --paper: var(--h2-studio-surface, #f7f5ee);
  --paper-deep: #ecebe3;
  --blue: var(--h2-studio-primary, #155eef);
  --blue-deep: #0f46b9;
  --cyan: var(--h2-studio-accent, #87e7e5);
  --line: rgba(18, 32, 43, 0.15);
  --muted: #596873;
  --h2-font: var(--h2-studio-font, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --h2-section-space: calc(145px * var(--h2-studio-density, 1));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--h2-font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 12px 16px; transform: translateY(-150%); background: #fff; color: #0f46b9; border: 2px solid #0f46b9; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  height: 88px;
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { font-weight: 820; font-size: 25px; letter-spacing: -1.5px; width: fit-content; }
.brand sub, .studio-logo sub { font-size: .55em; line-height: 0; color: var(--blue); }
.brand span { color: var(--blue); font-weight: 600; }
.site-header > nav { display: flex; gap: 32px; font-size: 14px; color: #364650; }
.site-header > nav a, .text-link, .quiet-link { transition: color .2s ease; }
.site-header > nav a:hover, .text-link:hover, .quiet-link:hover { color: var(--blue); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 26px; font-size: 14px; }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 10px; list-style: none; cursor: pointer; border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary span { width: 22px; height: 2px; display: block; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.mobile-nav[open] summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav[open] summary span:nth-child(2) { opacity: 0; }
.mobile-nav[open] summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav nav { position: absolute; top: 54px; right: 0; width: min(320px, calc(100vw - 36px)); padding: 12px; display: grid; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(18,32,43,.16); }
.mobile-nav nav a { min-height: 46px; display: flex; align-items: center; padding: 0 12px; color: #243740; font-weight: 650; border-bottom: 1px solid rgba(18,32,43,.09); }
.mobile-nav nav a:last-child { border-bottom: 0; color: var(--blue); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--h2-studio-radius, 4px);
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 680;
  box-shadow: 0 8px 24px rgba(21, 94, 239, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 12px 28px rgba(21,94,239,.24); }
.button-small { min-height: 42px; padding-inline: 18px; box-shadow: none; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 100px);
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 86px;
  overflow: hidden;
}
.hero-copy { max-width: 620px; padding-left: clamp(0px, 3vw, 54px); position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; font-size: 12px; line-height: 1; letter-spacing: .12em; text-transform: uppercase; font-weight: 740; color: var(--blue); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); border: 2px solid var(--blue); box-shadow: 0 0 0 5px rgba(135,231,229,.2); }
h1 { max-width: 650px; margin: 0; font-family: var(--h2-font); font-size: clamp(calc(54px * var(--h2-studio-type-scale, 1)), calc(5.4vw * var(--h2-studio-type-scale, 1)), calc(84px * var(--h2-studio-type-scale, 1))); line-height: .96; letter-spacing: -.055em; font-weight: 600; }
h1 em { color: var(--blue); font-weight: 500; }
.hero-intro { max-width: 575px; margin: 30px 0 0; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.65; letter-spacing: -.01em; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.quiet-link { display: inline-flex; gap: 13px; align-items: center; font-size: 14px; font-weight: 650; }
.quiet-link span { color: var(--blue); }
.hero-proof { display: flex; align-items: center; gap: 0; margin-top: 48px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #58676f; font-weight: 650; }
.hero-proof span { display: flex; align-items: center; }
.hero-proof span:not(:last-child)::after { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--blue); margin: 0 15px; }

.hero-visual { min-width: 0; position: relative; padding: 48px 15px 50px 0; }
.hero-visual::before {
  content: "H";
  position: absolute;
  top: -18%; right: -7%;
  font-family: var(--h2-font);
  font-size: 640px;
  line-height: 1;
  color: rgba(21, 94, 239, .035);
  pointer-events: none;
}
.orbital { position: absolute; border: 1px solid rgba(21,94,239,.2); border-radius: 50%; pointer-events: none; }
.orbital-one { width: 750px; height: 220px; right: -85px; top: 200px; transform: rotate(-26deg); }
.orbital-two { width: 580px; height: 390px; right: 40px; top: 130px; transform: rotate(33deg); }
.electron { width: 9px; height: 9px; border-radius: 50%; position: absolute; background: var(--blue); box-shadow: 0 0 0 7px rgba(21,94,239,.08); z-index: 3; }
.electron-one { right: 3%; top: 32%; }
.electron-two { left: 8%; bottom: 19%; background: var(--cyan); border: 2px solid var(--blue); }
.studio-card { position: relative; z-index: 2; background: #fff; border: 1px solid rgba(18,32,43,.12); border-radius: 9px; box-shadow: 0 35px 85px rgba(33,53,70,.16), 0 2px 8px rgba(33,53,70,.08); overflow: hidden; transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.studio-topbar { height: 54px; padding: 0 18px 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e6e9eb; }
.studio-logo { font-size: 14px; font-weight: 800; letter-spacing: -.5px; }
.studio-logo span { font-size: 8px; color: #82909a; text-transform: uppercase; letter-spacing: .13em; margin-left: 4px; }
.studio-secure { display: flex; align-items: center; gap: 7px; color: #75838b; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.studio-secure i { width: 6px; height: 6px; border-radius: 50%; background: #20b486; box-shadow: 0 0 0 3px rgba(32,180,134,.12); }
.studio-body { display: grid; grid-template-columns: 112px 1fr; min-height: 430px; }
.studio-sidebar { background: #f7f8f8; border-right: 1px solid #e6e9eb; padding: 22px 13px; }
.avatar { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #dce9ff; color: var(--blue); font-size: 8px; font-weight: 800; }
.side-line { height: 4px; width: 43px; margin-top: 7px; background: #d9dfe1; border-radius: 4px; }
.side-line.wide { width: 58px; margin-top: 12px; background: #bdc6ca; }
.side-nav { height: 28px; display: flex; align-items: center; gap: 7px; margin-top: 7px; padding: 0 7px; border-radius: 3px; color: #758188; font-size: 7px; font-weight: 700; }
.side-nav:first-of-type { margin-top: 22px; }
.side-nav b { width: 6px; height: 6px; border: 1px solid #9ba6ac; border-radius: 2px; }
.side-nav small { margin-left: auto; font-size: 6px; }
.side-nav.active { background: #e6efff; color: var(--blue); }
.side-nav.active b { border-color: var(--blue); background: var(--blue); }
.design-preview { position: relative; padding: 24px 22px 42px; background: #fcfcfb; }
.preview-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.preview-meta span { display: block; margin-bottom: 5px; color: #89949a; font-size: 7px; text-transform: uppercase; letter-spacing: .1em; }
.preview-meta strong { display: block; font-size: 13px; letter-spacing: -.02em; }
.preview-meta button, .comment-card button { border: 0; background: var(--blue); color: white; border-radius: 3px; padding: 7px 10px; font: 700 7px/1 Inter, sans-serif; }
.browser-frame { margin-top: 17px; border-radius: 5px; overflow: hidden; border: 1px solid #dbe0e2; box-shadow: 0 9px 24px rgba(32,50,62,.1); }
.browser-bar { height: 25px; display: flex; align-items: center; gap: 4px; padding: 0 9px; background: #f0f2f2; color: #8b969b; font-size: 6px; }
.browser-bar i { width: 4px; height: 4px; border-radius: 50%; background: #c5cbce; }
.browser-bar span { margin-left: 7px; }
.mock-page { position: relative; min-height: 248px; padding: 18px 24px; color: #16322c; background: linear-gradient(135deg, #eff2e8 0%, #e3ead9 100%); overflow: hidden; }
.mock-page::after { content: ""; position: absolute; width: 180px; height: 180px; right: -40px; bottom: -80px; border-radius: 50%; border: 30px solid rgba(89,126,83,.15); }
.mock-nav { display: flex; justify-content: space-between; align-items: center; font-size: 6px; }
.mock-nav b { letter-spacing: .17em; font-size: 8px; }
.mock-page > p { margin: 49px 0 9px; font-size: 6px; letter-spacing: .13em; font-weight: 800; color: #71836e; }
.mock-page h2 { max-width: 265px; margin: 0; font: 600 28px/1.02 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -.04em; }
.mock-page h2 em { color: #497446; }
.mock-button { display: inline-block; margin-top: 19px; padding: 8px 11px; background: #1e3c35; color: white; font-size: 6px; font-weight: 700; border-radius: 2px; }
.pin { position: absolute; right: 29%; top: 48%; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--blue); color: white; font-size: 8px; font-weight: 800; box-shadow: 0 4px 10px rgba(21,94,239,.3); }
.comment-card { position: absolute; display: flex; align-items: flex-start; gap: 9px; width: 220px; right: 5px; bottom: 12px; padding: 12px; border: 1px solid #e1e5e6; border-radius: 5px; background: white; box-shadow: 0 12px 30px rgba(25,42,53,.16); }
.comment-avatar { display: grid; flex: 0 0 25px; place-items: center; height: 25px; border-radius: 50%; background: #e4e9dc; color: #496047; font-size: 7px; font-weight: 800; }
.comment-card strong, .comment-card span { font-size: 7px; }
.comment-card span { color: #9aa4a9; }
.comment-card p { margin: 5px 0 0; font-size: 8px; line-height: 1.35; }
.comment-card button { margin-left: auto; padding: 4px 5px; background: #e8f0ff; color: var(--blue); }
.visual-caption { display: flex; align-items: center; gap: 12px; margin: 16px 0 0 16px; color: #7b898f; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.visual-caption span { color: var(--blue); }

.section-shell { width: min(var(--h2-studio-content-width, 1320px), calc(100% - 80px)); margin-inline: auto; }
.section-number { color: #65737a; font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.capability-strip { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 52px); padding: 20px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f1efe7; color: #4b5961; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.capability-strip i { width: 5px; height: 5px; border: 1px solid var(--blue); border-radius: 50%; box-shadow: 0 0 0 4px rgba(21,94,239,.06); }

.intro-section { display: grid; grid-template-columns: .38fr 1fr .8fr; gap: clamp(40px, 6vw, 100px); padding-top: var(--h2-section-space); padding-bottom: calc(var(--h2-section-space) * 1.035); align-items: start; }
.intro-heading h2, .services-heading h2, .process-intro h2, .portal-copy h2, .values-card h2, .faq-heading h2, .contact-section h2 { margin: 0; font: 600 clamp(42px, 4.5vw, 68px)/1.01 var(--h2-font); letter-spacing: -.045em; }
.intro-heading h2 em, .services-heading h2 em, .process-intro h2 em, .portal-copy h2 em, .values-card h2 em, .faq-heading h2 em, .contact-section h2 em { color: var(--blue); font-weight: inherit; }
.intro-copy { padding-top: 45px; }
.intro-copy > p { margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.bond-signoff { display: flex; align-items: center; gap: 0; margin-top: 36px; }
.bond-signoff i, .contact-mark i { width: 8px; height: 8px; border: 2px solid var(--blue); border-radius: 50%; }
.bond-signoff b, .contact-mark b { width: 34px; height: 1px; background: var(--blue); }
.bond-signoff span { margin-left: 13px; color: #758289; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

.services-section { background: var(--h2-studio-dark, #112832); color: #f6f7f4; padding: calc(130px * var(--h2-studio-density, 1)) 0 calc(110px * var(--h2-studio-density, 1)); overflow: hidden; }
.services-shell { position: relative; }
.services-shell::before { content: "H₂"; position: absolute; right: -100px; top: -210px; color: rgba(255,255,255,.025); font: 600 520px/1 Inter, ui-sans-serif, system-ui, sans-serif; pointer-events: none; }
.eyebrow.light { color: var(--cyan); }
.eyebrow.light span { border-color: var(--cyan); background: transparent; box-shadow: 0 0 0 5px rgba(135,231,229,.08); }
.services-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 66px; position: relative; z-index: 1; }
.services-heading h2 { max-width: 680px; }
.services-heading h2 em { color: var(--cyan); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.13); position: relative; z-index: 1; }
.service-card { min-height: 575px; padding: 34px 36px 36px; display: flex; flex-direction: column; justify-content: space-between; position: relative; border-right: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.018); }
.service-card:last-child { border-right: 0; }
.service-card.featured { background: #17323d; }
.service-index { font: 600 35px/1 Inter, ui-sans-serif, system-ui, sans-serif; color: white; }
.service-index sub { color: var(--cyan); font: 700 9px/1 Inter, sans-serif; margin-left: 4px; }
.card-kicker { color: var(--cyan); font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; margin: 0 0 17px; }
.service-card h3 { margin: 0 0 24px; font: 600 36px/1.06 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: -.035em; }
.service-card div > p:not(.card-kicker) { max-width: 330px; margin: 0; color: #afbbc0; font-size: 14px; line-height: 1.65; }
.service-card ul { list-style: none; padding: 0; margin: 31px 0 0; color: #d8dee0; font-size: 11px; line-height: 2; }
.service-card li::before { content: "·"; color: var(--cyan); margin-right: 10px; }
.review-callout { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 30px; padding: 25px 28px; border: 1px solid rgba(255,255,255,.12); color: #aeb9bd; }
.review-callout > div { display: flex; align-items: center; gap: 24px; }
.review-callout span { color: white; font-weight: 700; font-size: 12px; white-space: nowrap; }
.review-callout p { margin: 0; font-size: 11px; }
.review-callout > a { color: var(--cyan); font-size: 11px; font-weight: 700; white-space: nowrap; }
.review-callout > a span { color: var(--cyan); margin-left: 10px; }

.process-section { padding-top: 145px; padding-bottom: 145px; display: grid; grid-template-columns: .8fr 1.25fr; gap: clamp(70px, 10vw, 160px); }
.process-intro { position: sticky; top: 50px; align-self: start; }
.process-intro .eyebrow { margin-top: 48px; }
.process-intro > p:last-child { color: #8a959a; font-size: 11px; line-height: 1.7; text-transform: uppercase; letter-spacing: .11em; font-weight: 700; margin-top: 35px; }
.process-list article { display: grid; grid-template-columns: 45px 80px 1fr; gap: 12px; min-height: 180px; }
.process-list article > span { color: var(--blue); font-size: 10px; font-weight: 750; letter-spacing: .08em; padding-top: 6px; }
.process-bond { position: relative; padding-top: 6px; }
.process-bond i { display: block; width: 14px; height: 14px; border: 3px solid var(--paper); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 0 0 7px rgba(21,94,239,.07); }
.process-bond b { position: absolute; top: 28px; left: 6px; width: 1px; height: 125px; background: linear-gradient(var(--blue), rgba(21,94,239,.14)); }
.process-list h3 { margin: 0 0 15px; font: 600 27px/1.1 var(--h2-font); letter-spacing: -.025em; }
.process-list p { margin: 0; max-width: 500px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.portal-section { position: relative; padding: calc(130px * var(--h2-studio-density, 1)) 0; overflow: hidden; background: var(--h2-studio-dark, #0d222c); color: #f7f7f3; }
.portal-shell { position: relative; z-index: 2; display: grid; grid-template-columns: .58fr 1.42fr; align-items: center; gap: clamp(50px, 7vw, 115px); }
.light-number { color: #6e858e; }
.portal-copy .eyebrow { margin-top: 43px; }
.portal-copy h2 { font-size: clamp(44px, 4.7vw, 70px); }
.portal-copy h2 em { color: var(--cyan); }
.portal-copy > p:not(.eyebrow) { margin: 29px 0 0; color: #aebbc0; line-height: 1.7; font-size: 15px; }
.portal-benefits { list-style: none; padding: 0; margin: 34px 0; display: grid; gap: 14px; color: #dce2e4; font-size: 12px; }
.portal-benefits li { display: flex; align-items: center; gap: 12px; }
.portal-benefits i { width: 5px; height: 5px; border: 1px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 0 4px rgba(135,231,229,.06); }
.portal-button { background: var(--cyan); color: #10262e; box-shadow: none; }
.portal-button:hover { background: #b5f1ed; color: #10262e; }
.portal-orbit { position: absolute; border: 1px solid rgba(135,231,229,.09); border-radius: 50%; }
.portal-orbit-a { width: 950px; height: 290px; right: -160px; top: 260px; transform: rotate(-22deg); }
.portal-orbit-b { width: 790px; height: 470px; right: -30px; top: 170px; transform: rotate(27deg); }
.portal-demo { width: 850px; max-width: 100%; min-width: 0; border: 1px solid rgba(255,255,255,.15); background: #f9faf8; color: #17262e; border-radius: 8px; overflow: hidden; box-shadow: 0 38px 90px rgba(0,0,0,.35); transform: perspective(1600px) rotateY(-3deg); }
.portal-demo-bar { height: 54px; padding: 0 17px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: #fff; border-bottom: 1px solid #e5e8e8; }
.portal-demo-brand { font-weight: 850; font-size: 14px; }
.portal-demo-brand sub { color: var(--blue); font-size: .55em; }
.portal-demo-brand span { color: #8a959a; margin-left: 6px; font-size: 7px; text-transform: uppercase; letter-spacing: .12em; }
.view-switch { display: flex; gap: 3px; padding: 3px; background: #eff1f1; border-radius: 4px; font-size: 7px; }
.view-switch span, .view-switch b { padding: 6px 10px; border-radius: 3px; }
.view-switch b { background: #fff; color: var(--blue); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.review-status { justify-self: end; display: flex; align-items: center; gap: 7px; color: #718087; font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.review-status i { width: 6px; height: 6px; border-radius: 50%; background: #e9775f; box-shadow: 0 0 0 4px rgba(233,119,95,.12); }
.portal-demo-body { display: grid; grid-template-columns: 130px 1fr 216px; min-height: 500px; }
.portal-demo aside { padding: 22px 13px; background: #f1f3f2; border-right: 1px solid #e0e4e4; }
.portal-demo aside > p { margin: 0 0 14px 7px; color: #8a959a; font-size: 7px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.portal-demo aside > button { width: 100%; height: 31px; display: flex; align-items: center; gap: 7px; border: 0; border-radius: 4px; background: transparent; color: #6f7d84; font: 650 8px/1 Inter, sans-serif; text-align: left; }
.portal-demo aside > button i { width: 7px; height: 7px; border: 1px solid #9da7ab; border-radius: 2px; }
.portal-demo aside > button span { margin-left: auto; display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: #e2e7e7; font-size: 6px; }
.portal-demo aside > button.selected { background: #e1eafd; color: var(--blue); }
.portal-demo aside > button.selected i { background: var(--blue); border-color: var(--blue); }
.portal-phase { margin: 232px 4px 0; padding-top: 15px; border-top: 1px solid #dce1e1; }
.portal-phase small { display: block; color: #94a0a5; font-size: 6px; text-transform: uppercase; letter-spacing: .1em; }
.portal-phase strong { display: block; margin: 5px 0 10px; font-size: 8px; }
.portal-phase div { height: 3px; margin-bottom: 6px; background: #dce2e2; border-radius: 3px; overflow: hidden; }
.portal-phase div span { display: block; width: 60%; height: 100%; background: var(--blue); }
.portal-canvas-wrap { display: grid; place-items: center; padding: 35px 24px; background: #e9edec; }
.portal-canvas { width: 100%; max-width: 520px; min-height: 380px; position: relative; overflow: hidden; background: #f4eee3; box-shadow: 0 11px 28px rgba(28,46,53,.15); }
.pc-nav { height: 58px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; font-size: 6px; }
.pc-nav b { font: 700 11px/.86 Inter, ui-sans-serif, system-ui, sans-serif; }
.pc-nav i { padding: 7px 9px; background: #113d40; color: white; font-style: normal; }
.pc-copy { position: relative; z-index: 2; width: 57%; padding: 62px 0 35px 34px; }
.pc-copy small { color: #9a765d; font-size: 6px; letter-spacing: .14em; font-weight: 800; }
.pc-copy h3 { margin: 13px 0; font: 600 38px/.98 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: -.05em; }
.pc-copy h3 em { color: #b26f57; }
.pc-copy p { width: 85%; color: #687577; font-size: 8px; line-height: 1.6; }
.pc-copy button { margin-top: 13px; padding: 9px 12px; border: 0; background: #113d40; color: white; font: 700 7px/1 Inter, sans-serif; }
.pc-shape { position: absolute; width: 210px; height: 260px; right: -25px; bottom: -15px; border-radius: 48% 48% 6px 6px; overflow: hidden; background: #d2967e; transform: rotate(3deg); }
.pc-shape::before, .pc-shape::after, .pc-shape span { content: ""; position: absolute; border-radius: 50%; }
.pc-shape::before { width: 150px; height: 150px; left: 30px; top: 30px; background: #f0c3ae; }
.pc-shape::after { width: 86px; height: 86px; left: 61px; top: 62px; background: #1c5654; }
.pc-shape span { width: 38px; height: 38px; left: 85px; top: 87px; background: #f4eee3; }
.annotation-pin { position: absolute; z-index: 4; display: grid; place-items: center; width: 25px; height: 25px; border: 3px solid white; border-radius: 50%; background: #e9775f; color: white; box-shadow: 0 4px 10px rgba(93,44,34,.25); font: 800 8px/1 Inter, sans-serif; }
.pin-a { right: 120px; top: 146px; }
.pin-b { left: 215px; bottom: 66px; background: var(--blue); }
.portal-comments { padding: 16px 13px; background: #fff; border-left: 1px solid #e2e5e5; }
.comments-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid #eceeee; }
.comments-head small { display: block; color: #959fa4; font-size: 6px; text-transform: uppercase; letter-spacing: .1em; }
.comments-head strong { font-size: 10px; }
.comments-head button { border: 0; background: transparent; color: #89969b; font-size: 14px; }
.demo-comment { display: flex; gap: 8px; padding: 16px 4px; border-bottom: 1px solid #eef0f0; }
.demo-comment.active { margin: 9px -6px 0; padding-inline: 10px; border: 1px solid #fadcd4; border-radius: 4px; background: #fff7f4; }
.demo-avatar { flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #f4d9d0; color: #a75542; font-size: 6px; font-weight: 800; }
.demo-avatar.blue { background: #dce7fa; color: var(--blue); }
.demo-comment strong, .demo-comment small { display: block; font-size: 7px; }
.demo-comment small { color: #9aa4a8; margin-top: 2px; }
.demo-comment p { margin: 7px 0; font-size: 7px; line-height: 1.5; }
.demo-comment button, .demo-comment div > span { border: 0; background: transparent; padding: 0; color: var(--blue); font: 700 6px/1 Inter, sans-serif; }
.demo-comment div > span { margin-left: 10px; color: #799088; }
.comment-compose { height: 36px; margin-top: 18px; padding: 0 8px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #dde2e2; border-radius: 4px; color: #a1aaae; font-size: 7px; }
.comment-compose b { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 3px; background: var(--blue); color: white; }
.portal-demo-foot { height: 36px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; background: #f5f6f5; border-top: 1px solid #e2e5e5; color: #8a969b; font-size: 7px; }
.portal-demo-foot i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: #21aa80; }

.values-section { padding-top: 140px; padding-bottom: 120px; }
.values-card { min-height: 580px; display: grid; grid-template-columns: .45fr 1fr .75fr; align-items: center; gap: clamp(40px, 6vw, 100px); padding: 80px; border: 1px solid var(--line); background: #f2efe6; position: relative; overflow: hidden; }
.values-card::after { content: ""; position: absolute; width: 500px; height: 160px; left: -130px; bottom: -15px; border: 1px solid rgba(21,94,239,.12); border-radius: 50%; transform: rotate(-18deg); }
.values-mark { align-self: start; color: var(--blue); font: 600 105px/1 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: -.1em; }
.values-mark sub { font-size: .32em; }
.values-card h2 { font-size: clamp(45px, 4.3vw, 65px); }
.values-lead { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.value-list { align-self: stretch; display: grid; align-content: center; }
.value-list > div { display: grid; grid-template-columns: 35px 1fr; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.value-list > div:first-child { border-top: 1px solid var(--line); }
.value-list span { color: var(--blue); font-size: 9px; font-weight: 800; }
.value-list p { margin: 0; font: 600 17px/1.3 var(--h2-font); }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(70px, 10vw, 160px); padding-top: 60px; padding-bottom: 150px; }
.faq-heading .eyebrow { margin-top: 45px; }
.faq-heading > p:not(.eyebrow) { max-width: 330px; margin: 30px 0 15px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.faq-heading > a { color: var(--blue); font-size: 13px; font-weight: 700; }
.faq-heading > a span { margin-left: 8px; }
.faq-list { border-top: 1px solid #cfd3d1; }
.faq-list details { border-bottom: 1px solid #cfd3d1; }
.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 25px; list-style: none; cursor: pointer; font: 600 19px/1.3 var(--h2-font); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { flex: 0 0 18px; height: 18px; position: relative; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; background: var(--blue); }
.faq-list summary i::before { width: 18px; height: 1px; top: 8px; left: 0; }
.faq-list summary i::after { width: 1px; height: 18px; left: 8px; top: 0; transition: transform .2s ease; }
.faq-list details[open] summary i::after { transform: rotate(90deg); }
.faq-list details p { margin: -4px 55px 27px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.contact-section { min-height: 600px; padding: 100px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--blue); color: white; text-align: center; }
.contact-section .eyebrow { position: relative; z-index: 2; margin-top: 20px; }
.contact-section h2 { max-width: 950px; position: relative; z-index: 2; font-size: clamp(50px, 6vw, 88px); }
.contact-section h2 em { color: var(--cyan); }
.contact-section > p:not(.eyebrow) { max-width: 600px; position: relative; z-index: 2; margin: 28px auto 32px; color: #f0f4ff; font-size: 16px; line-height: 1.65; }
.contact-section > div:last-child { position: relative; z-index: 2; display: flex; align-items: center; gap: 27px; }
.contact-section > div:last-child > a:last-child { font-size: 13px; font-weight: 700; }
.contact-button { background: white; color: var(--blue); box-shadow: 0 10px 30px rgba(4,35,94,.2); }
.contact-button:hover { background: var(--cyan); color: #123; }
.contact-mark { display: flex; align-items: center; position: relative; z-index: 2; }
.contact-mark i { border-color: var(--cyan); }
.contact-mark b { width: 45px; background: var(--cyan); }
.contact-orbit { position: absolute; width: 1100px; height: 350px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: rotate(-15deg); }
.contact-orbit::before { content: ""; position: absolute; right: 11%; top: 6%; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 10px rgba(135,231,229,.09); }

footer { background: var(--h2-studio-dark, #0c2029); color: #d7dfe2; }
.footer-main { display: grid; grid-template-columns: 1.8fr repeat(3, .55fr); gap: 60px; padding-top: 75px; padding-bottom: 75px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-brand { color: white; font-size: 29px; }
.footer-main > div:first-child p { max-width: 390px; margin: 16px 0 9px; color: #9cabb1; font: 500 20px/1.5 Inter, ui-sans-serif, system-ui, sans-serif; }
.footer-main > div:first-child > span { color: #a8b6bb; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-main > div:not(:first-child) > p { margin: 5px 0 14px; color: #a8b8be; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.footer-main > div:not(:first-child) a { color: #dce3e5; font-size: 13px; }
.footer-main a:hover { color: var(--cyan); }
.footer-bottom { min-height: 67px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid rgba(255,255,255,.1); color: #a8b6bb; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.footer-bottom a { justify-self: end; color: #9babad; }

/* Secure client workspace */
.portal-app { min-height: 100vh; background: #eef0ec; color: #17262e; }
.app-header { height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; background: #fff; border-bottom: 1px solid #dfe4e2; }
.app-brand { display: flex; align-items: baseline; }
.app-brand b { margin-left: 9px; color: #8b979b; font-size: 8px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.app-header > div { display: flex; align-items: center; gap: 18px; color: #718087; font-size: 10px; }
.app-header > div > span { padding-right: 18px; border-right: 1px solid #dce1df; text-transform: uppercase; letter-spacing: .09em; font-weight: 750; }
.app-header > div a { color: var(--blue); font-weight: 700; }
.app-header > div i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #dce8ff; color: var(--blue); font-style: normal; font-size: 9px; font-weight: 800; }
.portal-empty { min-height: calc(100vh - 72px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px 22px; text-align: center; }
.empty-bond { display: flex; align-items: center; margin-bottom: 28px; }
.empty-bond i { width: 12px; height: 12px; border: 2px solid var(--blue); border-radius: 50%; }
.empty-bond b { width: 48px; height: 1px; background: var(--blue); }
.portal-empty > p, .admin-denied > p { margin: 0 0 15px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.portal-empty h1, .admin-denied h1 { max-width: 720px; margin: 0; font: 600 clamp(37px, 4.5vw, 62px)/1.05 Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: -.045em; }
.portal-empty > span, .admin-denied > span { max-width: 580px; margin: 24px 0 30px; color: #69777c; font-size: 14px; line-height: 1.65; }
.portal-empty > a { color: var(--blue); font-size: 12px; font-weight: 750; border-bottom: 1px solid var(--blue); padding-bottom: 3px; }
.project-empty { background: radial-gradient(circle at 50% 55%, #f8f8f3 0, #eef0ec 55%); }
.project-status { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; color: #75838a; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.project-status i { width: 7px; height: 7px; border-radius: 50%; background: #df9c55; box-shadow: 0 0 0 5px rgba(223,156,85,.12); }
.empty-steps { display: flex; align-items: center; margin-top: 34px; }
.empty-steps > div { display: flex; align-items: center; gap: 8px; color: #899599; font-size: 9px; font-weight: 700; }
.empty-steps > div i { width: 12px; height: 12px; border: 1px solid #aab4b7; border-radius: 50%; }
.empty-steps > div.done { color: var(--blue); }
.empty-steps > div.done i { border: 4px solid #dce8ff; background: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.empty-steps > b { width: 45px; height: 1px; margin: 0 8px; background: #cfd6d4; }
.project-header { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 32px; background: #f9faf7; border-bottom: 1px solid #dde2df; }
.project-header p { margin: 0 0 5px; color: #7b888d; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; font-weight: 750; }
.project-header h1 { margin: 0; font: 600 25px/1.1 Inter, ui-sans-serif, system-ui, sans-serif; }
.project-header > div:last-child { display: flex; align-items: center; gap: 17px; }
.project-header small { color: #8b979b; font-size: 8px; }
.phase-pill { display: flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid #d6dedb; border-radius: 20px; color: #65777d; font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.phase-pill i { width: 6px; height: 6px; border-radius: 50%; background: #df9c55; }
.phase-review i { background: #e9775f; }
.phase-complete i { background: #26aa80; }
.review-workspace { height: calc(100vh - 174px); min-height: 650px; display: grid; grid-template-columns: 1fr 350px; }
.review-main { min-width: 0; display: flex; flex-direction: column; }
.review-toolbar { min-height: 72px; padding: 15px 28px; display: flex; align-items: center; justify-content: space-between; background: #f9faf7; border-bottom: 1px solid #dfe3e1; }
.review-toolbar small { color: #8a969a; font-size: 7px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.review-toolbar h1 { margin: 4px 0 0; font-size: 13px; }
.review-toolbar > span { padding: 7px 10px; background: #e9eeed; border-radius: 3px; color: #6c7b81; font-size: 7px; text-transform: uppercase; letter-spacing: .1em; font-weight: 750; }
.review-stage { flex: 1; min-height: 0; display: grid; place-items: center; overflow: auto; padding: 42px; background: #e4e8e6; }
.review-image-wrap { max-width: 100%; position: relative; box-shadow: 0 18px 48px rgba(27,45,53,.2); background: white; }
.review-image-wrap img { display: block; max-width: 100%; max-height: calc(100vh - 335px); object-fit: contain; }
.review-target { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: transparent; cursor: crosshair; }
.live-pin { position: absolute; z-index: 3; width: 28px; height: 28px; transform: translate(-50%, -50%); border: 3px solid white; border-radius: 50%; background: #e9775f; color: white; box-shadow: 0 5px 12px rgba(87,47,37,.3); font-size: 9px; font-weight: 800; }
.live-pin.resolved { background: #658078; }
.live-pin.pending { display: grid; place-items: center; background: var(--blue); pointer-events: none; }
.review-hint { min-height: 48px; margin: 0; display: flex; align-items: center; justify-content: center; gap: 8px; background: #f8f9f7; border-top: 1px solid #dfe3e1; color: #7e8b90; font-size: 8px; }
.review-hint i { width: 6px; height: 6px; border: 1px solid var(--blue); border-radius: 50%; }
.feedback-panel { min-height: 0; display: flex; flex-direction: column; background: #fff; border-left: 1px solid #dce1df; }
.feedback-heading { min-height: 72px; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e4e7e6; }
.feedback-heading small { color: #8b969a; font-size: 7px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.feedback-heading h2 { margin: 4px 0 0; font: 600 16px/1 Inter, ui-sans-serif, system-ui, sans-serif; }
.feedback-heading > span { color: #e07259; font-size: 7px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.feedback-thread { flex: 1; min-height: 0; overflow-y: auto; padding: 8px 18px; }
.thread-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 35px; color: #89969a; text-align: center; }
.thread-empty i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #b7c1c3; border-radius: 50%; color: var(--blue); font-style: normal; font-size: 20px; }
.thread-empty h3 { margin: 15px 0 6px; color: #526168; font: 600 16px/1 Inter, ui-sans-serif, system-ui, sans-serif; }
.thread-empty p { margin: 0; font-size: 9px; }
.feedback-item { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 17px 0; border-bottom: 1px solid #edf0ef; }
.feedback-avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #e3ebdd; color: #547052; font-size: 8px; font-weight: 800; }
.feedback-meta { display: flex; justify-content: space-between; gap: 10px; }
.feedback-meta strong, .feedback-meta time { font-size: 8px; }
.feedback-meta time { color: #9aa4a8; }
.feedback-item p { margin: 7px 0; color: #526168; font-size: 10px; line-height: 1.5; white-space: pre-wrap; overflow-wrap: anywhere; }
.feedback-item button { padding: 0; border: 0; background: transparent; color: var(--blue); font: 750 7px/1 Inter, sans-serif; }
.feedback-form { padding: 16px 18px; border-top: 1px solid #dfe3e1; background: #fafbf9; }
.feedback-form > label { display: block; margin-bottom: 8px; color: #65747a; font-size: 8px; font-weight: 750; }
.feedback-form textarea { width: 100%; min-height: 83px; resize: vertical; padding: 11px; border: 1px solid #d6dcda; border-radius: 4px; outline: none; color: #25373f; background: white; font: 400 11px/1.5 Inter, sans-serif; }
.feedback-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,94,239,.1); }
.feedback-form > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 9px; }
.feedback-form > div:last-child > span { color: #99a4a8; font-size: 6px; }
.feedback-form > div:last-child > button { min-height: 32px; padding: 0 12px; border: 0; border-radius: 3px; background: var(--blue); color: white; font-size: 7px; font-weight: 750; }
.feedback-form > div:last-child > button:disabled { opacity: .45; }
.selected-pin { margin-bottom: 10px; padding: 7px 8px; display: flex; align-items: center; gap: 7px; background: #e9effd; color: var(--blue); font-size: 7px; font-weight: 750; }
.selected-pin > span { width: 15px; height: 15px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: white; }
.selected-pin button { margin-left: auto; border: 0; background: transparent; color: #6e7f88; font-size: 7px; }

/* Protected administration */
.admin-layout { min-height: 100vh; display: grid; grid-template-columns: 230px 1fr; background: #eff1ed; }
.admin-nav { position: sticky; top: 0; height: 100vh; padding: 30px 20px; display: flex; flex-direction: column; background: #102832; color: #dbe2e4; }
.admin-brand { color: white; font-size: 24px; }
.admin-nav > p { margin: 12px 0 36px; color: #71868e; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; font-weight: 750; }
.admin-nav nav { display: grid; gap: 7px; }
.admin-nav nav a { height: 41px; padding: 0 11px; display: flex; align-items: center; gap: 10px; border-radius: 4px; color: #aebcc1; font-size: 10px; font-weight: 650; }
.admin-nav nav a > i { width: 9px; height: 9px; border: 1px solid #70868e; border-radius: 2px; }
.admin-nav nav a > span { margin-left: auto; color: #71868e; font-size: 8px; }
.admin-nav nav a.active { background: rgba(135,231,229,.1); color: var(--cyan); }
.admin-nav nav a.active > i { border-color: var(--cyan); background: var(--cyan); }
.admin-security { margin-top: auto; padding: 13px; border: 1px solid rgba(135,231,229,.12); border-radius: 4px; color: var(--cyan); font-size: 7px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.admin-security > i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #27ba8d; }
.admin-security strong { display: block; margin-top: 7px; color: #799097; font-size: 7px; line-height: 1.45; font-weight: 600; text-transform: none; letter-spacing: 0; }
.admin-back { margin-top: 20px; color: #8a9da4; font-size: 8px; }
.admin-main { min-width: 0; padding: 0 34px 60px; }
.admin-top { min-height: 96px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #d7ddda; }
.admin-top p { margin: 0 0 5px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admin-top h1 { margin: 0; font: 600 27px/1 Inter, ui-sans-serif, system-ui, sans-serif; }
.admin-user { display: flex; align-items: center; gap: 11px; color: #7d898e; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.admin-user i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #dbe7ff; color: var(--blue); font-style: normal; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 25px 0; }
.admin-stats > div { min-height: 120px; padding: 18px; display: grid; grid-template-columns: 1fr auto; align-content: space-between; border: 1px solid #d9deda; background: #f9faf7; }
.admin-stats span { color: #708087; font-size: 8px; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.admin-stats strong { grid-row: span 2; color: var(--blue); font: 600 43px/.8 Inter, ui-sans-serif, system-ui, sans-serif; }
.admin-stats small { color: #929da1; font-size: 7px; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-panel, .admin-table-panel { padding: 22px; border: 1px solid #d9deda; background: #f9faf7; }
.panel-head { min-height: 44px; display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.panel-head small { color: var(--blue); font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.panel-head h2 { margin: 5px 0 0; font: 600 19px/1.1 Inter, ui-sans-serif, system-ui, sans-serif; }
.secure-label { display: flex; align-items: center; gap: 6px; color: #72837e; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.secure-label i { width: 6px; height: 6px; border-radius: 50%; background: #25b486; }
.panel-note { margin: 10px 0 19px; padding-bottom: 16px; border-bottom: 1px solid #e3e6e4; color: #718087; font-size: 9px; line-height: 1.55; }
.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.admin-form label { color: #66767c; font-size: 8px; font-weight: 750; }
.admin-form label:first-child { grid-column: 1 / -1; }
.admin-form input, .admin-form select { width: 100%; height: 39px; margin-top: 6px; padding: 0 10px; border: 1px solid #d5dcda; border-radius: 3px; background: white; color: #253840; font: 400 10px/1 Inter, sans-serif; outline: none; }
.admin-form input:focus, .admin-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,94,239,.08); }
.admin-form .file-label { grid-column: 1 / -1; padding: 11px; border: 1px dashed #c6d0cd; background: #f5f7f4; }
.file-label input { height: auto; padding: 6px; border: 0; background: transparent; }
.file-label > span { display: block; margin-top: 5px; color: #929da1; font-size: 7px; font-weight: 500; }
.form-info { grid-column: 1 / -1; display: grid; grid-template-columns: 17px 1fr; gap: 8px; padding: 10px; background: #eaf0fd; color: #587087; font-size: 7px; line-height: 1.5; }
.form-info i { width: 15px; height: 15px; display: grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font-style: normal; font-weight: 800; }
.admin-form > button { grid-column: 1 / -1; height: 40px; border: 0; border-radius: 3px; background: var(--blue); color: white; font-size: 9px; font-weight: 750; }
.admin-form > button:disabled { opacity: .55; }
.form-error { grid-column: 1 / -1; margin: 0; color: #b64b3e; font-size: 8px; }
.admin-empty { min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #8d999d; font-size: 9px; text-align: center; }
.admin-empty i { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #bdc7c9; border-radius: 50%; color: var(--blue); font-style: normal; font-size: 18px; }
.admin-table-panel { margin-top: 16px; }
.admin-table { margin-top: 15px; border-top: 1px solid #dfe3e1; }
.table-row { min-height: 53px; display: grid; grid-template-columns: 1fr 1.3fr .7fr .65fr; gap: 18px; align-items: center; border-bottom: 1px solid #e5e8e6; color: #69787e; font-size: 8px; }
.table-row > span:first-child { display: flex; align-items: center; gap: 9px; color: #33484f; font-weight: 700; }
.table-row strong { color: #33484f; font-size: 9px; }
.table-head { min-height: 34px; color: #919ca0; text-transform: uppercase; letter-spacing: .09em; font-size: 6px; font-weight: 750; }
.table-head > span:first-child { color: #919ca0; }
.client-dot { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #e1e9db; color: #5e7658; font-style: normal; }
.stage { width: fit-content; padding: 6px 8px; display: flex; align-items: center; gap: 6px; border-radius: 20px; background: #ecefed; color: #62747b; font-size: 6px; text-transform: uppercase; letter-spacing: .08em; }
.stage i { width: 5px; height: 5px; border-radius: 50%; background: #dc9b52; }
.stage-review i { background: #e9775f; }
.stage-complete i { background: #24ac82; }
.secondary-grid { margin-top: 16px; }
.secondary-grid .admin-table-panel { margin-top: 0; }
.activity-list { margin-top: 12px; border-top: 1px solid #e0e4e2; }
.activity-list > div { min-height: 47px; display: grid; grid-template-columns: 10px 1fr auto; gap: 9px; align-items: center; border-bottom: 1px solid #e7eae8; color: #627279; font-size: 8px; }
.activity-list > div > i { width: 6px; height: 6px; border-radius: 50%; background: #e0a152; }
.activity-list > div > i.success { background: #25ad83; }
.activity-list > div > i.failed, .activity-list > div > i.denied { background: #d85e4c; }
.activity-list > div > span { text-transform: capitalize; }
.activity-list > div > span small { display: block; margin-top: 3px; color: #929da1; text-transform: none; }
.activity-list time, .activity-list b { color: #929da1; font-size: 7px; font-weight: 650; }
.admin-denied { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 22px; text-align: center; background: #f1f2ee; }
.admin-denied > .brand { position: absolute; top: 30px; left: 32px; }
.admin-denied .empty-bond { margin-bottom: 30px; }
.admin-denied .button { margin-top: 0; border-bottom: 0; }

/* Privacy, security and terms */
.info-page { min-height: 100vh; background: var(--paper); }
.info-header { width: min(1160px, calc(100% - 80px)); height: 82px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.info-header > div { display: flex; align-items: center; gap: 24px; font-size: 11px; font-weight: 700; }
.info-hero { width: min(920px, calc(100% - 80px)); margin: 0 auto; padding: 110px 0 90px; }
.info-hero h1 { max-width: 900px; font-size: clamp(52px, 7vw, 90px); }
.info-hero > p:last-child { max-width: 670px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.info-content { width: min(760px, calc(100% - 80px)); margin: 0 auto; padding-bottom: 120px; }
.info-content section { display: grid; grid-template-columns: 190px 1fr; gap: 0 45px; padding: 35px 0; border-top: 1px solid var(--line); }
.info-content h2 { margin: 0; font: 600 22px/1.25 Inter, ui-sans-serif, system-ui, sans-serif; }
.info-content p { grid-column: 2; margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.info-content p + p { margin-top: -3px; }
.info-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.generic-content { width: min(760px, calc(100% - 80px)); margin: 0 auto; padding: 85px 0 120px; }
.generic-content h1 { max-width: 760px; margin-bottom: 42px; font-size: clamp(45px, 6vw, 72px); }
.generic-content h2, .generic-content h3 { margin: 42px 0 14px; font-family: var(--h2-font); font-weight: 600; }
.generic-content p, .generic-content li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.generic-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.generic-content img { height: auto; }
.not-found { min-height: calc(100vh - 154px); display: grid; align-content: center; }
.not-found > p:first-child { margin: 0 0 16px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.not-found > p:not(:first-child) { max-width: 560px; margin: 24px 0 30px; }
.not-found .button { width: fit-content; color: white; text-decoration: none; }
.info-updated { margin-top: 40px !important; color: #65757c !important; font-size: 12px !important; text-transform: uppercase; letter-spacing: .08em; }
.info-footer { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(40px, calc((100% - 1160px) / 2)); background: #0d232c; color: #8ea0a7; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.info-footer a { color: var(--cyan); }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.portal-section :focus-visible, .contact-section :focus-visible, footer :focus-visible, .app-header :focus-visible, .admin-nav :focus-visible { outline-color: var(--cyan); }

@media (max-width: 1050px) {
  .site-header, .hero { width: min(100% - 48px, 900px); }
  .site-header > nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .mobile-nav { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(720px, 94%); margin: 0 auto; }
  .section-shell { width: min(100% - 48px, 900px); }
  .intro-section { grid-template-columns: 1fr 1fr; }
  .intro-section > .section-number { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .service-card:last-child { border-bottom: 0; }
  .process-section { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .portal-shell { grid-template-columns: 1fr; }
  .portal-copy { max-width: 650px; }
  .portal-demo { width: 100%; transform: none; }
  .portal-demo aside { display: none; }
  .portal-demo-body { grid-template-columns: minmax(0, 1fr) 190px; }
  .values-card { grid-template-columns: .35fr 1fr; padding: 60px; }
  .value-list { grid-column: 2; }
  .faq-section { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.5fr repeat(3, .7fr); gap: 35px; }
  .review-workspace { grid-template-columns: 1fr 310px; }
  .admin-layout { grid-template-columns: 190px 1fr; }
  .admin-main { padding-inline: 22px; }
  .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header, .hero { width: calc(100% - 36px); }
  .site-header { height: 72px; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { gap: 12px; }
  .header-actions .text-link { display: inline; font-size: 12px; }
  .header-actions .button-small { display: none; }
  .hero { min-height: auto; padding: 56px 0 64px; gap: 48px; }
  .hero-copy { padding: 0; }
  h1 { font-size: clamp(49px, 15vw, 68px); }
  .hero-intro { font-size: 17px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 23px; }
  .hero-proof { flex-wrap: wrap; gap: 9px 0; margin-top: 38px; }
  .hero-visual { width: 116%; left: -4%; padding: 10px 0 42px; }
  .studio-card { transform: none; }
  .studio-body { grid-template-columns: 76px 1fr; min-height: 340px; }
  .studio-sidebar { padding-inline: 9px; }
  .design-preview { padding: 18px 12px 36px; }
  .preview-meta strong { font-size: 10px; }
  .mock-page { padding-inline: 15px; min-height: 205px; }
  .mock-page h2 { font-size: 22px; }
  .comment-card { width: 190px; }
  .section-shell { width: calc(100% - 36px); }
  .capability-strip { justify-content: center; gap: 12px 18px; flex-wrap: wrap; white-space: normal; padding: 24px 18px; }
  .intro-section { grid-template-columns: 1fr; gap: 38px; padding-top: 88px; padding-bottom: 88px; }
  .intro-section > .section-number { grid-column: auto; }
  .intro-copy { padding-top: 0; }
  .intro-heading h2, .services-heading h2, .process-intro h2, .portal-copy h2, .values-card h2, .faq-heading h2 { font-size: 43px; }
  .services-section { padding: 86px 0 78px; }
  .services-heading { display: block; }
  .services-heading .eyebrow { margin-bottom: 25px; }
  .service-card { min-height: 420px; padding: 28px 25px; }
  .service-card h3 { font-size: 33px; }
  .review-callout, .review-callout > div { align-items: flex-start; flex-direction: column; }
  .review-callout > div { gap: 10px; }
  .review-callout p { line-height: 1.55; }
  .process-section { padding-top: 90px; padding-bottom: 80px; gap: 70px; }
  .process-list article { grid-template-columns: 32px 42px 1fr; min-height: 220px; }
  .process-bond b { height: 165px; }
  .portal-section { padding: 90px 0 75px; }
  .portal-shell { gap: 65px; }
  .portal-demo { width: 100%; position: relative; left: 0; }
  .portal-demo-body { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .portal-comments { display: none; }
  .view-switch { display: none; }
  .portal-demo-bar { grid-template-columns: 1fr auto; }
  .portal-canvas-wrap { padding: 27px 17px; }
  .portal-canvas { min-height: 325px; }
  .pc-copy { padding-top: 45px; }
  .values-section { padding-top: 80px; padding-bottom: 90px; }
  .values-card { grid-template-columns: 1fr; padding: 45px 27px; gap: 32px; }
  .values-mark { font-size: 68px; }
  .value-list { grid-column: auto; }
  .faq-section { padding-top: 20px; padding-bottom: 90px; gap: 70px; }
  .faq-list summary { min-height: 78px; font-size: 17px; }
  .contact-section { width: 100%; min-height: 610px; padding-inline: 22px; }
  .contact-section h2 { font-size: 48px; }
  .contact-section > div:last-child { flex-direction: column; gap: 23px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-top: 60px; gap: 45px 30px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr auto; padding-block: 22px; row-gap: 13px; }
  .footer-bottom span:nth-child(2) { grid-row: 2; grid-column: 1 / -1; }
  .info-header, .info-hero, .info-content, .generic-content { width: calc(100% - 36px); }
  .info-header > div > a:first-child { display: none; }
  .info-hero { padding: 75px 0 65px; }
  .info-hero h1 { font-size: 51px; }
  .info-hero > p:last-child { font-size: 16px; }
  .info-content section { grid-template-columns: 1fr; gap: 17px; }
  .info-content p { grid-column: 1; }
  .info-footer { padding: 22px 18px; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
