:root {
  --bg-1: #f7f1e3;
  --bg-2: #e8dcc5;
  --panel: rgba(255, 250, 242, 0.9);
  --text: #251b13;
  --muted: #6d5d4e;
  --accent: #c85f2c;
  --accent-dark: #9d4318;
  --line: rgba(77, 56, 37, 0.14);
  --shadow: 0 24px 80px rgba(77, 56, 37, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 95, 44, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(188, 153, 77, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.shell {
  width: min(100%, 720px);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.brand-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.lede {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
  max-width: 44rem;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#startButton {
  background: var(--accent);
  color: #fff8f4;
}

#endButton {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(77, 56, 37, 0.18);
}

.status-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.status-label {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
}

#statusText {
  font-size: 1.05rem;
}

@media (max-width: 520px) {
  .brand-lockup {
    align-items: flex-start;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }
}
