/* DEPLOYMENT BUILD: 20260810-13 */

:root {
  --bg0: #07111c;
  --bg1: #0b1724;
  --bg2: #0f1d2c;
  --panel: rgba(16, 31, 48, 0.82);
  --panel-strong: rgba(19, 38, 58, 0.94);
  --panel-soft: rgba(22, 42, 62, 0.72);
  --ink: #eef3f4;
  --muted: #b3c0c6;
  --muted2: #82939c;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(86, 185, 180, 0.32);
  --accent: #56b9b4;
  --accent-light: #75cbc6;
  --sand: #c8ad77;
  --success: #72b78b;
  --danger: #f0a7a7;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
  --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.32);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --sans: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding-top: 72px;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background: linear-gradient(180deg, var(--bg0), var(--bg1) 48%, var(--bg2));
}

body::before {
  content: "";
  position: fixed;
  inset: 72px 0 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background: url("./GeoSite_Intel_Logo_Transparent.png?v=20260810-13")
    center 115px / min(1050px, 88vw) auto no-repeat;
}

.page-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

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

section {
  scroll-margin-top: 94px;
}

.mono {
  font-family: var(--mono);
}

.page-shell {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 20px 0 42px;
}

/* Top bar */

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 28, 0.9);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  width: min(1160px, calc(100% - 24px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-brand {
  display: inline-flex;
  flex: 0 1 140px;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 42px;
  max-width: min(44vw, 140px);
  padding: 2px 5px;
  overflow: hidden;
  border: 1px solid rgba(117, 203, 198, 0.32);
  border-radius: 10px;
  background: linear-gradient(145deg, #f7f8f5, #dce8e5);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22);
}

.topbar-brand:hover {
  text-decoration: none;
}

.topbar-logo {
  display: block;
  width: 124px;
  height: auto;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.brand-dot {
  color: var(--accent);
}

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(16, 31, 48, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.hamburger:focus-visible,
.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(86, 185, 180, 0.38);
  outline-offset: 3px;
}

.hamburger .lines {
  position: relative;
  width: 18px;
  height: 12px;
}

.hamburger .lines::before,
.hamburger .lines::after,
.hamburger .bar {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-light);
}

.hamburger .lines::before {
  top: 0;
}

.hamburger .bar {
  top: 5px;
}

.hamburger .lines::after {
  bottom: 0;
}

/* Navigation drawer */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(2, 8, 14, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  inset: 72px auto 0 0;
  z-index: 1100;
  width: 305px;
  max-width: 87vw;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(9, 22, 35, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.drawer.open {
  transform: translateX(0);
}

.drawer header {
  flex: 0 0 auto;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-brand {
  display: block;
  width: min(100%, 235px);
  padding: 8px 10px;
  border: 1px solid rgba(117, 203, 198, 0.32);
  border-radius: 12px;
  background: linear-gradient(145deg, #f7f8f5, #dce8e5);
}

.drawer-brand:hover {
  text-decoration: none;
}

.drawer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.drawer-subtitle {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 0.82rem;
}

.drawer nav {
  padding: 10px;
}

.drawer nav a {
  display: block;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 800;
}

.drawer nav a:hover,
.drawer nav a[aria-current="page"] {
  border-color: rgba(86, 185, 180, 0.25);
  background: rgba(86, 185, 180, 0.09);
  text-decoration: none;
}

/* General page elements */

.panel {
  margin-bottom: 20px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 50px 28px;
  text-align: center;
  background: var(--panel);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(86, 185, 180, 0.3);
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.54);
  color: var(--accent-light);
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 900;
}

.page-hero h1 {
  max-width: 900px;
  margin: 15px auto 10px;
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-copy,
.section-copy {
  max-width: 850px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.74;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2,
.panel > h2 {
  margin: 0 0 9px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.015em;
}

.section-heading p,
.panel > p {
  color: var(--muted);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button.primary {
  color: #071719;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  box-shadow: 0 12px 28px rgba(45, 127, 124, 0.24);
}

.button.primary:hover {
  background: linear-gradient(90deg, var(--accent-light), #8bd8d3);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(16, 31, 48, 0.74);
}

.button.secondary:hover {
  border-color: rgba(86, 185, 180, 0.52);
  background: rgba(86, 185, 180, 0.1);
}

.notice {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 13px 15px;
  border: 1px solid rgba(86, 185, 180, 0.2);
  border-radius: 12px;
  background: rgba(86, 185, 180, 0.055);
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.66;
}

.notice strong {
  color: var(--ink);
}

.plain-guide-link {
  margin: 15px auto 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.plain-guide-link a {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(86, 185, 180, 0.24);
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.62);
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 13px;
}

.term-card {
  min-height: 185px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(86, 185, 180, 0.09), transparent 55%),
    var(--panel-strong);
}

.term-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--accent-light);
  background: rgba(7, 17, 28, 0.55);
  font-size: 1.45rem;
  font-weight: 900;
}

.term-card h3 {
  margin: 0 0 7px;
}

.term-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: center;
}

.visual-media {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-sm);
}

.visual-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(7, 17, 28, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
}

.visual-story-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
}

.visual-story-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.visual-checklist {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 15px 0;
  list-style: none;
}

.visual-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.visual-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 900;
}

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

.info-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel-strong);
}

.info-card h3 {
  margin: 0 0 7px;
  font-size: 1.06rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* About page */

.logo-plaque {
  width: min(100%, 470px);
  margin: 20px auto;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(145deg, #f7f8f5, #dce8e5);
  box-shadow: var(--shadow-sm);
}

.logo-plaque img {
  width: 100%;
  max-height: 190px;
  display: block;
  object-fit: contain;
  opacity: 1;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.about-copy {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.78;
  text-align: center;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 13px;
}

.statement {
  max-width: 860px;
  margin: 18px auto 0;
  padding: 17px;
  border-left: 3px solid var(--sand);
  border-radius: 0 12px 12px 0;
  background: rgba(200, 173, 119, 0.07);
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.72;
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted2);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Property examples page */

.case-study {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-sm);
}

.case-study img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--line);
}

.case-body {
  padding: 22px;
}

.case-kicker {
  margin-bottom: 6px;
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0 0 9px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

.case-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.case-details,
.deliverable-grid,
.process-grid,
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 13px;
  margin-top: 17px;
}

.case-detail,
.deliverable,
.process-step,
.pay-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 17, 28, 0.34);
}

