:root {
  color-scheme: dark;
  --ink: #050608;
  --ink-soft: #090b0e;
  --surface: #0e1115;
  --surface-2: #14181e;
  --surface-3: #1a1f26;
  --line: #2b3038;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f6f2;
  --muted: #9ca3ad;
  --muted-2: #727985;
  --gold: #dfbd68;
  --gold-light: #f2d88f;
  --silver: #d7dbe1;
  --green: #6bd19b;
  --red: #ee8681;
  --max: 1240px;
  --radius-lg: 30px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --font: "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 3%, rgba(198, 153, 52, 0.12), transparent 24rem),
    radial-gradient(circle at 10% 24%, rgba(255, 255, 255, 0.035), transparent 25rem),
    var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--gold-light);
  color: #0b0d10;
  font-weight: 900;
  transition: top 0.16s ease;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.site-brand img {
  width: 206px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav a,
.header-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 11px;
  color: #bbbfc6;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover,
.header-login:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 24, 30, 0.72);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #5c636e;
  background: #171b21;
}

.button-primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, #f2d98f, #c79639);
  box-shadow: 0 15px 36px rgba(197, 147, 44, 0.18);
  color: #0b0d10;
}

.button-primary:hover {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #f7e5ac, #d4a64a);
}

.button-quiet {
  background: transparent;
}

.mobile-menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #101318;
  color: #fff;
  cursor: pointer;
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-button span {
  margin: 4px 0;
}

.mobile-menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 84px 0 auto;
  z-index: 70;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.98);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  color: #e8e8e8;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu .button {
  margin-top: 14px;
  border-bottom: 1px solid var(--gold);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: 104px 0 78px;
}

.hero::before {
  position: absolute;
  inset: 12% 0 auto 60%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(223, 189, 104, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(223, 189, 104, 0.025),
    0 0 0 140px rgba(223, 189, 104, 0.018);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-size: clamp(3.35rem, 6.1vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: #b5bac2;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-claim {
  margin-top: 22px;
  color: #ece7dc;
  font-weight: 900;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-proof span::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.booking-link-spotlight {
  max-width: 680px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(223, 189, 104, 0.3);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(223, 189, 104, 0.09), rgba(255, 255, 255, 0.02));
}

.booking-link-address {
  display: grid;
  gap: 3px;
}

.booking-link-address small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-link-address strong {
  overflow-wrap: anywhere;
  color: #f5f2ea;
  font-size: 0.96rem;
}

.booking-link-spotlight p {
  margin: 11px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.booking-channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.booking-channel-list span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #c9cdd3;
  font-size: 0.68rem;
  font-weight: 800;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(223, 189, 104, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
    rgba(8, 10, 13, 0.88);
  box-shadow: var(--shadow);
}

.mock-window {
  overflow: hidden;
  border: 1px solid #333943;
  border-radius: 23px;
  background: #090b0e;
}

.mock-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #07090b;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mock-brand img {
  width: 94px;
}

.mock-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.68rem;
}

.mock-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.mock-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 500px;
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 18px 11px;
  border-right: 1px solid var(--line);
  background: #080a0d;
}

.mock-sidebar strong {
  margin: 2px 8px 8px;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mock-sidebar span {
  padding: 9px 10px;
  border-radius: 9px;
  color: #767e89;
  font-size: 0.64rem;
  font-weight: 800;
}

.mock-sidebar .active {
  border-left: 2px solid var(--gold);
  background: rgba(223, 189, 104, 0.08);
  color: #fff;
}

.mock-main {
  min-width: 0;
  padding: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 189, 104, 0.06), transparent 16rem),
    #0a0c0f;
}

.mock-kicker {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.mock-main h3 {
  margin: 7px 0 3px;
  font-size: 1.35rem;
}

.mock-meta {
  color: #747c87;
  font-size: 0.7rem;
}

.mock-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 26px 0;
}

.mock-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #646b75;
  font-size: 0.46rem;
  text-align: center;
}

.mock-step::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #2b3038;
  content: "";
}

.mock-step:last-child::before {
  display: none;
}

