:root {
  --background: #f6f5f1;
  --surface: #ffffff;
  --ink: #17201b;
  --muted: #5f6b64;
  --line: #dde0d8;
  --accent: #0f766e;
  --accent-dark: #0a4f49;
  --accent-soft: #edf7f4;
  --shadow: 0 24px 70px rgba(23, 32, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--background);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.split-shell {
  width: min(1080px, calc(100% - 40px));
  min-height: min(620px, calc(100vh - 96px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(40px, 6vh, 58px) clamp(36px, 6vw, 72px);
}

.panel-soon {
  background: linear-gradient(145deg, #ffffff, #fafbf8);
}

.panel-live {
  border-left: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(237, 247, 244, 0.92), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.headline {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.7vw, 1.36rem);
  font-weight: 650;
  letter-spacing: 0;
}

.body-copy {
  max-width: 430px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.status-note {
  max-width: 390px;
  margin-bottom: 30px;
  color: var(--ink);
  font-weight: 650;
}

.email-link {
  width: fit-content;
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration-color: rgba(15, 118, 110, 0.35);
  text-underline-offset: 4px;
}

.price {
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 850;
  letter-spacing: 0;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 30px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent);
  padding: 0 20px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.22);
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(10, 79, 73, 0.25);
  transform: translateY(-1px);
}

@media (max-width: 780px) {
  body {
    display: block;
  }

  .split-shell {
    width: min(100% - 28px, 620px);
    min-height: auto;
    grid-template-columns: 1fr;
    margin: 20px auto;
  }

  .panel {
    min-height: auto;
    padding: 34px 28px;
  }

  .panel-live {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 460px) {
  .split-shell {
    width: calc(100% - 24px);
    margin: 12px auto;
  }

  .panel {
    padding: 30px 22px;
  }

  h1,
  h2 {
    font-size: 2.15rem;
  }

  .button {
    width: 100%;
  }
}
