:root {
  --color-primary: #e60000;
  --color-on-primary: #ffffff;
  --color-ink: #25282b;
  --color-body: #7e7e7e;
  --color-mute: #bebebe;
  --color-canvas: #ffffff;
  --color-canvas-soft: #f2f2f2;
  --color-on-dark: #ffffff;
  --rounded-sm: 6px;
  --rounded-card: 6px;
  --rounded-pill-md: 32px;
  --rounded-pill-lg: 60px;
  --font: Vodafone, "Vodafone Rg", "Helvetica Neue", Arial, system-ui, Segoe UI, PingFang SC, Microsoft YaHei, sans-serif;
}
* { box-sizing: border-box; }
html { background: #1a1c1e; }
body {
  margin: 0 auto;
  max-width: 390px;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--color-ink);
  background: var(--color-canvas);
  line-height: 1.55;
  padding-bottom: 64px;
}
a { color: var(--color-primary); text-decoration: none; }
.top {
  background: var(--color-ink); color: #fff;
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  color: #fff; font-weight: 800; display: flex; align-items: center; gap: 8px;
}
.speechmark {
  width: 22px; height: 22px; border-radius: 6px; background: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
}
.back { font-size: 12px; color: var(--color-mute); }

.hero {
  background: var(--color-ink); color: #fff;
  padding: 28px 16px 32px;
}
.hero .eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 8px; }
.hero h1 {
  font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: -1px;
  text-transform: uppercase; margin: 0 0 10px;
}
.hero p { margin: 0; color: #cfcfcf; font-size: 14px; }

.block { padding: 16px; }
.block h2 { font-size: 22px; font-weight: 300; margin: 0 0 12px; }
.cell {
  display: block; background: #fff; border-radius: 6px;
  padding: 12px; margin-bottom: 8px; color: var(--color-ink);
  box-shadow: 0 0 0 1px #eee;
}
.cell:hover { text-decoration: none; }
.cell h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.cell p { margin: 0; color: var(--color-body); font-size: 13px; }
.row {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid #eee; font-size: 14px;
}
.row:last-child { border-bottom: 0; }
.row span { color: var(--color-body); }
.row b { font-size: 20px; font-weight: 800; }
.ph {
  background: var(--color-canvas-soft); color: var(--color-mute);
  height: 120px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-bottom: 12px; border-radius: 6px;
}
.btn {
  display: block; text-align: center; padding: 12px 24px;
  background: var(--color-primary); color: #fff; border-radius: 60px;
  font-size: 16px; border: 0;
}
.btn:hover { text-decoration: none; color: #fff; }

form label { display: block; margin: 0 0 4px; font-size: 14px; font-weight: 700; }
form input, form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--color-ink);
  border-radius: 6px; font: inherit; margin-bottom: 12px;
}
form button {
  width: 100%; padding: 12px; border: 0; background: var(--color-primary);
  color: #fff; font: inherit; border-radius: 60px;
}

.tab {
  position: fixed; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 390px;
  display: flex; background: var(--color-ink);
}
.tab a {
  flex: 1; text-align: center; padding: 12px 0 14px;
  font-size: 11px; font-weight: 700; color: #bebebe; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tab a.on { color: #fff; box-shadow: inset 0 2px 0 var(--color-primary); }

.ph { overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
