#entry {
  animation: fadeIn 0.6s ease;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  column-gap: 64px;
  align-items: start;
}

.left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entry-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  padding-top: 36px;
}

.entry-header h1 .highlight {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blink-eye {
  display: inline-block;
  transform-origin: center;
  animation: blinkEye 9s ease-in-out infinite;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes blinkEye {
  0%, 87%, 100% { transform: scaleY(1); }
  88.5% { transform: scaleY(0.05); }
  90% { transform: scaleY(1); }
  91.5% { transform: scaleY(0.05); }
  93% { transform: scaleY(1); }
}

.left-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.left-panel .subtitle {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.6;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.right-panel {
  display: flex;
  flex-direction: column;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.benefit-text p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
}

.form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-card label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 16px;
}

.form-card label:first-of-type {
  margin-top: 0;
}

.form-card input, .form-card select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-card input:focus, .form-card select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.12);
  background: var(--surface);
}

.form-card button {
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgb(37 99 235 / 0.3);
}

.form-card button:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgb(37 99 235 / 0.4);
}

.form-card button:active { transform: scale(0.98); }

.form-card button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-error {
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}

.form-error.visible { display: block; }

.privacy-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

.terms-note {
  margin-top: 8px;
  font-size: 0.60rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

.terms-note a {
  color: inherit;
  text-decoration: underline;
}

.inline-sample-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.inline-sample-link:hover {
  color: var(--primary-hover);
}