.mock-step i {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #363c46;
  border-radius: 50%;
  background: #101318;
  color: inherit;
  font-size: 0.52rem;
  font-style: normal;
}

.mock-step.done,
.mock-step.current {
  color: var(--gold-light);
}

.mock-step.done i,
.mock-step.current i {
  border-color: var(--gold);
  background: #292315;
}

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

.mock-card {
  min-height: 108px;
  padding: 15px;
  border: 1px solid #303640;
  border-radius: 15px;
  background: #0f1216;
}

.mock-card.owner {
  border-color: rgba(107, 209, 155, 0.58);
  box-shadow: inset 3px 0 var(--green);
  background: rgba(34, 105, 73, 0.14);
}

.mock-card small {
  color: #7d8590;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-card b {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 0.84rem;
}

.mock-card.owner b {
  color: var(--green);
}

.mock-docs {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #292f37;
  border-radius: 15px;
}

.mock-doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #13171c;
  color: #b6bbc3;
  font-size: 0.63rem;
  font-weight: 800;
}

.mock-doc span:last-child {
  color: var(--gold-light);
}

.client-float {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 220px;
  padding: 14px;
  border: 1px solid #353b44;
  border-radius: 25px;
  background: #0b0e12;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.client-float header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: #e7e7e5;
  font-size: 0.64rem;
  font-weight: 900;
}

.client-float header img {
  width: 82px;
}

.client-float small {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-float h4 {
  margin: 5px 0 12px;
  font-size: 1.05rem;
}

.client-next {
  padding: 12px;
  border: 1px solid rgba(107, 209, 155, 0.46);
  border-radius: 13px;
  background: rgba(33, 110, 73, 0.15);
}

.client-next b {
  display: block;
  color: var(--green);
  font-size: 0.73rem;
}

.client-next span {
  display: block;
  margin-top: 4px;
  color: #9ea5ae;
  font-size: 0.58rem;
}

.industry-strip {
  border-block: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.012);
}

.industry-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  color: #9da3ac;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.industry-inner span::before {
  margin-right: 12px;
  color: var(--gold);
  content: "◆";
  font-size: 0.45rem;
  vertical-align: middle;
}

.booking-suite-section {
  padding-bottom: 96px;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-step {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.booking-step > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(223, 189, 104, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.booking-step h3 {
  margin: 22px 0 9px;
  font-size: 1.25rem;
}

.booking-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-path {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(107, 209, 155, 0.28);
  border-radius: 18px;
  background: rgba(33, 110, 73, 0.08);
  color: #c8cdd4;
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-path i {
  color: var(--gold);
  font-style: normal;
}

.booking-path strong {
  color: var(--green);
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-soft {
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 70%),
    #080a0d;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #0a0c0f;
}

.workflow-tab {
  min-height: 72px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #818893;
  text-align: left;
  cursor: pointer;
}

.workflow-tab span:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #343a44;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.workflow-tab span:last-child {
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.workflow-tab:hover {
  color: #fff;
}

.workflow-tab[aria-selected="true"] {
  border-color: rgba(223, 189, 104, 0.42);
  background: linear-gradient(135deg, rgba(223, 189, 104, 0.14), rgba(223, 189, 104, 0.03));
  color: var(--gold-light);
}

.workflow-tab[aria-selected="true"] span:first-child {
  border-color: var(--gold);
  background: #292315;
}

.workflow-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.8fr));
  gap: 15px;
  margin-top: 16px;
}

.workflow-summary,
.role-action {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #14181d, #0d1014);
}

.workflow-summary h3 {
  margin: 7px 0 10px;
  font-size: 1.8rem;
}

.workflow-summary p,
.role-action p {
  color: var(--muted);
}

.role-action small {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-action h4 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

.experience-grid,
.feature-grid,
.trust-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.experience-card {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0d1014;
}

.experience-copy {
  padding: 34px 34px 26px;
}

.experience-copy h3 {
  margin: 9px 0 10px;
  font-size: 2rem;
}

.experience-copy p {
  color: var(--muted);
}

.experience-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: flex;
  gap: 10px;
  color: #d8dadd;
  font-weight: 800;
}

.experience-list li::before {
  color: var(--green);
  content: "✓";
}

.experience-ui {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  margin: auto 22px 22px;
  padding: 20px;
  border: 1px solid #303640;
  border-radius: 18px;
  background: #090b0e;
}

.experience-ui .ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #14181d;
  color: #c8ccd1;
  font-size: 0.82rem;
  font-weight: 800;
}

