@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #eef3fb;
  --bg-alt: #e5ecf7;
  --ink: #0b1220;
  --ink-soft: #5d687d;
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: #ffffff;
  --paper-dark: #0d1628;
  --paper-dark-soft: #13203a;
  --line: rgba(11, 18, 32, 0.1);
  --line-strong: rgba(11, 18, 32, 0.16);
  --brand: #00b8a5;
  --brand-strong: #028b7f;
  --accent: #ff7a59;
  --accent-soft: #ffd9cf;
  --sky: #7dd3fc;
  --white: #ffffff;
  --shadow-soft: 0 24px 64px rgba(11, 18, 32, 0.08);
  --shadow-card: 0 18px 36px rgba(11, 18, 32, 0.07);
  --shadow-lift: 0 32px 70px rgba(11, 18, 32, 0.14);
  --radius-sm: 20px;
  --radius-md: 30px;
  --radius-lg: 42px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 184, 165, 0.16), transparent 28%),
    radial-gradient(circle at 100% 15%, rgba(255, 122, 89, 0.16), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 48%, #f5f8fd 100%);
  line-height: 1.65;
}

body.page {
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 18, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 18, 32, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 82%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: auto auto -14rem -10rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.18), transparent 66%);
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration-color: rgba(11, 18, 32, 0.2);
}

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

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

h1,
h2,
h3,
h4,
.site-footer__headline,
.page-title,
.section-title {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

p,
blockquote {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), max(78vw, 1240px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.section__kicker,
.card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.1rem;
  padding: 0.4rem 0.82rem;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light,
.eyebrow--footer {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.muted,
.page-copy,
.section-copy,
.card__text,
.prose {
  color: var(--ink-soft);
}

.page-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 12ch;
}

.page-hero__title {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  max-width: 12ch;
}

.section-title,
.section__title {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.page-copy,
.section-copy,
.lead,
.section__copy {
  max-width: 60ch;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.section-title--light,
.section-copy--light {
  color: rgba(255, 255, 255, 0.96);
}

.section-copy--light {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.88rem 1.24rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--ink), #18253e);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(11, 18, 32, 0.18);
}

.btn--ghost {
  border-color: rgba(11, 18, 32, 0.12);
  background: rgba(255, 255, 255, 0.66);
}

.btn--danger {
  background: linear-gradient(135deg, #7f1d1d, #b91c1c);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(127, 29, 29, 0.2);
}

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

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn--small {
  min-height: 2.86rem;
  padding: 0.72rem 1.02rem;
  font-size: 0.92rem;
}

.site-header {
  --header-bar-height: 6rem;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.28rem 0;
  backdrop-filter: blur(18px);
  background: rgba(238, 243, 251, 0.78);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.05);
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-bar-height);
  gap: 0.8rem;
}

.brand {
  display: inline-grid;
  align-items: center;
  align-self: stretch;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
}

.brand__visual {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand__logo {
  width: auto;
  height: 5.75rem;
  max-width: min(34rem, 68vw);
  margin: -0.22rem 0;
}

.brand__icon {
  display: none;
  width: 4.8rem;
  height: 4.8rem;
  margin: -0.12rem 0;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.32rem;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.52rem 0.74rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.main-nav__link:hover {
  background: rgba(11, 18, 32, 0.07);
  color: var(--ink);
}

.main-nav__link--active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.14);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.68rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.6rem 0.96rem;
  border: 1px solid rgba(11, 18, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.site-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 184, 165, 0.16), transparent 30%),
    linear-gradient(180deg, #09111f 0%, #0b1220 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
}

.footer-hero {
  display: grid;
  gap: 1rem;
}

.footer-brand__logo {
  width: auto;
  height: 4rem;
  max-width: min(20rem, 100%);
}

.site-footer__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 11ch;
}

.site-footer__copy {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-column__title {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.96);
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.card,
.legal-card,
.form,
.faq-card,
.support-card,
.service-card,
.process-card,
.request-proof__card,
.scene-note,
.metric-tile,
.quote-panel,
.contact-card,
.section-note,
.showcase-caption,
.request-side-card,
.legal-side__card,
.scene-card,
.info-card,
.setup-card,
.metric-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.9));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.card,
.legal-card,
.support-card,
.request-proof__card,
.scene-note,
.metric-tile,
.quote-panel,
.contact-card,
.section-note,
.showcase-caption,
.request-side-card,
.legal-side__card,
.info-card,
.setup-card,
.metric-card {
  padding: 1.55rem;
}

.card__title {
  font-size: 1.4rem;
}

.card__text,
.prose {
  line-height: 1.72;
}

.prose a,
.card__text a {
  color: var(--ink);
}

.form {
  padding: 1.55rem;
}

.form--embedded {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}

