*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #fafafa;
  -webkit-tap-highlight-color: transparent;
}

.page {
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
}

.header {
  text-align: center;
  margin-bottom: 0;
}

.header + .divider {
  margin-top: 0.75rem;
}

.logo {
  display: block;
  max-width: min(280px, 80vw);
  height: auto;
  margin: 0 auto;
}

.tagline {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: #666;
  font-weight: 400;
}

.order {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.98);
}

.btn-order {
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-order:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-ys {
  background: #df0067;
}

.btn-ys:hover {
  background: #c8005c;
}

.btn-tgo {
  background: #f27a1a;
}

.btn-tgo:hover {
  background: #e06a10;
}

.divider {
  width: 100%;
  margin: 2rem 0 1.25rem;
  text-align: center;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
}

.divider span {
  position: relative;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  color: #999;
  background: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-link {
  color: #333;
  background: #fff;
  border: 1px solid #e8e8e8;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
}

.btn-link:hover {
  background: #f5f5f5;
  border-color: #ddd;
}

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  fill: currentColor;
}

@media (min-width: 480px) {
  .page {
    padding-top: 3.5rem;
  }

  .order {
    gap: 0.875rem;
  }
}