.experience-ui .ui-row strong {
  color: var(--gold-light);
}

.experience-ui .ui-row.turn {
  border: 1px solid rgba(107, 209, 155, 0.4);
  background: rgba(25, 104, 69, 0.15);
}

.experience-ui .ui-row.turn strong {
  color: var(--green);
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 45%),
    #0d1014;
}

.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 189, 104, 0.34);
  border-radius: 13px;
  background: rgba(223, 189, 104, 0.08);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 24px 0 9px;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.marketplace-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 64px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(223, 189, 104, 0.23);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 189, 104, 0.11), transparent 25rem),
    #0c0f13;
  box-shadow: var(--shadow);
}

.marketplace-panel h2 {
  margin: 12px 0 17px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.marketplace-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.marketplace-visual {
  display: grid;
  gap: 12px;
}

.marketplace-event,
.provider-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #11151a;
}

.marketplace-event {
  border-color: rgba(223, 189, 104, 0.4);
  background: rgba(117, 86, 24, 0.13);
}

.marketplace-event small,
.provider-card small {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketplace-event h3 {
  margin: 6px 0 0;
}

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

.provider-card {
  position: relative;
}

.provider-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--green);
  content: "Connected";
  font-size: 0.6rem;
  font-weight: 900;
}

.provider-card strong {
  display: block;
  margin-top: 8px;
}

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