.form__field span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.form__field-help {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form__field--full {
  grid-column: 1 / -1;
}

.form__section-heading {
  display: flex;
  align-items: center;
  padding-top: 0.45rem;
}

.form__section-heading span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.form__option-chip {
  position: relative;
  display: inline-flex;
}

.form__option-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form__option-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.form__option-chip input:focus + span {
  border-color: rgba(0, 184, 165, 0.48);
  box-shadow: 0 0 0 4px rgba(0, 184, 165, 0.12);
}

.form__option-chip input:checked + span {
  border-color: rgba(0, 184, 165, 0.38);
  background: rgba(0, 184, 165, 0.12);
  color: var(--ink);
}

.form__service-grid {
  display: grid;
  gap: 0.85rem;
}

.form__service-row {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(14rem, 18rem);
  gap: 0.85rem;
  align-items: center;
}

.form__option-chip--service {
  width: 100%;
}

.form__option-chip--service span {
  width: 100%;
  justify-content: flex-start;
}

.form__service-quantity {
  display: none;
  width: min(100%, 18rem);
  justify-self: end;
}

.form__service-quantity.is-visible {
  display: block;
}

.form__service-quantity input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form__service-quantity input:focus {
  outline: none;
  border-color: rgba(0, 184, 165, 0.34);
  box-shadow: 0 0 0 4px rgba(0, 184, 165, 0.12);
}

.form__service-quantity input:disabled {
  background: rgba(242, 246, 252, 0.84);
  color: rgba(16, 32, 51, 0.5);
}

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

.form__date-subfield {
  display: grid;
  gap: 0.45rem;
}

.form__date-subfield span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form__field textarea {
  min-height: 8.2rem;
  resize: vertical;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: rgba(0, 184, 165, 0.48);
  box-shadow: 0 0 0 4px rgba(0, 184, 165, 0.12);
  background: var(--white);
}

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.82rem;
  color: var(--ink-soft);
}

.form__check input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
}

.form__check a {
  color: var(--ink);
}

.notice {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.notice--hidden {
  display: none;
}

.notice--success {
  border-color: rgba(0, 184, 165, 0.28);
  background: rgba(0, 184, 165, 0.12);
}

.notice--error {
  border-color: rgba(255, 122, 89, 0.28);
  background: rgba(255, 122, 89, 0.12);
}

.ba {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 246, 255, 0.92));
}

.ba__img {
  display: block;
  width: 100%;
  height: auto;
}

.ba__img--after {
  position: absolute;
  inset: 0;
  width: auto;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.12s ease;
}

.ba__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

.table thead th {
  background: rgba(11, 18, 32, 0.04);
  font-weight: 700;
}

.table tbody tr:hover {
  background: rgba(0, 184, 165, 0.06);
}

.admin-nav-shell {
  position: relative;
  z-index: 20;
  padding-top: 0.6rem;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.admin-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.admin-nav__link:hover {
  background: rgba(11, 18, 32, 0.07);
}

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

.dashboard-shell {
  display: grid;
  gap: 1.4rem;
}

.dashboard-meta {
  margin: -0.2rem 0 0;
  color: var(--ink-soft);
}

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

.metric-card {
  display: grid;
  gap: 0.5rem;
}

.metric-card__value {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.admin-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr) auto;
  gap: 1rem;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.admin-table-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.table-stack,
.inline-links,
.info-list {
  display: grid;
  gap: 0.3rem;
}

.inline-links a,
.leads-table__id {
  color: var(--ink);
  text-decoration: none;
}

.inline-links a:hover,
.leads-table__id:hover {
  text-decoration: underline;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-badge--new {
  background: rgba(255, 122, 89, 0.16);
  color: #a6432b;
}

.status-badge--contacted {
  background: rgba(0, 184, 165, 0.16);
  color: #046f65;
}

.status-badge--scheduled {
  background: rgba(85, 139, 241, 0.16);
  color: #325da7;
}

.status-badge--done {
  background: rgba(51, 143, 88, 0.16);
  color: #236140;
}

.status-badge--declined {
  background: rgba(162, 67, 67, 0.16);
  color: #813737;
}

.status-badge--deleted {
  background: rgba(75, 85, 99, 0.18);
  color: #475569;
}

.table-form {
  display: grid;
  gap: 0.45rem;
  min-width: 180px;
}

.table-form--compact {
  min-width: 0;
}

.table-form__hint {
  color: var(--ink-soft);
  line-height: 1.45;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 0.7rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

details {
  margin: 0;
}

details > summary {
  cursor: pointer;
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

@media (max-width: 1180px) {
  .site-header__bar,
  .footer-shell,
  .dashboard-metrics,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .site-header__actions {
    justify-content: flex-start;
  }

  .site-header__bar {
    gap: 1rem;
  }

  .main-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    margin: 0 -0.15rem;
    padding-inline: 0.15rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav__link {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .site-header__actions {
    flex-wrap: wrap;
  }

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

  .admin-filter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 1.25rem), 100%);
  }

  .section {
    padding: 4.3rem 0;
  }

  .site-header {
    --header-bar-height: 4.9rem;
    padding: 0.18rem 0;
  }

  .form__grid,
  .grid--3,
  .admin-filter-grid,
  .footer-grid,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .form__date-range {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom,
  .form__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-header__bar {
    gap: 0.85rem;
  }

  .site-header__actions {
    width: 100%;
    gap: 0.55rem;
  }

  .site-header__actions .btn,
  .site-header__actions .contact-pill {
    flex: 1 1 calc(50% - 0.28rem);
    justify-content: center;
  }

  .page-title,
  .page-hero__title {
    max-width: none;
  }

  .brand {
    gap: 0;
  }

  .brand__logo {
    display: block;
    height: 4rem;
    max-width: min(16rem, 78vw);
    margin: 0;
  }

  .brand__icon {
    display: none;
  }

  .hero-actions .btn,
  .cta-band__actions .btn,
  .footer-cta .btn,
  .form__actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 1rem);
  }

  .site-header {
    --header-bar-height: auto;
  }

  .brand__logo {
    display: none;
  }

  .brand__icon {
    display: block;
    width: 3.7rem;
    height: 3.7rem;
    margin: 0;
  }

  .site-header__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-header__actions .btn,
  .site-header__actions .contact-pill {
    width: 100%;
    flex: none;
  }

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

  .table th,
  .table td {
    white-space: nowrap;
  }
}
