/* Neuron Shorepoint — contemporary structured elegance */
:root {
  --ink: #14241f;
  --ink-soft: #3a4f47;
  --muted: #5c6f66;
  --paper: #f3eee4;
  --paper-deep: #e7dfd0;
  --surface: rgba(255, 252, 247, 0.88);
  --teal: #0e4d42;
  --teal-mid: #1a6b5c;
  --teal-soft: #d7e8e2;
  --gold: #b8922a;
  --gold-soft: #f0e2b8;
  --line: rgba(20, 36, 31, 0.12);
  --danger: #8b2e2e;
  --ok: #1f5c3a;
  --shadow: 0 18px 50px rgba(20, 36, 31, 0.08);
  --radius: 14px;
  --header-h: 4.5rem;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9ebe4 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #efe4c8 0%, transparent 50%),
    linear-gradient(180deg, #f7f3ea 0%, #ebe4d6 45%, #f3eee4 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(14, 77, 66, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 77, 66, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-mid);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--teal);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.inline-error {
  background: #f8e3e3;
  color: var(--danger);
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid #e2b4b4;
  font-size: 0.95rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(243, 238, 228, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 25%, var(--gold) 0 18%, transparent 19%),
    linear-gradient(145deg, var(--teal) 0%, #196957 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal) !important;
  color: #f7f3ea !important;
  padding: 0.55rem 0.95rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(14, 77, 66, 0.22);
}

.nav-cta:hover {
  background: var(--teal-mid) !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(247, 243, 234, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    padding: 1rem 1.25rem 1.4rem;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-list a {
    padding: 0.7rem 0.4rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
    border-bottom: 0 !important;
  }
}

/* Layout helpers */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section- Tight {
  padding: 3rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.15rem;
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #f7f3ea;
  box-shadow: 0 10px 28px rgba(14, 77, 66, 0.25);
}

.btn-primary:hover {
  background: var(--teal-mid);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(14, 77, 66, 0.35);
  color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-soft);
  color: var(--teal);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: #f7f3ea;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 32, 28, 0.82) 0%, rgba(10, 32, 28, 0.45) 55%, rgba(10, 32, 28, 0.25) 100%),
    linear-gradient(0deg, rgba(10, 32, 28, 0.65) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.25rem 4rem;
  width: 100%;
}

.hero h1 {
  color: #f7f3ea;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  max-width: 14ch;
  margin-bottom: 0.5rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  animation: riseIn 0.8s var(--ease) 0.05s both;
}

.hero p {
  color: rgba(247, 243, 234, 0.9);
  max-width: 34rem;
  font-size: 1.1rem;
  animation: riseIn 1s var(--ease) 0.12s both;
}

.hero .btn-row {
  animation: riseIn 1s var(--ease) 0.2s both;
}

.hero .btn-secondary {
  border-color: rgba(247, 243, 234, 0.45);
  color: #f7f3ea;
}

.hero .btn-secondary:hover {
  background: rgba(247, 243, 234, 0.12);
  color: #fff;
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-1.5%);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Split / prose panels */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.panel-media {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  min-height: 280px;
}

.panel-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Offer list — not SaaS cards; editorial list */
.offer-rail {
  display: grid;
  gap: 1.25rem;
}

.offer-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: stretch;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.offer-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.offer-item img {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.offer-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.offer-item p {
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .offer-item {
    grid-template-columns: 1fr;
  }

  .offer-item img {
    width: 100%;
    height: 180px;
  }
}

/* Quote / evidence */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 760px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.story {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.story h3 {
  font-size: 1.15rem;
}

/* Pricing */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.rate-table th {
  background: rgba(14, 77, 66, 0.08);
  font-weight: 600;
  color: var(--ink);
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal);
  white-space: nowrap;
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.75rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.blog-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .blog-row {
    grid-template-columns: 1fr;
  }
}

.article-body {
  max-width: 42rem;
}

.article-body h2 {
  margin-top: 2rem;
}

.article-hero {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--line);
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Forms */
.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(14, 77, 66, 0.25);
  border-radius: 10px;
  background: #fffcf7;
  font: inherit;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(14, 77, 66, 0.35);
  outline-offset: 1px;
}

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
  min-height: 1.1em;
  margin-top: 0.35rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
}

.form-status.is-success {
  background: #e3f2e9;
  color: var(--ok);
}

.form-status.is-error {
  background: #f8e3e3;
  color: var(--danger);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.address-block {
  font-style: normal;
  line-height: 1.7;
}

.address-block a {
  text-decoration: none;
}

/* Steps / process */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.15rem;
}

/* Legal */
.legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
}

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: rgba(14, 77, 66, 0.07);
}

/* Page hero (interior) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.page-hero.with-media {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #f7f3ea;
  overflow: hidden;
  border-bottom: 0;
  margin: 0 0 2rem;
  border-radius: 0 0 28px 28px;
}

.page-hero.with-media .page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero.with-media .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.with-media .page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 32, 28, 0.85), rgba(10, 32, 28, 0.35));
}

.page-hero.with-media .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
  padding-top: 4rem;
}

.page-hero.with-media h1,
.page-hero.with-media p,
.page-hero.with-media .eyebrow {
  color: #f7f3ea;
}

.page-hero.with-media .eyebrow {
  color: var(--gold-soft);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: #102820;
  color: rgba(247, 243, 234, 0.85);
  padding: 3rem 0 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #f7f3ea;
  margin-bottom: 0.75rem;
}

.footer-line,
.footer-line a {
  color: rgba(247, 243, 234, 0.78);
  text-decoration: none;
  margin: 0 0 0.35rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.footer-heading {
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: rgba(247, 243, 234, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-block;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-base {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247, 243, 234, 0.55);
}

.footer-base p {
  margin: 0;
  color: inherit;
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 40rem;
  margin: 0 auto;
  background: #fffcf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Utility */
.muted {
  color: var(--muted);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.narrow {
  max-width: 42rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: rgba(255, 252, 247, 0.7);
}

.cta-band {
  margin: 2rem 0 0;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(14, 77, 66, 0.12), rgba(184, 146, 42, 0.12)),
    var(--surface);
  border: 1px solid var(--line);
}

.cta-band h2 {
  margin-bottom: 0.4rem;
}
