:root {
  --ink: #eef5ef;
  --muted: #a8b8af;
  --line: rgba(222, 232, 225, 0.16);
  --paper: #0d1713;
  --white: #ffffff;
  --forest: #112d22;
  --moss: #7ddc98;
  --gold: #42d7c6;
  --blue: #72b8ff;
  --coral: #ff7568;
  --surface: #13221c;
  --surface-2: #192b23;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(66, 215, 198, 0.16), transparent 28%),
    linear-gradient(180deg, #0a120f, var(--paper));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(10, 18, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 7px;
  background: #10271e;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark svg {
  display: block;
  width: 34px;
  height: 34px;
}

.mark-ring {
  fill: none;
  stroke: #42d7c6;
  stroke-width: 3.2;
}

.mark-path {
  fill: #ffffff;
}

.mark-node {
  fill: #7ddc98;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: #dce8e1;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav .nav-cta {
  color: #061411;
  background: var(--gold);
  border-radius: 7px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 64px) 44px;
  background:
    radial-gradient(circle at 80% 25%, rgba(66, 215, 198, 0.18), transparent 28%),
    linear-gradient(180deg, #0a120f, #0d1713);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
}

.button.primary {
  color: #061411;
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: rgba(66, 215, 198, 0.55);
  background: rgba(66, 215, 198, 0.1);
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(222, 232, 225, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-photo {
  height: 440px;
  filter: saturate(0.86) contrast(1.05);
}

.inset-photo {
  position: absolute;
  right: -18px;
  bottom: 26px;
  width: 44%;
  height: 220px;
  border: 8px solid #0a120f;
}

.media-card {
  position: absolute;
  left: -26px;
  bottom: 54px;
  max-width: 330px;
  padding: 18px;
  background: rgba(8, 17, 14, 0.88);
  border: 1px solid rgba(66, 215, 198, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.media-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card strong {
  display: block;
  color: var(--white);
  font-size: 1.16rem;
  line-height: 1.15;
}

.media-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 24px -12px -18px 34px;
  z-index: -1;
  border: 1px solid rgba(66, 215, 198, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.trust-band {
  padding: 22px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: #142a20;
}

.trust-band p {
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 750;
  text-align: center;
}

.image-proof-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 14px;
  padding: 14px clamp(18px, 5vw, 64px) clamp(34px, 5vw, 54px);
  background: #0b1511;
}

.image-proof-strip figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-proof-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.02);
}

.image-proof-strip figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px;
  color: var(--white);
  background: rgba(8, 17, 14, 0.76);
  border: 1px solid rgba(66, 215, 198, 0.2);
  border-radius: 7px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 72% 20%, rgba(66, 215, 198, 0.14), transparent 30%),
    linear-gradient(180deg, #0a120f, #0d1713);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.page-hero img {
  width: 100%;
  height: clamp(280px, 38vw, 500px);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(0.88) contrast(1.05);
}

.page-hero img.seo-hero-graphic {
  object-fit: contain;
  padding: 0;
  background: #07120f;
}

.page-contact {
  min-height: calc(100vh - 78px);
  align-items: center;
}

.section {
  padding: clamp(58px, 8vw, 94px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.services-grid,
.package-grid,
.timeline {
  display: grid;
  gap: 16px;
}

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

.services-grid article,
.package-grid article,
.timeline article,
.proof-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.services-grid article {
  min-height: 220px;
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 850;
}

.services-grid p,
.package-grid p,
.package-grid li,
.timeline p,
.proof-copy p,
.proof-list span,
.contact-section p,
.site-footer {
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #101d18;
}

.proof-copy {
  max-width: 620px;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 20px;
}

.proof-list strong {
  color: #e7c260;
}

.promise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background:
    radial-gradient(circle at 75% 20%, rgba(128, 183, 217, 0.12), transparent 30%),
    #0b1511;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-copy {
  max-width: 680px;
}

.promise-copy p,
.promise-grid span {
  color: var(--muted);
}

.promise-grid {
  display: grid;
  gap: 14px;
}

.promise-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promise-grid strong {
  color: #e7c260;
  font-size: 1.05rem;
}

.local-edge-section {
  background: #0f1b16;
}

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

.edge-grid article {
  min-height: 280px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.edge-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.edge-grid p {
  color: var(--muted);
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 22%, rgba(66, 215, 198, 0.12), transparent 28%),
    #0b1511;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-copy {
  max-width: 720px;
}

.support-copy p,
.support-list span {
  color: var(--muted);
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.support-list strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.packages {
  background: #0f1b16;
}

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

.package-grid article {
  min-height: 540px;
  padding: 20px;
}

.package-grid .featured {
  color: var(--white);
  background: linear-gradient(180deg, #234232, #142b21);
  border-color: rgba(66, 215, 198, 0.38);
  box-shadow: var(--shadow);
}

.package-grid .featured p,
.package-grid .featured li,
.package-grid .featured .price-block span {
  color: rgba(255, 255, 255, 0.78);
}

.package-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-visual {
  display: grid;
  place-items: center;
  height: 96px;
  margin: 0 0 16px;
  background:
    radial-gradient(circle at 70% 28%, rgba(66, 215, 198, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-visual svg {
  width: 92px;
  height: 62px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured .package-visual {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(66, 215, 198, 0.35);
}

.price-block {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured .price-block {
  border-color: rgba(255, 255, 255, 0.18);
}

.price-block strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.featured .price-block strong {
  color: var(--white);
}

.price-block span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.pricing-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.risk-panel {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(66, 215, 198, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(66, 215, 198, 0.26);
  border-radius: 8px;
}

.analysis-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  margin-top: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(114, 184, 255, 0.28);
  border-radius: 8px;
}

.analysis-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.analysis-panel p,
.analysis-panel li {
  color: var(--muted);
}

.analysis-details {
  display: grid;
  gap: 16px;
}

.analysis-details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.risk-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.risk-panel p,
.risk-grid span,
.source-note {
  color: var(--muted);
}

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

.risk-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  background: rgba(7, 14, 11, 0.52);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.risk-grid strong {
  color: var(--gold);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1;
}

.seo-story {
  background: #0f1b16;
}

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

.stat-grid article,
.cta-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stat-grid span,
.cta-card p {
  color: var(--muted);
}

.cta-card {
  align-self: start;
}

.cta-card .button {
  margin-top: 10px;
}

.source-note {
  margin: 0;
  font-size: 0.86rem;
}

.process-section {
  background: #101d18;
}

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

.timeline article {
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 94px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(66, 215, 198, 0.13), transparent 26%),
    #10241b;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(222, 232, 225, 0.18);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: #0d1713;
  background: #f5f8f5;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5c6963;
  opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(66, 215, 198, 0.34);
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  background: var(--gold);
  color: #061411;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #09110e;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 960px) {
  .hero,
  .page-hero,
  .proof-section,
  .promise-section,
  .analysis-panel,
  .support-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .package-grid,
  .risk-grid,
  .edge-grid,
  .stat-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #101d18;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.5rem, 12.4vw, 4rem);
    line-height: 1.02;
  }

  .hero-lede {
    max-width: 100%;
  }

  .services-grid,
  .package-grid,
  .risk-grid,
  .edge-grid,
  .stat-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 610px;
  }

  .main-photo {
    height: 360px;
  }

  .inset-photo {
    right: 12px;
    bottom: 92px;
    width: 58%;
    height: 180px;
  }

  .media-card {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
  }

  .image-proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
  }
}
