:root {
  color-scheme: dark;
  --ink: #f7f1e8;
  --muted: #c8b9a6;
  --soft-muted: #8f8172;
  --base: #080a09;
  --base-2: #101312;
  --panel: rgb(20 22 20 / 88%);
  --panel-solid: #151815;
  --panel-soft: #1d201c;
  --line: rgb(231 181 121 / 18%);
  --line-strong: rgb(231 181 121 / 34%);
  --copper: #d89b5c;
  --copper-strong: #f0b46b;
  --green: #0f6b57;
  --green-bright: #4fc39f;
  --danger: #ff8c7a;
  --focus: #ffd18d;
  --shadow: 0 28px 90px rgb(0 0 0 / 44%);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgb(216 155 92 / 14%), transparent 28rem),
    linear-gradient(180deg, #080a09 0%, #10120f 42%, #090a09 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgb(8 10 9 / 86%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, rgb(240 180 107 / 22%), rgb(255 255 255 / 2%)),
    #11130f;
  color: var(--copper-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 40px rgb(0 0 0 / 32%);
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  color: var(--ink);
  font-weight: 850;
}

.brand-copy small {
  color: var(--soft-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav {
  display: none;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav a {
  position: relative;
  padding: 0.45rem 0;
  text-decoration: none;
}

.top-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.top-nav a:hover {
  color: var(--copper-strong);
}

.top-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 9rem) clamp(1rem, 4vw, 3rem) clamp(2.6rem, 7vw, 5.5rem);
  isolation: isolate;
}

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

.hero-media {
  background-image: url("../assets/premium-padel-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(8 10 9 / 94%) 0%, rgb(8 10 9 / 78%) 42%, rgb(8 10 9 / 34%) 76%, rgb(8 10 9 / 86%) 100%),
    linear-gradient(180deg, rgb(8 10 9 / 48%) 0%, rgb(8 10 9 / 22%) 42%, var(--base) 100%);
}

.hero-content,
.section,
.site-footer {
  width: 100%;
  max-width: 1160px;
  min-width: 0;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 1.25rem;
}

.eyebrow {
  margin: 0;
  color: var(--copper-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 0;
  color: #fffaf1;
  font-size: clamp(2.6rem, 8.5vw, 6.35rem);
  line-height: 0.93;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0.8rem;
  color: #fff9ee;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.35rem;
  color: #fff8ed;
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 3vw, 1.58rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

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

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.18rem;
  padding: 0.88rem 1.45rem;
  font-size: 0.82rem;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  border-color: rgb(255 216 166 / 46%);
  background:
    linear-gradient(180deg, rgb(255 224 178 / 28%), transparent 48%),
    linear-gradient(135deg, #f1b368 0%, #c98242 45%, #9f5f2e 100%);
  color: #130d08;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 36%),
    0 18px 42px rgb(216 155 92 / 22%);
}

.button-primary:hover {
  border-color: rgb(255 229 190 / 66%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 44%),
    0 24px 58px rgb(216 155 92 / 31%);
}

.button-secondary {
  border-color: rgb(231 181 121 / 28%);
  background: linear-gradient(180deg, rgb(255 255 255 / 5%), rgb(255 255 255 / 1%));
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgb(240 180 107 / 58%);
  background: rgb(216 155 92 / 8%);
}

.hero-proof,
.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-proof {
  max-width: 970px;
  margin-top: 0.35rem;
}

.hero-proof li,
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
  font-weight: 760;
}

.hero-proof li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--copper-strong);
  font-weight: 900;
}

.hero-panel {
  width: 100%;
  max-width: 1160px;
  min-width: 0;
  margin: clamp(1.8rem, 5vw, 4rem) auto 0;
  border-top: 1px solid var(--line-strong);
  padding: clamp(1.2rem, 4vw, 1.7rem) 0 0;
}

.panel-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--copper-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  max-width: 850px;
  color: #fff7eb;
  font-size: clamp(1.18rem, 3vw, 1.65rem);
  line-height: 1.22;
}

.panel-grid,
.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.5rem;
}

.panel-grid span,
.tag-grid span {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
  color: var(--ink);
  font-weight: 820;
}

