.ws-page {
  background-color: #faf8f5;
  color: #32302f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ws-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e4e2e1;
}

.ws-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-logo {
  height: 22px;
  width: auto;
}

.ws-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.ws-nav-link {
  color: #32302f;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
}

.ws-nav-link:hover {
  color: #686664;
}

.ws-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ws-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #c9c6c4;
  background: transparent;
  color: #32302f;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.ws-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: none;
  background: #32302f;
  color: #fcfcfc;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.ws-btn-primary:hover,
.ws-btn-ghost:hover {
  opacity: 0.92;
}

.ws-hero {
  position: relative;
  overflow: hidden;
  background: #faf8f5;
}

.ws-hero-media {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.ws-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 24px 24px;
}

.ws-hero-content {
  max-width: 760px;
  margin: -140px auto 0;
  padding: 0 24px 96px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ws-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #32302f;
  margin-bottom: 32px;
}

.ws-form-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e4e2e1;
  background: #fcfcfc;
  box-shadow: 0 12px 40px rgba(50, 48, 47, 0.06);
  text-align: left;
}

.ws-form-lead {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #32302f;
  margin-bottom: 10px;
}

.ws-form-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #686664;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e4e2e1;
}

.ws-field-label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #32302f;
  margin-bottom: 8px;
}

.ws-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #c9c6c4;
  background: #fcfcfc;
  color: #32302f;
  font-size: 16px;
  outline: none;
}

.ws-input::placeholder {
  color: #94908d;
}

.ws-input:focus {
  border-color: #32302f;
  box-shadow: 0 0 0 3px rgba(50, 48, 47, 0.08);
}

.ws-submit {
  width: 100%;
  height: 52px;
  margin-top: 16px;
  border: none;
  border-radius: 999px;
  background: #32302f;
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.ws-submit:hover {
  opacity: 0.92;
}

.ws-error {
  margin-top: 12px;
  font-size: 14px;
  color: #c0392b;
  text-align: left;
}

.ws-seed-wrap {
  background: #faf8f5;
  min-height: calc(100vh - 72px);
  padding: 56px 24px 96px;
}

.ws-seed-inner {
  max-width: 980px;
  margin: 0 auto;
}

.ws-seed-title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #32302f;
  margin-bottom: 12px;
}

.ws-seed-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #686664;
  margin-bottom: 28px;
}

.ws-word-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ws-word-tab {
  flex: 1 1 calc(16.666% - 10px);
  min-width: 88px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #c9c6c4;
  background: #fcfcfc;
  color: #32302f;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ws-word-tab.is-active {
  background: #32302f;
  border-color: #32302f;
  color: #fcfcfc;
}

.ws-seed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.ws-seed-input {
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid #c9c6c4;
  background: #fcfcfc;
  color: #32302f;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.ws-seed-input:focus {
  border-color: #32302f;
}

.ws-seed-input.is-invalid {
  border-color: #c0392b;
  color: #c0392b;
}

.ws-seed-note {
  font-size: 15px;
  line-height: 1.6;
  color: #686664;
  margin-bottom: 24px;
  white-space: pre-line;
}

.ws-seed-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ws-footer {
  background: #fcfcfc;
  border-top: 1px solid #e4e2e1;
  padding: 56px 24px;
}

.ws-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  color: #686664;
  font-size: 14px;
  line-height: 1.6;
}

.ws-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.ws-footer-links a {
  color: #32302f;
  text-decoration: none;
  font-weight: 500;
}

.ws-footer-links a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .ws-nav {
    display: flex;
  }
}

@media (max-width: 767px) {
  .ws-seed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-seed-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
