/* Design Tokens from Figma */
:root {
  --primary: #2A86FF;
  --primary-light: #ECF2FF;
  --text-900: #1A1A1A;
  --text-500: #808080;
  --text-300: #B3B3B3;
  --white: #FFFFFF;
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

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

body {
  font-family: 'SF Pro Rounded', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--text-900);
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Page Content */
.page-content {
  padding: 16px;
}

/* Guide Header */
.guide-header {
  text-align: center;
  margin-bottom: 24px;
}

.guide-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-900);
  margin-bottom: 16px;
}

.guide-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-500);
}

/* Info Box */
.info-box {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  margin-bottom: 24px;
}

.info-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-900);
  text-align: center;
}

/* Hero Image */
.hero-image {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-900);
  padding-left: 8px;
}

.step-text strong {
  font-weight: 600;
}

.step-number {
  font-weight: 400;
}

.step-images {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-images img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Home Page */
.home-header {
  text-align: center;
  padding: 24px 0 32px;
}

.home-header h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-900);
  margin-bottom: 12px;
}

.home-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-500);
}

.guide-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid #E8E8E8;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  cursor: pointer;
}

.guide-card:active {
  background: var(--primary-light);
  border-color: var(--primary);
}

.guide-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.guide-card-content {
  flex: 1;
  min-width: 0;
}

.guide-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-900);
  margin-bottom: 4px;
}

.guide-card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-500);
}

.guide-card-arrow {
  flex-shrink: 0;
  color: var(--text-300);
}

.guide-card-arrow svg {
  width: 20px;
  height: 20px;
}
