:root {
  --ink: #16051f;
  --muted: #66576f;
  --line: #eadff1;
  --soft: #fbf7fd;
  --soft-strong: #f4e9fb;
  --brand: #52007a;
  --brand-dark: #31004b;
  --brand-mid: #6f0aa0;
  --accent: #ff9f1c;
  --accent-soft: #fff0cf;
  --brand-light: #f0ddff;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(82, 0, 122, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.pixeltwine-home-template {
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}

body.pixeltwine-home-template .site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.pixeltwine-home-template .site-nav a {
  text-decoration: none;
}

body.pixeltwine-home-template .site-nav a:hover {
  color: var(--brand);
}

body.pixeltwine-home-template .site-header .nav-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  appearance: none;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  cursor: pointer;
}

body.pixeltwine-home-template .site-header .nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section,
.section-band {
  padding-right: clamp(20px, 5vw, 64px);
  padding-left: clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 56px;
  padding-bottom: 72px;
  background:
    linear-gradient(135deg, rgba(49, 0, 75, 0.96), rgba(82, 0, 122, 0.88)),
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.34), transparent 34%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-intro,
.split p,
.contact p,
.about-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--brand);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--brand-dark);
}

.hero-panel {
  width: 100%;
  padding: 22px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.hero-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.hero-logo {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  object-fit: contain;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.support-list {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.support-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: linear-gradient(135deg, var(--soft), #ffffff);
  border-radius: 8px;
}

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

.support-list strong {
  color: var(--brand-dark);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-strip div {
  min-height: 148px;
  padding: 28px;
  background: var(--white);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  padding-top: 92px;
  padding-bottom: 92px;
}

.service-grid,
.package-grid,
.fit-grid {
  display: grid;
  gap: 16px;
}

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

.service-grid article,
.package-grid article,
.about-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.monday-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, #ffffff, var(--soft)),
    radial-gradient(circle at top left, rgba(255, 159, 28, 0.18), transparent 32%);
  border-top: 1px solid var(--line);
}

.monday-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.monday-grid {
  display: grid;
  gap: 16px;
}

.monday-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(82, 0, 122, 0.08);
}

.monday-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

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

.dark-section {
  padding-top: 88px;
  padding-bottom: 88px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--brand-dark), var(--brand)),
    radial-gradient(circle at top right, rgba(255, 159, 28, 0.3), transparent 34%);
}

.dark-section .eyebrow,
.dark-section h2 {
  color: var(--white);
}

.dark-section .eyebrow {
  color: var(--accent);
}

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

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

.fit-grid div {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.packages {
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--soft);
}

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

.package-grid article {
  min-height: 260px;
}

.package-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.package-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.package-grid .featured {
  border-color: rgba(255, 159, 28, 0.72);
  box-shadow: var(--shadow);
}

.package-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  color: var(--brand);
  font-size: 26px;
  font-weight: 800;
}

.about {
  padding-top: 92px;
  padding-bottom: 92px;
}

.about-card {
  max-width: 920px;
}

.about-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(135deg, var(--soft-strong), #ffffff),
    radial-gradient(circle at bottom left, rgba(255, 159, 28, 0.2), transparent 32%);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .monday-section,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  body.pixeltwine-home-template .site-header .nav-toggle {
    display: inline-flex !important;
  }

  body.pixeltwine-home-template .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  body.pixeltwine-home-template .site-nav.is-open {
    display: flex !important;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-intro,
  .split p,
  .monday-copy p,
  .contact p,
  .about-card p {
    font-size: 16px;
  }

  .proof-strip,
  .service-grid,
  .fit-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 116px;
  }

  .support-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