.value-strip {
  display: grid;
  gap: 0;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip div {
  padding: clamp(1.2rem, 3vw, 1.8rem) 0;
}

.value-strip span,
.process-list span {
  color: var(--copper-strong);
  font-weight: 950;
}

.value-strip strong {
  display: block;
  color: #fff8ed;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.value-strip p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p,
.split-section p,
.contact-copy p,
.privacy-content {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.1rem;
  min-height: 5.2rem;
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.split-section {
  display: grid;
  gap: 1.8rem;
  align-items: start;
}

.visual-section,
.target-section,
.faq-section,
.privacy-section {
  border-top: 1px solid var(--line);
}

.visual-section {
  background:
    radial-gradient(circle at 90% 30%, rgb(15 107 87 / 20%), transparent 26rem),
    linear-gradient(180deg, transparent, rgb(255 255 255 / 2%));
}

.target-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgb(255 255 255 / 3%), rgb(0 0 0 / 8%));
}

.target-section > * {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.customer-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.customer-grid article {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  background: transparent;
}

.customer-grid article > span {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--copper-strong);
  font-weight: 950;
}

.customer-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-section {
  border-top: 1px solid var(--line);
}

.check-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.contact-section {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 18%, rgb(216 155 92 / 12%), transparent 23rem),
    radial-gradient(circle at 90% 60%, rgb(15 107 87 / 18%), transparent 25rem);
}

.contact-links a {
  border-bottom: 1px solid rgb(240 180 107 / 64%);
  color: var(--copper-strong);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-links a:hover {
  border-bottom-color: #fff1dc;
  color: #fff1dc;
}

.valuation-form {
  border: 1px solid var(--line-strong);
  border-radius: 0.5rem;
  padding: clamp(1rem, 4vw, 1.45rem);
  background: linear-gradient(160deg, rgb(25 28 24 / 96%), rgb(12 13 11 / 98%));
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 0.4rem;
  color: #fff5e8;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.05rem;
  border: 1px solid rgb(231 181 121 / 24%);
  border-radius: 0.4rem;
  padding: 0.72rem 0.8rem;
  background: rgb(255 255 255 / 7%);
  color: var(--ink);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgb(247 241 232 / 58%);
}

select option {
  background: #171915;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.checkbox-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  font-weight: 690;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin-top: 0.2rem;
  accent-color: var(--copper);
}

.field-help,
.privacy-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.privacy-note a {
  color: var(--copper-strong);
  font-weight: 850;
}

.form-status {
  min-height: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--copper-strong);
  font-weight: 790;
}

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

.form-submit {
  width: 100%;
  min-height: 3.35rem;
  margin-top: 1.15rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.055em;
}

.form-submit.button-primary {
  background:
    linear-gradient(180deg, rgb(255 234 203 / 30%), transparent 42%),
    linear-gradient(135deg, #e8ad66, #b97035 52%, #8d5228);
}

.form-submit.button-primary:hover {
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 42%),
    0 26px 68px rgb(216 155 92 / 34%);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 4%);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: #fff7ed;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.privacy-content {
  max-width: 820px;
}

.site-footer {
  display: grid;
  gap: 0.35rem;
  padding: 2.2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--soft-muted);
}

.site-footer p {
  margin: 0;
}

@media (min-width: 720px) {
  .top-nav {
    display: flex;
  }

  .hero-actions .button {
    width: auto;
    min-width: 12rem;
  }

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

  .value-strip div {
    padding-right: clamp(1rem, 3vw, 2rem);
  }

  .value-strip div + div {
    border-left: 1px solid var(--line);
    padding-left: clamp(1rem, 3vw, 2rem);
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .process-list li {
    align-content: start;
    grid-template-columns: 1fr;
    min-height: 10.5rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 1.2rem clamp(0.8rem, 2vw, 1.4rem);
  }

  .process-list li:last-child {
    border-right: 0;
  }

  .split-section,
  .contact-section {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

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

  .customer-grid article {
    padding: 1.5rem clamp(1rem, 3vw, 1.7rem) 1.5rem 0;
  }

  .customer-grid article:nth-child(3n + 2),
  .customer-grid article:nth-child(3n + 3) {
    border-left: 1px solid var(--line);
    padding-left: clamp(1rem, 3vw, 1.7rem);
  }

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

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

@media (min-width: 1020px) {
  .panel-grid,
  .tag-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
