:root {
  color-scheme: dark;
  --bg: #070a12;
  --bg-2: #0d111a;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f9ff;
  --muted: #aeb8ca;
  --soft: #d8deea;
  --cyan: #18d1ff;
  --mint: #22e6a8;
  --pink: #ff4fd8;
  --gold: #ffd166;
  --coral: #ff6b6b;
  --ink: #05070d;
  --good: #48e39b;
  --warn: #ffd166;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(24, 209, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(255, 79, 216, 0.14), transparent 30rem),
    linear-gradient(135deg, #05070d 0%, #0b0f18 44%, #0a1010 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

button,
select,
input[type="checkbox"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(24, 209, 255, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--text);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 18, 0.78);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 210px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--pink) 58%, var(--gold));
  box-shadow: 0 0 28px rgba(24, 209, 255, 0.28);
  display: grid;
  place-items: center;
  color: #061019;
  font-weight: 950;
}

.brand span:last-child {
  display: block;
  max-width: 170px;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav-link,
.nav-icon-button,
.lang-button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--soft);
  background: transparent;
  min-height: 40px;
}

.nav-link {
  padding: 0.55rem 0.7rem;
  font-size: 0.93rem;
}

.nav-link:hover,
.nav-link.active,
.nav-icon-button:hover,
.lang-button.active {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.lang-button {
  padding: 0.35rem 0.55rem;
  font-weight: 800;
  min-width: 44px;
}

.menu-button {
  display: none;
}

.main {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section.compact {
  padding: 2.25rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 4rem 0 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

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

h1 {
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.96;
  margin-bottom: 1.25rem;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.04;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.lead {
  color: var(--soft);
  font-size: 1.12rem;
  max-width: 720px;
}

.muted {
  color: var(--muted);
}

.gradient-text {
  background: linear-gradient(100deg, #fff, var(--cyan), var(--gold), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-row,
.filter-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cta-row {
  margin: 2rem 0 1.25rem;
}

.button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  min-height: 44px;
  padding: 0.74rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.button.primary {
  color: #04131b;
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--mint) 48%, var(--gold));
}

.button.pink {
  border: 0;
  background: linear-gradient(135deg, var(--pink), #8f6cff);
}

.button.ghost {
  background: transparent;
}

.button.small {
  min-height: 36px;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
}

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

.hero-board {
  position: absolute;
  inset: 6% 0 8% 5%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  background: #0a1018;
}

.hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-shot {
  position: absolute;
  width: 39%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d111a;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

.floating-shot img {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
}

.floating-shot.one {
  right: 0;
  top: 0;
  transform: rotate(4deg);
}

.floating-shot.two {
  left: 0;
  bottom: 4%;
  transform: rotate(3deg);
}

.floating-shot.three {
  right: 10%;
  bottom: 0;
  transform: rotate(-5deg);
}

.hero-chip {
  position: absolute;
  left: 8%;
  top: 9%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(14px);
  padding: 0.75rem 0.9rem;
  color: var(--soft);
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.trust-item,
.metric,
.card,
.panel,
.stat,
.table-wrap,
.chat-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.trust-item {
  padding: 0.85rem;
  color: var(--soft);
  min-height: 74px;
}

.trust-item strong,
.metric strong,
.stat strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.35fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

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

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

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

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

.card {
  overflow: hidden;
}

.card-body {
  padding: 1rem;
}

.card-media {
  aspect-ratio: 16 / 10.5;
  background: #111827;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

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

.feature-list,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0;
  padding: 0;
  list-style: none;
}

.tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--soft);
  padding: 0.22rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-badge.good {
  color: #07150f;
  background: var(--good);
  border-color: transparent;
}

.status-badge.warn {
  color: #1b1300;
  background: var(--warn);
  border-color: transparent;
}

.status-badge.danger {
  color: #1e0407;
  background: var(--danger);
  border-color: transparent;
}

.process-list {
  counter-reset: step;
  display: grid;
  gap: 0.9rem;
}

.process-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-left: 2px solid rgba(24, 209, 255, 0.55);
  background: linear-gradient(90deg, rgba(24, 209, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius);
}

.process-step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: #061019;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.panel,
.form-panel {
  padding: 1.2rem;
}

.highlight-panel {
  background:
    linear-gradient(135deg, rgba(24, 209, 255, 0.14), rgba(255, 79, 216, 0.12)),
    var(--panel);
}

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

.metric,
.stat {
  padding: 1rem;
}

.metric strong,
.stat strong {
  font-size: 1.65rem;
}

.filter-row {
  margin-bottom: 1.25rem;
}

.filter-chip {
  min-height: 36px;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-weight: 800;
}

.filter-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #04131b;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

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

.field label {
  color: var(--soft);
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.72);
  color: var(--text);
  padding: 0.78rem 0.82rem;
  min-height: 44px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #7f8aa0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--soft);
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.confirmation {
  padding: 1.5rem;
  border: 1px solid rgba(72, 227, 155, 0.38);
  border-radius: var(--radius);
  background: rgba(72, 227, 155, 0.1);
}

.app-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.5rem 0 4rem;
}

.sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem;
}

.side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius);
  color: var(--soft);
  font-weight: 800;
}

.side-link.active,
.side-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td strong {
  color: var(--text);
}

.chat-panel {
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  min-height: 640px;
  overflow: hidden;
}

.chat-header,
.chat-compose {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.chat-compose {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
}

.message-list {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1rem;
  overflow: auto;
  max-height: 62vh;
}

.message {
  width: min(82%, 620px);
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.message.mine {
  justify-self: end;
  background: linear-gradient(135deg, rgba(24, 209, 255, 0.22), rgba(34, 230, 168, 0.14));
}

.message.admin {
  border-color: rgba(255, 209, 102, 0.3);
}

.message-meta {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.attachment {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
}

.attachment img {
  width: 78px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
}

.quote-box {
  border: 1px solid rgba(255, 209, 102, 0.32);
  background: rgba(255, 209, 102, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
}

.empty-state {
  padding: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.loading {
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.toast-region {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.6rem;
  z-index: 100;
}

.toast {
  max-width: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 18, 0.94);
  color: var(--text);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  margin-top: 3rem;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.5fr) minmax(220px, 0.5fr);
  gap: 1.5rem;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.legal-stack article {
  border-left: 2px solid rgba(24, 209, 255, 0.55);
  padding-left: 1rem;
}

.mobile-only {
  display: none;
}

@media (max-width: 1060px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

  .hero,
  .split,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  .main {
    width: min(100% - 1rem, var(--max));
  }

  .nav-wrap {
    width: min(100% - 1rem, var(--max));
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    max-width: 132px;
    font-size: 0.92rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .nav-link {
    text-align: center;
  }

  .hero {
    gap: 1rem;
    padding-top: 2rem;
  }

  h1 {
    font-size: 3.25rem;
  }

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

  .trust-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .message {
    width: 100%;
  }

  .chat-panel {
    min-height: 560px;
  }
}

@media (max-width: 460px) {
  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch {
    flex: 1;
  }

  .cta-row .button,
  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-chip,
  .floating-shot.three {
    display: none;
  }

  .floating-shot {
    width: 45%;
  }

  .stats-grid,
  .metric-row,
  .sidebar {
    grid-template-columns: 1fr;
  }
}

/* Reference style direction: bright premium studio, editorial typography, teal/orange accents. */
:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --bg-2: #eef3f1;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --line: rgba(19, 33, 39, 0.11);
  --text: #151b20;
  --muted: #5e6871;
  --soft: #27333a;
  --cyan: #008f95;
  --mint: #44beb6;
  --pink: #ff8f2f;
  --gold: #ff9828;
  --coral: #ff7b1f;
  --ink: #10171d;
  --good: #1eb980;
  --warn: #ff9828;
  --danger: #dc3f45;
  --shadow: 0 18px 46px rgba(31, 39, 44, 0.12);
  --max: 1480px;
}

body {
  background:
    linear-gradient(132deg, transparent 0 38%, rgba(0, 143, 149, 0.16) 38.1% 38.25%, transparent 38.35% 100%),
    linear-gradient(132deg, transparent 0 81%, rgba(255, 143, 47, 0.4) 81.1% 81.24%, transparent 81.35% 100%),
    linear-gradient(0deg, transparent 0 37%, rgba(0, 143, 149, 0.2) 37.05% 37.16%, transparent 37.24% 100%),
    radial-gradient(circle at 82% 12%, rgba(0, 143, 149, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8faf9 44%, #f2f5f3 100%);
  color: var(--text);
}

.topbar {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(0, 143, 149, 0.18);
  box-shadow: 0 10px 30px rgba(31, 39, 44, 0.06);
}

.brand {
  color: #10171d;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 950;
}

.brand span:last-child {
  max-width: 178px;
}

.brand-mark {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  font-size: 0;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 17px;
  height: 34px;
  border-radius: 6px;
  transform-origin: center top;
}

.brand-mark::before {
  left: 8px;
  background: linear-gradient(180deg, #00a8a8, #0bc2bd);
  transform: rotate(-26deg);
  box-shadow: 11px 21px 0 -1px #ff8f2f;
}

.brand-mark::after {
  right: 8px;
  background: linear-gradient(180deg, #00a8a8, #008f95);
  transform: rotate(26deg);
}

.nav-link,
.nav-icon-button,
.lang-button {
  color: #26333a;
}

.nav-link:hover,
.nav-link.active,
.nav-icon-button:hover,
.lang-button.active {
  border-color: rgba(0, 143, 149, 0.18);
  background: rgba(0, 143, 149, 0.08);
  color: #004f55;
}

.lang-switch {
  background: #fff;
  border-color: rgba(0, 143, 149, 0.18);
}

.main {
  width: min(100% - 2.5rem, var(--max));
}

.hero {
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
  gap: 2.2rem;
  min-height: 670px;
  padding: 3rem 0 3.25rem;
}

.eyebrow {
  color: #008f95;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: #121820;
}

h1 {
  font-size: clamp(3rem, 4.7vw, 5.85rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}

h3 {
  color: #141b21;
}

.lead {
  color: #333e46;
}

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

.gradient-text {
  background: linear-gradient(96deg, #141820 0%, #151b20 34%, #008f95 55%, #00a7a8 72%, #141820 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.button {
  border-color: rgba(16, 23, 29, 0.14);
  background: #fff;
  color: #151b20;
  box-shadow: 0 8px 22px rgba(31, 39, 44, 0.08);
}

.button:hover {
  border-color: rgba(0, 143, 149, 0.28);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(31, 39, 44, 0.13);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #00767d, #00a7a8);
  box-shadow: 0 13px 28px rgba(0, 143, 149, 0.24);
}

.button.pink {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8f2f, #f0741d);
  box-shadow: 0 13px 26px rgba(240, 116, 29, 0.2);
}

.button.ghost {
  background: #ffffff;
}

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

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0 14%, #d7dbdd 34%, #8b9297 62%, #ffffff 100%);
  box-shadow: 0 16px 34px rgba(31, 39, 44, 0.16);
}

.hero-visual::before {
  width: 60px;
  height: 60px;
  left: 2%;
  top: 34%;
}

.hero-visual::after {
  width: 42px;
  height: 42px;
  right: 34%;
  top: 7%;
}

.hero-board {
  inset: 3% 18% 18% 0;
  border-color: rgba(16, 23, 29, 0.2);
  border-radius: 20px;
  background: #0f1214;
  box-shadow:
    0 34px 58px rgba(31, 39, 44, 0.24),
    0 6px 0 #25282a;
  transform: perspective(1000px) rotateX(4deg) rotateY(-5deg) rotate(-1deg);
}

.hero-board::after {
  content: "";
  position: absolute;
  left: 10%;
  right: -4%;
  bottom: -34px;
  height: 54px;
  border-radius: 14px 14px 32px 32px;
  background: linear-gradient(180deg, #d8dadc, #8f969b);
  box-shadow: 0 22px 38px rgba(31, 39, 44, 0.22);
}

.hero-board img {
  object-fit: cover;
  border: 12px solid #101214;
  border-bottom-width: 20px;
  border-radius: 18px;
}

.floating-shot {
  z-index: 3;
  width: 28%;
  border-color: rgba(16, 23, 29, 0.18);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 42px rgba(31, 39, 44, 0.17);
}

.floating-shot img {
  aspect-ratio: 9 / 15.8;
  object-fit: cover;
}

.floating-shot.one {
  right: 13%;
  top: 16%;
  transform: rotate(-7deg);
}

.floating-shot.two {
  left: auto;
  right: 0;
  bottom: 12%;
  transform: rotate(7deg);
}

.floating-shot.three {
  right: 34%;
  bottom: 4%;
  width: 25%;
  transform: rotate(3deg);
}

.hero-chip {
  left: auto;
  right: 1%;
  top: 0;
  z-index: 4;
  background: #ffffff;
  color: #004f55;
  border-color: rgba(0, 143, 149, 0.2);
  box-shadow: 0 15px 36px rgba(31, 39, 44, 0.12);
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 143, 149, 0.22);
  border-bottom: 1px solid rgba(0, 143, 149, 0.22);
  padding: 1rem 0;
}

.trust-item,
.metric,
.stat,
.card,
.panel,
.table-wrap,
.chat-panel,
.form-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(19, 33, 39, 0.1);
  box-shadow: 0 14px 38px rgba(31, 39, 44, 0.08);
}

.trust-item {
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  color: #526069;
}

.trust-item strong {
  color: #008f95;
}

.card-media {
  background: #f5f7f6;
}

.card-media img {
  transform: scale(1);
}

.tag,
.status-badge {
  background: #f2f7f6;
  border-color: rgba(0, 143, 149, 0.14);
  color: #006d73;
}

.process-step {
  border-left-color: #008f95;
  background: #ffffff;
}

.process-step::before {
  color: #ffffff;
  background: linear-gradient(135deg, #008f95, #44beb6);
}

.highlight-panel {
  background:
    linear-gradient(135deg, rgba(0, 143, 149, 0.1), rgba(255, 143, 47, 0.08)),
    #ffffff;
}

.filter-chip {
  background: #ffffff;
  color: #25313a;
  border-color: rgba(19, 33, 39, 0.12);
}

.filter-chip.active {
  background: linear-gradient(135deg, #008f95, #44beb6);
  color: #ffffff;
}

.field input,
.field select,
.field textarea {
  background: #ffffff;
  color: #151b20;
  border-color: rgba(19, 33, 39, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8c959b;
}

th {
  color: #41515b;
}

td {
  color: #5e6871;
}

.sidebar {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(19, 33, 39, 0.1);
}

.side-link {
  color: #44525c;
}

.side-link.active,
.side-link:hover {
  background: rgba(0, 143, 149, 0.08);
  color: #004f55;
}

.chat-header,
.chat-compose {
  background: #ffffff;
}

.message {
  background: #ffffff;
  border-color: rgba(19, 33, 39, 0.1);
}

.message.mine {
  background: linear-gradient(135deg, rgba(0, 143, 149, 0.12), rgba(68, 190, 182, 0.1));
}

.message.admin {
  border-color: rgba(255, 143, 47, 0.3);
}

.quote-box {
  border-color: rgba(255, 143, 47, 0.34);
  background: rgba(255, 255, 255, 0.94);
}

.empty-state {
  border-color: rgba(0, 143, 149, 0.2);
  color: #5e6871;
}

.toast {
  background: #ffffff;
  color: #151b20;
  border-color: rgba(19, 33, 39, 0.12);
}

.footer {
  background: #ffffff;
  border-top-color: rgba(0, 143, 149, 0.18);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .main {
    width: min(100% - 1rem, var(--max));
  }

  .nav-links.open {
    background: #ffffff;
    border: 1px solid rgba(19, 33, 39, 0.1);
    border-radius: var(--radius);
    padding: 0.4rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-visual {
    min-height: 430px;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-board {
    inset: 5% 8% 20% 0;
  }

  .floating-shot {
    width: 34%;
  }

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

.reference-hero-stage {
  position: absolute;
  inset: -7% -8% -12% -9%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.reference-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(31, 39, 44, 0.16));
}

.hero-visual:has(.reference-hero-stage)::before,
.hero-visual:has(.reference-hero-stage)::after {
  display: none;
}

.reference-showcase {
  margin-top: -2rem;
  padding-top: 0;
}

.showcase-image-card {
  overflow: hidden;
  border: 1px solid rgba(19, 33, 39, 0.09);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(31, 39, 44, 0.1);
}

.showcase-image-card img {
  width: 100%;
  height: auto;
}

.payment-panel {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 143, 149, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 143, 149, 0.08), rgba(255, 143, 47, 0.06)),
    #ffffff;
}

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

.payment-method {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid rgba(19, 33, 39, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.payment-method code,
.payment-instructions {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.payment-method code {
  color: #004f55;
  font-weight: 800;
}

.payment-instructions {
  margin: 0;
  color: #33424a;
  background: rgba(245, 248, 247, 0.92);
  border-radius: var(--radius);
  padding: 0.8rem;
}

.receipt-form {
  margin-top: 1rem;
  box-shadow: none;
}

.realistic-media {
  background: #ffffff;
}

.realistic-media img {
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 1061px) {
  .hero {
    grid-template-columns: minmax(360px, 0.58fr) minmax(620px, 1.42fr);
    gap: 1.2rem;
  }

  .hero-visual {
    min-height: 660px;
  }
}

@media (max-width: 760px) {
  .reference-hero-stage {
    inset: -3% -34% -7% -26%;
  }

  .reference-showcase {
    margin-top: 0;
  }

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