.case-detail h4,
.deliverable h3,
.process-step h3,
.pay-card h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.case-detail p,
.deliverable p,
.process-step p,
.pay-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.tags li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.35);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.case-action {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 17px;
}

.process-grid {
  counter-reset: process;
}

.process-step {
  counter-increment: process;
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-family: var(--mono);
  font-weight: 950;
}

.scope-box {
  padding: 17px;
  border: 1px solid rgba(86, 185, 180, 0.22);
  border-radius: 14px;
  background: rgba(86, 185, 180, 0.055);
  color: var(--muted);
  line-height: 1.7;
}

.scope-box strong {
  color: var(--ink);
}

/* Estimate form */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 13px;
  margin-top: 20px;
}

.step {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-strong);
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.step strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px;
}

.field {
  margin-top: 15px;
}

.field:first-child,
.form-grid .field {
  margin-top: 0;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
}

.required {
  margin-left: 3px;
  color: var(--accent-light);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(7, 17, 28, 0.66);
  color: var(--ink);
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #81929b;
}

input[type="checkbox"] {
  width: auto;
  min-height: auto;
  margin: 3px 9px 0 0;
  accent-color: var(--accent);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 17, 28, 0.34);
}

.checkbox-field label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.review-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 13px;
  margin-top: 18px;
}

.review-promise .info-card {
  text-align: left;
}

.review-placeholder {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px;
  border: 1px dashed rgba(86, 185, 180, 0.34);
  border-radius: 14px;
  background: rgba(7, 17, 28, 0.28);
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

select option {
  color: #0b1724;
  background: #eef3f4;
}

.form-note,
.privacy-note {
  color: var(--muted2);
  font-size: 0.86rem;
  line-height: 1.6;
}

.form-note {
  margin-top: 12px;
}

.privacy-note {
  margin-top: 9px;
}

.submit-row {
  margin-top: 18px;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pay-grid {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

/* CTA and footer */

.cta-panel {
  text-align: center;
  background:
    radial-gradient(
      700px 250px at 12% 10%,
      rgba(86, 185, 180, 0.14),
      transparent 65%
    ),
    radial-gradient(
      600px 240px at 88% 15%,
      rgba(200, 173, 119, 0.09),
      transparent 66%
    ),
    var(--panel);
}

.cta-panel h2 {
  margin: 0 0 9px;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
}

.cta-panel p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.72;
}

.site-footer {
  padding: 8px 12px 38px;
  color: var(--muted2);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 14px;
  margin-top: 7px;
}

@media (max-width: 850px) {
  .card-grid,
  .case-details,
  .deliverable-grid,
  .process-grid,
  .steps,
  .review-promise {
    grid-template-columns: 1fr;
  }

  .definition-grid,
  .visual-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .form-grid,
  .pay-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .field + .field {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-top: 64px;
  }

  body::before {
    inset: 64px 0 0;
    background-position: center 80px;
    background-size: 92vw auto;
  }

  .topbar,
  .topbar-inner {
    height: 64px;
  }

  .drawer {
    inset: 64px auto 0 0;
  }

  .page-shell {
    width: min(100% - 20px, 1100px);
    padding-top: 14px;
  }

  .panel {
    padding: 19px;
    border-radius: 17px;
  }

  .page-hero {
    padding: 40px 18px;
  }

  .case-body {
    padding: 17px;
  }

  .button,
  .case-action .button {
    width: 100%;
  }

  .topbar-brand {
    flex-basis: 132px;
    width: 132px;
    height: 40px;
    max-width: min(44vw, 132px);
    padding: 2px 5px;
  }

  .topbar-logo {
    width: 116px;
    max-width: 100%;
    max-height: 36px;
  }
}

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

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