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

:root {
  --background: #f7f8fa;
  --surface: #ffffff;
  --ink: #17191d;
  --muted: #65716f;
  --teal: #0f766e;
  --teal-soft: #e6f4f1;
  --border: #e4e7eb;
  --border-strong: #bdc9c6;
  --warm: #9c573a;
  --shadow: 0 18px 60px rgba(23, 25, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 12px 20px;
  background: rgba(247, 248, 250, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid #cbe6e1;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.hero,
.section,
.waitlist,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 32px;
  min-height: calc(100svh - 68px);
  padding: 48px 0 28px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(38px, 9vw, 68px);
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--teal);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  padding: 8px 10px;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid #cbe6e1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(318px, 84vw);
  aspect-ratio: 390 / 844;
  padding: 10px;
  background: #17191d;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--background);
  border-radius: 25px;
}

.screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: screenCycle 12s infinite;
}

.screen:nth-child(2) {
  animation-delay: 4s;
}

.screen:nth-child(3) {
  animation-delay: 8s;
}

@keyframes screenCycle {
  0%,
  30% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
  }
}

.mock-screen {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 16px;
  background: var(--background);
}

.mock-top {
  min-height: 42px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  font-size: 14px;
}

.mock-back {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.mock-search,
.mock-filter,
.barber-result,
.booking-card,
.profile-progress,
.mock-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.mock-search {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.style-grid article {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.style-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eef3f2;
}

.style-grid span {
  display: block;
  padding: 9px 6px 10px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.mock-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mock-filter span:first-child {
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 6px;
}

.mock-filter span {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.barber-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.barber-result img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.barber-result div {
  display: grid;
  gap: 3px;
}

.barber-result span,
.barber-result small {
  color: var(--muted);
  font-size: 11px;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.portfolio-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.booking-card,
.profile-progress {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.booking-card strong,
.profile-progress strong {
  color: var(--ink);
  font-size: 16px;
}

.founding-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--ink);
  background: #f0f7f5;
  border: 1px solid #d8e9e4;
  border-radius: 8px;
}

.founding-preview span {
  width: fit-content;
  padding: 6px 8px;
  color: var(--teal);
  background: var(--surface);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.founding-preview p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.mock-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article,
.founding-card,
.waitlist-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.steps article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.steps p,
.benefit-list,
.founding-card p,
.waitlist-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  gap: 20px;
}

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

.benefit-list li {
  position: relative;
  padding-left: 28px;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.barber-panel {
  align-items: start;
}

.barber-copy {
  display: grid;
  gap: 18px;
}

.founding-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f0f7f5;
  border-color: #d8e9e4;
}

.waitlist {
  display: grid;
  gap: 22px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.waitlist-copy {
  display: grid;
  gap: 12px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.role-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
}

.role-select legend {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-select label {
  cursor: pointer;
}

.role-select input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.role-select span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 800;
}

.role-select input:checked + span {
  color: var(--teal);
  background: var(--teal-soft);
  border-color: var(--teal);
}

.perk-box {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: var(--teal-soft);
  border: 1px solid #cbe6e1;
  border-radius: 8px;
  color: var(--teal);
}

.perk-box span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.waitlist-form label:not(.consent):not(.honeypot) {
  display: grid;
  gap: 6px;
}

.waitlist-form label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.waitlist-form small {
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
}

input {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(15, 118, 110, 0.16);
  border-color: var(--teal);
}

.honeypot {
  display: none;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent input {
  min-height: auto;
  height: 18px;
  margin-top: 2px;
}

.submit {
  width: 100%;
  font: inherit;
}

.submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
}

.form-status.success {
  color: #117a52;
  font-weight: 800;
}

.form-status.error {
  color: #ba1a1a;
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 13px;
}

footer a {
  color: var(--teal);
  font-weight: 800;
}

@media (min-width: 700px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 360px;
    padding-top: 64px;
  }

  .hero-actions {
    display: flex;
  }

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

  .split,
  .waitlist {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .waitlist-form {
    padding: 22px;
  }
}
