:root {
  --orange: #FF8800;
  --beige: #FFF6E5;
  --navy: #0A0F24;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #6B7280;
  --light-gray: #E5E7EB;
  --card-shadow: 0 4px 24px rgba(10, 15, 36, 0.08);
}

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

html, body {
  height: 100%;
  background: var(--beige);
  color: var(--navy);
  font-family: 'Onest', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 40px;
}

/* Logo */
.logo {
  margin-bottom: 24px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: 'Onest', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: none;
}

.logo-text span {
  font-weight: 600;
  font-size: 36px;
}

/* Show text fallback if image fails */
.logo img[data-failed] {
  display: none;
}

.logo img[data-failed] + .logo-text {
  display: block;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 560px;
}

.header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  margin-top: 8px;
}

/* Card */
.card {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  margin-bottom: 32px;
}

/* Desktop notice */
.desktop-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F9FAFB;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 28px;
}

.desktop-notice .notice-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gray);
  margin-top: 1px;
}

.desktop-notice p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
}

.desktop-notice strong {
  color: var(--navy);
  font-weight: 600;
}

/* Section title */
.section-title {
  font-family: 'Onest', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 20px;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 136, 0, 0.12);
  color: var(--orange);
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-size: 15px;
  line-height: 1.4;
  color: var(--navy);
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin-bottom: 24px;
}

/* Info items */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
}

.info-item .info-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.info-item .info-icon.green { color: #16A34A; }
.info-item .info-icon.orange { color: var(--orange); }
.info-item .info-icon.red { color: #DC2626; }

.info-item strong {
  color: var(--navy);
  font-weight: 600;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 24px;
}

.btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 136, 0, 0.25);
}

.btn-primary:hover {
  background: #E67A00;
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--light-gray);
}

.btn-outline:hover {
  border-color: #D1D5DB;
  background: #FAFAFA;
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 480px) {
  .page {
    padding: 32px 16px 32px;
  }

  .card {
    padding: 24px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .logo img {
    height: 48px;
  }
}
