:root {
  --ink: #11120f;
  --ink-soft: #2c2d28;
  --paper: #f4f0e7;
  --paper-deep: #e8e1d4;
  --white: #fffdf8;
  --brass: #b38a4b;
  --brass-dark: #785a2c;
  --acid: #d7ef78;
  --teal: #167f78;
  --line: rgba(17, 18, 15, 0.16);
  --muted: #6d6c64;
  --shadow: 0 24px 70px rgba(17, 18, 15, 0.13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
.solid-header {
  background: rgba(17, 18, 15, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-name span {
  color: var(--brass);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark i:nth-child(1) {
  top: 1px;
  left: 1px;
}

.brand-mark i:nth-child(2) {
  top: 7px;
  left: 7px;
  border-color: var(--brass);
}

.brand-mark i:nth-child(3) {
  right: 0;
  bottom: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}

nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--white);
}

.nav-contact {
  padding: 0.65rem 1rem;
  color: var(--ink) !important;
  background: var(--acid);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 35%, rgba(215, 239, 120, 0.11), transparent 24%),
    radial-gradient(circle at 20% 95%, rgba(22, 127, 120, 0.25), transparent 34%),
    var(--ink);
}

.hero::before {
  position: absolute;
  content: "";
  inset: auto -12% -45% 30%;
  height: 80%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 700px;
  padding-top: 118px;
  align-items: center;
  gap: 5vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
  color: var(--brass-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: var(--acid);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.2vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--brass);
  font-weight: 400;
}

.hero-lede {
  max-width: 690px;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 2.3rem;
  align-items: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.8rem 1.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
}

.button-primary:hover {
  background: #e5fa90;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.hero-orbit {
  position: relative;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.orbit-one {
  inset: 5%;
}

.orbit-two {
  inset: 20%;
  border-color: rgba(179, 138, 75, 0.55);
}

.orbit-core {
  position: absolute;
  display: flex;
  inset: 34%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 0 14px rgba(215, 239, 120, 0.07);
}

.orbit-core span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orbit-core strong {
  width: 80%;
  font-family: Georgia, serif;
  font-size: clamp(0.8rem, 1.6vw, 1.2rem);
  line-height: 1.1;
}

.orbit-label {
  position: absolute;
  padding: 0.35rem 0.65rem;
  color: rgba(255, 255, 255, 0.73);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.label-web { top: 1%; left: 43%; }
.label-mobile { top: 29%; right: -4%; }
.label-cloud { right: 11%; bottom: 8%; }
.label-desktop { bottom: 8%; left: 2%; }
.label-data { top: 31%; left: -2%; }

.capability-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, auto);
  min-height: 80px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-strip span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-heading h2,
.approach h2,
.contact-section h2,
.product-stage h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 8vw;
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: clamp(2rem, 4vw, 3.2rem);
  background: rgba(255, 253, 248, 0.42);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.service-card:hover {
  background: var(--white);
}

.service-card.featured {
  color: var(--white);
  background: var(--ink-soft);
}

.service-number {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.featured .service-number {
  color: var(--acid);
}

.service-icon {
  position: absolute;
  top: 2.7rem;
  right: 3rem;
  width: 52px;
  color: var(--brass);
}

.service-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-card h3 {
  max-width: 420px;
  margin: 4rem 0 1rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.67);
}

.service-card ul {
  display: flex;
  margin: 1.8rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.service-card li {
  padding: 0.28rem 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
}

.product-section {
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.eyebrow.light {
  color: var(--acid);
}

.product-stage {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 590px;
  align-items: center;
  gap: 5vw;
}

.product-wordmark {
  display: flex;
  margin-bottom: 2.6rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.core-mark {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px 50% 50%;
  transform: rotate(45deg);
}

.product-stage p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.1rem;
}

.product-stage .product-note {
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.58);
  border-left: 2px solid var(--acid);
  font-size: 0.9rem;
}

.product-stage .button {
  margin-top: 1.5rem;
}

.product-visual {
  position: relative;
  min-height: 500px;
  perspective: 1000px;
}

.data-card {
  position: absolute;
  width: min(310px, 80%);
  padding: 1.4rem;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.card-a {
  top: 2%;
  right: 7%;
  transform: rotate(3deg);
}

.card-b {
  z-index: 2;
  top: 37%;
  left: 0;
  transform: rotate(-3deg);
}

.card-c {
  right: 0;
  bottom: 0;
  transform: rotate(2deg);
}

.data-kicker {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.data-card strong {
  display: block;
  margin-bottom: 0.8rem;
}

.data-line {
  display: block;
  height: 6px;
  margin-top: 0.5rem;
  background: var(--paper-deep);
  border-radius: 5px;
}

.data-line.long { width: 90%; }
.data-line.short { width: 56%; }

.marker-track {
  position: relative;
  display: flex;
  height: 7px;
  margin: 1.6rem 0 0.5rem;
  background: var(--paper-deep);
  border-radius: 9px;
}

.marker-track::before {
  width: 29%;
  content: "";
  background: var(--teal);
  border-radius: 9px;
}

.marker-track i {
  position: absolute;
  top: -5px;
  width: 2px;
  height: 17px;
  background: var(--brass);
}

.marker-track i:nth-child(1) { left: 7%; }
.marker-track i:nth-child(2) { left: 29%; }
.marker-track i:nth-child(3) { right: 8%; }

.marker-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.avatar-row {
  display: flex;
  margin-bottom: 1rem;
}

.avatar-row i {
  width: 42px;
  height: 42px;
  margin-right: -8px;
  background: linear-gradient(135deg, var(--paper-deep), var(--brass));
  border: 3px solid var(--white);
  border-radius: 50%;
}

.avatar-row i:nth-child(2) { background: linear-gradient(135deg, #c7dedb, var(--teal)); }
.avatar-row i:nth-child(3) { background: linear-gradient(135deg, #e2d0b4, #594027); }
.avatar-row i:nth-child(4) { background: linear-gradient(135deg, #e4ebb7, #778d30); }

.signal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(215, 239, 120, 0.17);
}

.signal-one { top: 19%; left: 12%; }
.signal-two { right: 14%; bottom: 30%; }

.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.approach-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.approach-intro > p:last-child {
  max-width: 420px;
  margin-top: 2rem;
  color: var(--muted);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 2.4rem 0;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--brass-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 0.7rem;
  font-size: 1.45rem;
}

.steps p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--paper-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
}

.contact-assurance {
  display: flex;
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  align-items: flex-start;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
}

.contact-assurance > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.contact-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-panel,
.login-panel {
  padding: clamp(1.5rem, 4vw, 3.3rem);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 1.15rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

label > span:not(.optional) {
  color: #9f3428;
}

.optional {
  color: var(--muted);
  font-weight: 500;
}

.field-help {
  color: var(--muted) !important;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid rgba(17, 18, 15, 0.2);
  border-radius: 6px;
  outline: none;
  transition: border-color 130ms ease, box-shadow 130ms ease;
}

input,
select {
  min-height: 48px;
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 127, 120, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 0.3rem;
}

.honeypot {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  left: -10000px !important;
}

.success-message,
.form-error {
  display: flex;
  margin-bottom: 1.5rem;
  padding: 1rem;
  align-items: flex-start;
  gap: 0.75rem;
  color: #14544e;
  background: #e4f4e9;
  border: 1px solid #b9dcc4;
  border-radius: 8px;
}

.success-message > span {
  font-weight: 900;
}

.success-message p {
  margin: 0.2rem 0 0;
  font-size: 0.87rem;
}

.form-error {
  color: #722b24;
  background: #f9e9e5;
  border-color: #e7beb6;
}

footer {
  padding: 4rem 0 1.6rem;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  padding-bottom: 3.5rem;
  align-items: start;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-top p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-core {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-top: 1.6rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: inherit;
}

.legal-page {
  max-width: 820px;
  min-height: calc(100vh - 80px);
  padding-top: 165px;
  padding-bottom: 100px;
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-family: Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-lede {
  margin-bottom: 4rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.legal-page h2 {
  margin-top: 2.4rem;
}

.legal-page p {
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--brass-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 5%, rgba(22, 127, 120, 0.1), transparent 24%),
    var(--paper);
}

.login-shell {
  display: flex;
  width: min(470px, calc(100% - 32px));
  min-height: 100vh;
  margin: auto;
  padding: 3rem 0;
  justify-content: center;
  flex-direction: column;
}

.login-shell > .brand {
  margin: 0 auto 2rem;
}

.login-panel h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.login-panel > p:not(.eyebrow) {
  margin: 0.4rem 0 2rem;
  color: var(--muted);
}

.login-shell > .back-link {
  margin-inline: auto;
}

.admin-header {
  color: var(--white);
  background: var(--ink);
}

.admin-header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.admin-actions form,
.inquiry-actions form {
  display: block;
}

.text-button {
  padding: 0;
  color: var(--brass-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-actions .text-button {
  color: var(--acid);
}

.admin-main {
  padding-top: 70px;
  padding-bottom: 100px;
}

.admin-title {
  display: flex;
  margin-bottom: 3rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.admin-title h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.admin-title > div > p:last-child {
  color: var(--muted);
}

.admin-stats {
  display: flex;
  gap: 0.6rem;
}

.admin-stats div {
  display: grid;
  min-width: 92px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-stats strong {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.admin-stats span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.analytics-section {
  margin-bottom: 4rem;
}

.analytics-section .section-heading {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.analytics-section .section-heading h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.analytics-section .section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.analytics-stats {
  display: grid;
  margin-bottom: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.analytics-stats > div {
  display: grid;
  min-height: 118px;
  padding: 1.2rem;
  align-content: space-between;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(176, 141, 87, 0.32);
  border-radius: 12px;
}

.analytics-stats strong {
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.analytics-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.analytics-panel {
  padding: 1.4rem;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.analytics-panel h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.metric-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.6rem;
  list-style: none;
}

.metric-list li {
  display: flex;
  padding-bottom: 0.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(17, 18, 15, 0.08);
  font-size: 0.8rem;
}

.metric-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.metric-list strong {
  color: var(--teal);
}

.analytics-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.recent-traffic {
  margin-top: 1rem;
}

.analytics-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.analytics-panel-heading span {
  color: var(--muted);
  font-size: 0.68rem;
}

.traffic-table-wrap {
  overflow-x: auto;
}

.traffic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.76rem;
}

.traffic-table th,
.traffic-table td {
  padding: 0.75rem 0.65rem;
  border-top: 1px solid rgba(17, 18, 15, 0.08);
  text-align: left;
  white-space: nowrap;
}

.traffic-table th {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-list {
  display: grid;
  gap: 1rem;
}

.inquiry-card {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.inquiry-card.unread {
  background: var(--white);
  border-left: 5px solid var(--teal);
  box-shadow: 0 12px 36px rgba(17, 18, 15, 0.08);
}

.inquiry-head,
.inquiry-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.request-kind,
.unread-badge {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  color: var(--teal);
  background: rgba(22, 127, 120, 0.1);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.unread-badge {
  color: #51620d;
  background: rgba(215, 239, 120, 0.6);
}

.inquiry-head h2 {
  margin: 0.75rem 0 0.2rem;
  font-size: 1.5rem;
}

.inquiry-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.inquiry-head p a {
  color: var(--teal);
}

.inquiry-head time {
  color: var(--muted);
  font-size: 0.7rem;
  white-space: nowrap;
}

.inquiry-budget {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.inquiry-message {
  margin: 1.1rem 0 1.6rem;
  padding: 1.2rem;
  color: var(--ink-soft);
  background: var(--paper);
  border-radius: 8px;
  white-space: pre-wrap;
}

.inquiry-actions {
  padding-top: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.reply-link {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.empty-state {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px dashed rgba(17, 18, 15, 0.25);
  border-radius: 14px;
  text-align: center;
}

.empty-state > span {
  color: var(--brass);
  font-size: 2.5rem;
}

.empty-state h2 {
  margin: 0.6rem 0 0;
}

.empty-state p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    min-height: 940px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 80px;
    gap: 4rem;
  }

  .hero-orbit {
    width: min(80vw, 390px);
    justify-self: center;
  }

  .capability-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem 0;
    gap: 1rem;
  }

  .split-heading,
  .product-stage,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 2rem;
  }

  .product-stage {
    padding-top: 2rem;
  }

  .product-visual {
    width: min(100%, 550px);
    min-height: 480px;
    margin-inline: auto;
  }

  .approach-intro {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .analytics-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .nav-contact {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner {
    padding-top: 125px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .capability-strip {
    display: none;
  }

  .hero-orbit {
    width: 85vw;
    max-width: 350px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .approach h2,
  .contact-section h2,
  .product-stage h2 {
    font-size: 2.75rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .service-card {
    min-height: 315px;
  }

  .service-icon {
    top: 2rem;
    right: 2rem;
  }

  .product-visual {
    min-height: 420px;
  }

  .data-card {
    width: 82%;
  }

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

  .footer-bottom,
  .admin-title,
  .inquiry-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions > span {
    display: none;
  }

  .admin-stats {
    width: 100%;
  }

  .admin-stats div {
    flex: 1;
  }

  .analytics-section .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-head time {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