.trust-card {
  padding: 25px;
  border-top: 1px solid rgba(223, 189, 104, 0.4);
  background: linear-gradient(180deg, rgba(223, 189, 104, 0.055), transparent);
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-toggle {
  width: fit-content;
  display: flex;
  gap: 5px;
  margin: 0 auto 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0b0e12;
}

.pricing-toggle button {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.pricing-toggle button[aria-pressed="true"] {
  background: #222831;
  color: #fff;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(145deg, #15191f, #0c0f13);
}

.plan-card.featured {
  border-color: rgba(223, 189, 104, 0.62);
  box-shadow: 0 24px 70px rgba(182, 132, 27, 0.12);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(223, 189, 104, 0.12);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 3px 0 7px;
  font-size: 1.45rem;
}

.plan-card > p {
  min-height: 75px;
  margin: 0;
  color: var(--muted);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 25px 0;
}

.plan-price strong {
  font-size: 2.7rem;
  letter-spacing: -0.05em;
}

.plan-price span {
  color: var(--muted);
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: #d7d9dd;
  list-style: none;
}

.plan-features li::before {
  margin-right: 9px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-status {
  min-height: 30px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.founder-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, #15191f, #090b0e 68%);
}

.founder-mark {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(223, 189, 104, 0.24);
  border-radius: 25px;
  background: radial-gradient(circle, rgba(223, 189, 104, 0.1), transparent 62%);
}

.founder-mark img {
  width: min(260px, 75%);
}

.founder-copy h2 {
  margin: 11px 0 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
}

.founder-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.final-cta {
  padding: 104px 0;
}

.final-cta-panel {
  padding: clamp(42px, 8vw, 94px);
  border: 1px solid rgba(223, 189, 104, 0.35);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 20%, rgba(223, 189, 104, 0.15), transparent 22rem),
    linear-gradient(145deg, #171b21, #090b0e 68%);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta-panel h2 {
  max-width: 850px;
  margin: 12px auto 18px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.final-cta-panel p {
  max-width: 670px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-cta-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #050608;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 40px;
  padding: 70px 0 46px;
}

.footer-brand img {
  width: 200px;
}

.footer-brand p {
  max-width: 370px;
  color: var(--muted);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: #fff;
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 0.82rem;
}

.page-hero {
  padding: 100px 0 68px;
}

.page-hero .container {
  max-width: 980px;
}

.page-hero p {
  max-width: 760px;
}

.content-page {
  padding: 24px 0 110px;
}

.content-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
}

.content-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.content-nav a {
  padding: 9px 12px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.content-nav a:hover {
  border-color: var(--gold);
  color: #fff;
}

.prose {
  min-width: 0;
}

.prose section {
  padding: 0 0 48px;
  scroll-margin-top: 110px;
}

.prose h2 {
  margin: 0 0 14px;
  font-size: 1.9rem;
}

.prose h3 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.prose p,
.prose li {
  color: #b0b5bd;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--gold-light);
}

.legal-note,
.security-note {
  margin-bottom: 40px;
  padding: 18px 20px;
  border: 1px solid rgba(223, 189, 104, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(122, 91, 24, 0.1);
  color: #c7c2b7;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 54px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 54px;
}

.legal-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(180deg, #11151a, #0b0e12);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 189, 104, 0.58);
}

.legal-card small,
.legal-meta {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 0;
  font-size: 1.22rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-card span {
  margin-top: auto;
  padding-top: 8px;
  color: var(--gold-light);
  font-weight: 900;
}

.legal-callout {
  margin: 20px 0;
  padding: 17px 18px;
  border: 1px solid rgba(107, 209, 155, 0.28);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: rgba(35, 111, 72, 0.1);
  color: #c6d9ce;
}

.legal-callout.warning {
  border-color: rgba(238, 134, 129, 0.3);
  border-left-color: var(--red);
  background: rgba(122, 42, 40, 0.1);
  color: #d8c0bf;
}

.legal-table-wrap {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #b0b5bd;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #13171c;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.legal-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.security-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #0d1014;
}

.security-card h2 {
  margin: 8px 0 8px;
  font-size: 1.25rem;
}

.security-card p {
  margin: 0;
  color: var(--muted);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 15px currentColor;
  content: "";
}

@media (max-width: 1120px) {
  .desktop-nav a:nth-child(4),
  .desktop-nav a:nth-child(6) {
    display: none;
  }

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

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

  .product-stage {
    width: min(850px, 94%);
    margin-inline: auto;
  }

  .marketplace-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .desktop-nav,
  .header-login,
  .header-actions .button-primary {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    margin-left: auto;
  }

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

  .workflow-detail,
  .experience-grid,
  .founder-panel {
    grid-template-columns: 1fr;
  }

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

  .plan-card:last-child {
    grid-column: 1 / -1;
  }

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

  .content-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 74px;
  }

  .site-brand img {
    width: 166px;
  }

  .mobile-menu {
    inset: 74px 0 auto;
    max-height: calc(100vh - 74px);
  }

  .hero {
    padding: 72px 0 66px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 54px;
  }

  .product-stage {
    width: 100%;
    padding: 9px;
    border-radius: 25px;
  }

  .mock-topbar {
    min-height: 48px;
  }

  .mock-brand img {
    width: 78px;
  }

  .mock-body {
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .mock-sidebar {
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 7px;
  }

  .mock-sidebar strong {
    display: none;
  }

  .mock-sidebar span {
    padding: 7px 3px;
    font-size: 0.48rem;
    text-align: center;
  }

  .mock-main {
    padding: 17px;
  }

  .mock-rail {
    margin: 20px 0;
  }

  .mock-step span {
    display: none;
  }

  .mock-actions {
    grid-template-columns: 1fr;
  }

  .mock-card {
    min-height: 78px;
  }

  .client-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -12px auto 10px;
  }

  .industry-inner {
    justify-content: flex-start;
    gap: 10px 18px;
    padding: 22px 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .workflow-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .workflow-tab {
    min-width: 155px;
    scroll-snap-align: start;
  }

  .workflow-detail,
  .feature-grid,
  .pricing-grid,
  .trust-grid,
  .provider-grid,
  .booking-steps,
  .security-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .plan-card:last-child {
    grid-column: auto;
  }

  .marketplace-panel,
  .founder-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 72px 0 46px;
  }

  .content-nav {
    grid-template-columns: 1fr;
  }

  .booking-link-spotlight {
    padding: 15px;
  }

  .booking-path {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .booking-path i {
    transform: rotate(90deg);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
