:root {
  color-scheme: dark;
  --bg: #0d0d10;
  --panel: #15151b;
  --panel-2: #1b1b23;
  --text: #f5f1ea;
  --muted: #c6beb4;
  --muted-2: #8f887f;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f2c46d;
  --accent-2: #c98643;
  --danger: #ff8f8f;
  --success: #91f2ba;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 14px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 196, 109, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(201, 134, 67, 0.14), transparent 30rem),
    linear-gradient(180deg, #0b0b0e 0%, var(--bg) 38%, #09090b 100%);
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent);
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 16, 0.76);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #111;
  background: linear-gradient(135deg, var(--accent), #fff0bd);
  box-shadow: 0 10px 28px rgba(242, 196, 109, 0.18);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  padding: 9px 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffe2a4);
  color: #15110a;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(242, 196, 109, 0.18);
}

.button:hover {
  color: #15110a;
  transform: translateY(-1px);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--accent);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.92rem;
}

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

.section {
  padding: 78px 0;
}

.section-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.split-section h2,
.contact-copy h2 {
  margin: 0;
  max-width: 780px;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
}

.section-heading h2,
.split-section h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.eyebrow,
.proof-kicker,
.muso-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lede,
.section-heading p,
.split-section p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-card,
.muso-panel,
.service-card,
.info-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.proof-card {
  padding: clamp(24px, 4vw, 38px);
}

.proof-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

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

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-stats span {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.mini-stats strong {
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.muso-panel {
  padding: clamp(20px, 4vw, 34px);
}

.muso-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.muso-panel h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

.status,
.form-status {
  color: var(--muted-2);
}

.status.error,
.form-status.error {
  color: var(--danger);
}

.status.success,
.form-status.success {
  color: var(--success);
}

.credit-grid,
.cards-three,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.credit-card,
.service-card,
.info-grid article {
  min-height: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.credit-card {
  border: 1px solid var(--line);
  border-radius: 18px;
}

.credit-card h4,
.service-card h3,
.info-grid h3 {
  margin: 0 0 8px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.credit-card p,
.service-card p,
.info-grid li {
  color: var(--muted);
}

.credit-card time {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.skeleton span {
  display: block;
  height: 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  animation: shimmer 1.3s linear infinite;
}

.skeleton span:nth-child(1) {
  width: 76%;
}

.skeleton span:nth-child(2) {
  width: 54%;
}

.skeleton span:nth-child(3) {
  width: 38%;
}

@keyframes shimmer {
  0% { opacity: 0.45; }
  50% { opacity: 1; }
  100% { opacity: 0.45; }
}

.role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.role-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
}

.role-pill strong {
  color: var(--text);
}

.split-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 18px 18px 18px 62px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #111;
  background: var(--accent);
  font-weight: 900;
}

.process-list span {
  color: var(--muted);
}

.info-grid ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

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

.contact-grid {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.privacy-note {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form {
  padding: clamp(20px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  outline: none;
}

select {
  appearance: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242, 196, 109, 0.72);
  box-shadow: 0 0 0 4px rgba(242, 196, 109, 0.12);
}

.bot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.turnstile-container {
  min-height: 1px;
  margin: 12px 0 16px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted-2);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  margin-left: 16px;
  color: var(--muted);
}

code {
  color: var(--accent);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(18, 18, 24, 0.96);
    box-shadow: var(--shadow);
  }

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

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

  .contact-copy {
    position: static;
  }

  .credit-grid,
  .cards-three,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero {
    padding-top: 62px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .credit-grid,
  .cards-three,
  .info-grid,
  .form-row.two,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .muso-panel-header,
  .footer-grid {
    flex-direction: column;
    align-items: start;
  }

  .footer-grid a {
    margin-left: 0;
    margin-right: 14px;
  }
}
